-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCTRON-SFPS-DIRECTORY-MIB
2263 lines (1997 loc) · 70.6 KB
/
CTRON-SFPS-DIRECTORY-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CTRON-SFPS-DIRECTORY-MIB DEFINITIONS ::= BEGIN
-- sfps-directory-mib.txt
-- Revision: 0.0.11
--
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
--
-- This module provides authoritative definitions for Cabletron's
-- enterprise specific Fast Packet Switching Services API MIB.
--
-- This module will be extended, as required.
--
--
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
--
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright October 93 Cabletron Systems
--
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
-- tcl enterprises
-- IpAddress, Counter, Gauge
TimeTicks
FROM RFC1155-SMI
-- These Objects are defined in the file sfps-inc.mib.txt.0.0.2
sfpsTopologyNodes, sfpsTopologyAliases, sfpsTopologyDAPITest, sfpsTopologyDAPI,
sfpsTopologyDirStats, sfpsServiceCenter, sfpsTopologyRemoteNodes, sfpsDirFilterAPI
FROM CTRON-SFPS-INCLUDE-MIB;
-- Textual Conventions
--SfpsSwitchInstance ::= OCTET STRING (SIZE(4))
-- this will map to chassis.module index value
SfpsSwitchPort ::= INTEGER
-- this will map to chassis.module.portgroup.portsubgroup.port index value
SfpsAddress ::= OCTET STRING (SIZE (6))
-- this will map to a MAC address
HexInteger ::= INTEGER
-- display this integer in hex format
-- SFPS Switch Agent Topology Groups
-- This group contains the objects that pertain to the discovery and
-- mapping of end systems (behind access ports) and adjacent switch systems
-- (behind network ports). End systems are discovered passively through
-- the switch's listen capability. Adjacent systems are discovered actively
-- through the switch's hello protocol.
-- SFPS Switch Agent Topology Node Table Group
-- This group contains the objects that pertain to the discovery and
-- mapping of network base addresses to nodes (end-systems) discovered
-- on access ports. This allows the location of nodes based on their
-- controlling switch and port.
sfpsNodeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsNodeTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of bottom layer protocol addresses and related
information of recently or curently active nodes
(end-stations). This table replaces the sfpsEndSystemTable."
::= { sfpsTopologyNodes 1 }
sfpsNodeTableEntry OBJECT-TYPE
SYNTAX SfpsNodeTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information pertaining to recently or
currently active nodes."
INDEX { sfpsNodeTableBaseHash, sfpsNodeTableHashIndex }
::= { sfpsNodeTable 1 }
SfpsNodeTableEntry ::=
SEQUENCE {
sfpsNodeTableBaseHash INTEGER,
sfpsNodeTableHashIndex INTEGER,
sfpsNodeTableSwitchType DisplayString,
sfpsNodeTableSwitchAddress DisplayString,
sfpsNodeTablePort INTEGER,
sfpsNodeTableBaseType DisplayString,
sfpsNodeTableBaseAddress DisplayString,
sfpsNodeTableEntryType DisplayString,
sfpsNodeTableCallTag HexInteger,
sfpsNodeTableLastHeard TimeTicks,
sfpsNodeTableAge TimeTicks,
sfpsNodeTableAliasCount INTEGER,
sfpsNodeTableVlanCount INTEGER,
sfpsNodeTableNodeLocked INTEGER,
sfpsNodeTableNodeLocal INTEGER,
sfpsNodeTableSelf INTEGER,
sfpsNodeTableNext INTEGER,
sfpsNodeTablePrev INTEGER
}
sfpsNodeTableBaseHash OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A hash of the sfpsNodeTableAddress used to identify the
instance."
::= { sfpsNodeTableEntry 1 }
sfpsNodeTableHashIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the non-unique sfpsNodeTableAddress hashes used to
identify the instance."
::= { sfpsNodeTableEntry 2 }
sfpsNodeTableSwitchType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address type of the bottom layer address."
::= { sfpsNodeTableEntry 3 }
sfpsNodeTableSwitchAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bottom layer address value."
::= { sfpsNodeTableEntry 4 }
sfpsNodeTablePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port on which the node was discovered."
::= { sfpsNodeTableEntry 5 }
sfpsNodeTableBaseType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address type of the bottom layer address."
::= { sfpsNodeTableEntry 6 }
sfpsNodeTableBaseAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bottom layer address value."
::= { sfpsNodeTableEntry 7 }
sfpsNodeTableEntryType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of entry represented. This is determined
by the way in which the node was learned."
::= { sfpsNodeTableEntry 8 }
sfpsNodeTableCallTag OBJECT-TYPE
SYNTAX HexInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The tag, reference number, associated with the
packet responsible for the generation of this entry"
::= { sfpsNodeTableEntry 9 }
sfpsNodeTableLastHeard OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time since the node for this entry last
sourced a packet."
::= { sfpsNodeTableEntry 10 }
sfpsNodeTableAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time since this entry was created."
::= { sfpsNodeTableEntry 11 }
sfpsNodeTableAliasCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of higher layer protocol addresses learned
about this node from the same packet it was discovered from."
::= { sfpsNodeTableEntry 12 }
sfpsNodeTableVlanCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of vlans to which this node is mapped."
::= { sfpsNodeTableEntry 13 }
sfpsNodeTableNodeLocked OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsNodeTableEntry 14 }
sfpsNodeTableNodeLocal OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsNodeTableEntry 15 }
sfpsNodeTableSelf OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsNodeTableEntry 16 }
sfpsNodeTableNext OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsNodeTableEntry 17 }
sfpsNodeTablePrev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsNodeTableEntry 18 }
--
-- SFPS Switch Agent Topology Alias Table Group
-- This group contains the objects that pertain to the discovery and
-- mapping of upper-layer network services and entities (IP, IPX addresses)
-- as well as abstract group types (eg. VLAN), in use by nodes connected to
-- the switching fabric. This table allows the mapping of these aliases or
-- groups to the nodes they are associated with and to the location of their
-- controlling switch and port (via the node table).
sfpsAliasTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsAliasTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of upper layer protocol addresses (aliases) and
abstract group names related to the bottom layer protocol
addresses (nodes) found in the sfpsNodeTable. This table
replaces the sfpsEntitiesTable."
::= { sfpsTopologyAliases 1 }
sfpsAliasTableEntry OBJECT-TYPE
SYNTAX SfpsAliasTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information pertaining to upper
layer protocol addresses."
INDEX { sfpsAliasTableAliasHash,
sfpsAliasTableBaseHash,
sfpsAliasTableHashIndex }
::= { sfpsAliasTable 1 }
SfpsAliasTableEntry ::=
SEQUENCE {
sfpsAliasTableAliasHash INTEGER,
sfpsAliasTableBaseHash INTEGER,
sfpsAliasTableHashIndex INTEGER,
sfpsAliasTableSwitchType DisplayString,
sfpsAliasTableSwitchAddress DisplayString,
sfpsAliasTablePort INTEGER,
sfpsAliasTableBaseType DisplayString,
sfpsAliasTableBaseAddress DisplayString,
sfpsAliasTableAliasType DisplayString,
sfpsAliasTableAliasAddress DisplayString,
sfpsAliasTableAliasAge TimeTicks,
sfpsAliasTableSwitchOctets OCTET STRING,
sfpsAliasTableBaseOctets OCTET STRING,
sfpsAliasTableAliasOctets OCTET STRING,
sfpsAliasTableOpaqueTag OCTET STRING,
sfpsAliasTableVlanPolicy INTEGER,
sfpsAliasTableBaseLock INTEGER,
sfpsAliasTableAliasLock INTEGER,
sfpsAliasTableAliasState INTEGER,
sfpsAliasTableSelf INTEGER,
sfpsAliasTableNext INTEGER,
sfpsAliasTablePrev INTEGER
}
sfpsAliasTableAliasHash OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A hash of the sfpsAliasTableAliasAddress used to
identify the instance."
::= { sfpsAliasTableEntry 1 }
sfpsAliasTableBaseHash OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A hash of the sfpsAliasTableNodeAddress used to
identify the instance."
::= { sfpsAliasTableEntry 2 }
sfpsAliasTableHashIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the non-unique pairs of sfpsAliasTableAliasHash
and sfpsAliasTableNodeHash used to identify the instance."
::= { sfpsAliasTableEntry 3 }
sfpsAliasTableSwitchType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address type of the bottom layer address of the
switch on which this node was found."
::= { sfpsAliasTableEntry 4 }
sfpsAliasTableSwitchAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bottom layer address value (formatted in printable
characters) of the switch on which this node was found."
::= { sfpsAliasTableEntry 5 }
sfpsAliasTablePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port on which the node was discovered."
::= { sfpsAliasTableEntry 6 }
sfpsAliasTableBaseType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address type of the bottom layer address of the node."
::= { sfpsAliasTableEntry 7 }
sfpsAliasTableBaseAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bottom layer address value (formatted in printable
characters) of the node."
::= { sfpsAliasTableEntry 8 }
sfpsAliasTableAliasType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address type of the higher layer address."
::= { sfpsAliasTableEntry 9 }
sfpsAliasTableAliasAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The higher layer address value formatted in
printable characters."
::= { sfpsAliasTableEntry 10 }
sfpsAliasTableAliasAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The elapsed time since this alias was discovered and
made visible in this table."
::= { sfpsAliasTableEntry 11 }
sfpsAliasTableSwitchOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The base address of the switch on which the node
associated with this alias entry was found."
::= { sfpsAliasTableEntry 12 }
sfpsAliasTableBaseOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bottom layer address of the node associated with
this alias entry."
::= { sfpsAliasTableEntry 13 }
sfpsAliasTableAliasOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The higher layer address (alias), or the abstract
group value."
::= { sfpsAliasTableEntry 14 }
sfpsAliasTableOpaqueTag OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An identifier for the type of alias this entry represents."
::= { sfpsAliasTableEntry 15 }
sfpsAliasTableVlanPolicy OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
inherited(2), -- not vlan manager assigned
autoRegistered(3), -- vlan selected by criteria
static(4) -- vlan manager assigned
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The way in which this user was assigned to a vlan.
Inherited(2) signifies that the user was assigned its vlan
based on the default for its port. Auto-Registered(3)
indicates that the user was assigned to its vlan based on
packet analysis and vlan manager criteria. Static(4) signifies
the user was assigned its vlan by the vlan manager application."
::= { sfpsAliasTableEntry 16 }
sfpsAliasTableBaseLock OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasTableEntry 17 }
sfpsAliasTableAliasLock OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasTableEntry 18 }
sfpsAliasTableAliasState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
remote(2),
local(3),
hidden(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasTableEntry 19 }
sfpsAliasTableSelf OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasTableEntry 20 }
sfpsAliasTableNext OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasTableEntry 21 }
sfpsAliasTablePrev OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasTableEntry 22 }
--
-- SFPS Switch Agent Topology Alias Delta Table Group
-- This group is used to maintain a table of newly discovered/lost aliases.
-- This Delta Table resembles the Alias Table with one additional field to
-- distinguish those entries which are newly found from those which are newly
-- lost.
sfpsAliasDeltaTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsAliasDeltaTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of of newly discovered/lost upper layer protocol
addresses (aliases) related to the bottom layer protocol
addresses (nodes) found in the sfpsNodeTable."
::= { sfpsTopologyAliases 2 }
sfpsAliasDeltaTableEntry OBJECT-TYPE
SYNTAX SfpsAliasDeltaTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information pertaining to a newly
discovered or lost upper layer protocol addresses."
INDEX { sfpsAliasDeltaTableIndex }
::= { sfpsAliasDeltaTable 1 }
SfpsAliasDeltaTableEntry ::=
SEQUENCE {
sfpsAliasDeltaTableIndex INTEGER,
sfpsAliasDeltaTablePort INTEGER,
sfpsAliasDeltaTableBase SfpsAddress,
sfpsAliasDeltaTableAlias OCTET STRING,
sfpsAliasDeltaTableAliasLength INTEGER,
sfpsAliasDeltaTableOpaqueTag OCTET STRING,
sfpsAliasDeltaTableAliasState INTEGER,
sfpsAliasDeltaTableNodeLock INTEGER,
sfpsAliasDeltaTableAliasLock INTEGER,
sfpsAliasDeltaTableTimestamp TimeTicks
}
sfpsAliasDeltaTableIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index into the table. This allows the server to
read the information and process it sequentially."
::= { sfpsAliasDeltaTableEntry 1 }
sfpsAliasDeltaTablePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The port on which the node was discovered."
::= { sfpsAliasDeltaTableEntry 2 }
sfpsAliasDeltaTableBase OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bottom layer address value (MAC) of the node."
::= { sfpsAliasDeltaTableEntry 3 }
sfpsAliasDeltaTableAlias OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The higher layer address associated with the discovered node."
::= { sfpsAliasDeltaTableEntry 4 }
sfpsAliasDeltaTableAliasLength OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of alias octets in sfpsAliasDeltaTableAliasOctets."
::= { sfpsAliasDeltaTableEntry 5 }
sfpsAliasDeltaTableOpaqueTag OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A textual identifier for the type of alias this entry
represents."
::= { sfpsAliasDeltaTableEntry 6 }
sfpsAliasDeltaTableAliasState OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
added(2), -- newly discovered
deleted(3) -- newly lost
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This enumeration describes the state of the delta table entry.
A value of (2) indicates the entry has been added to the alias
table. A value of (3) indicates the entry has been deleted
from the alias table."
::= { sfpsAliasDeltaTableEntry 7 }
sfpsAliasDeltaTableNodeLock OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasDeltaTableEntry 8 }
sfpsAliasDeltaTableAliasLock OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasDeltaTableEntry 9 }
sfpsAliasDeltaTableTimestamp OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsAliasDeltaTableEntry 10 }
--
-- SFPS Switch Agent Topology Alias Delta Table Information
-- These two oids are used to check the status of the Delta Table and
-- clear the Delta Table with a set.
sfpsAliasDeltaCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of entries in the alias delta table."
::= { sfpsTopologyAliases 3 }
sfpsAliasDeltaSetBack OBJECT-TYPE
SYNTAX INTEGER {
lock(1), -- lock table to read
unlock(2) -- unlock and clear table
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Used to lock the table so that all the entries may be
read without additions or losses. Then after the table
has been read the table is unlocked to clear those entries
which have been read and allow new entries to be added or
lost."
::= { sfpsTopologyAliases 4 }
sfpsAliasDeltaFullFlag OBJECT-TYPE
SYNTAX INTEGER {
full(1),
unfull(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyAliases 5 }
--
-- SFPS Directory Test API Group
-- This group contains the objects that pertain to the SFPS Directory
-- Test Application Program Interface (API). The API provides a verb-based
-- autonomous interface to the directory information.
sfpsDAPITestVerb OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
add(2), -- add to the following
delete(3), -- delete from the following
resolve(4), -- resolve from the following
multiResolve(5), -- resolve multiple entries
fillDirectory(6), -- Flood directory with entries
ageDirectory(7), -- Wait
mapVlanOnPort(8), -- Map port on connection
mapVlanOffPort(9) -- Map port off connection
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the action to be initiated as a result of setting this leaf"
::= { sfpsTopologyDAPITest 1 }
sfpsDAPITestSwitchMac OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the actual user's MAC value for the action."
::= { sfpsTopologyDAPITest 2 }
sfpsDAPITestPort OBJECT-TYPE
SYNTAX SfpsSwitchPort
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Source Port os a user when mapping a user"
::= { sfpsTopologyDAPITest 3 }
sfpsDAPITestAddrOneTag OBJECT-TYPE
SYNTAX INTEGER {
macDX(1),
ipxSap(2),
ipxRIP(3),
inetYP(4),
inetUDP(5),
ipxIpx(6),
inetIP(7),
inetRPC(8),
inetRIP(9),
macDXMcast(10),
atDDP(11),
empty(12),
vlan(13),
hostName(14),
netBiosName(15),
inetIPMask(16),
ipxSap8022(17),
ipxSapSnap(18),
ipxSapEnet(19),
ipxRip8022(20),
ipxRipSnap(21),
ipxRipEnet(22)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the Address tag of the user."
::= { sfpsTopologyDAPITest 4 }
sfpsDAPITestAddrOneValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the Address value of the user."
::= { sfpsTopologyDAPITest 5 }
sfpsDAPITestAddrTwoTag OBJECT-TYPE
SYNTAX INTEGER {
macDX(1),
ipxSap(2),
ipxRIP(3),
inetYP(4),
inetUDP(5),
ipxIpx(6),
inetIP(7),
inetRPC(8),
inetRIP(9),
macDXMcast(10),
atDDP(11),
empty(12),
vlan(13),
hostName(14),
netBiosName(15),
inetIPMask(16),
ipxSap8022(17),
ipxSapSnap(18),
ipxSapEnet(19),
ipxRip8022(20),
ipxRipSnap(21),
ipxRipEnet(22)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the address tag of the user."
::= { sfpsTopologyDAPITest 6 }
sfpsDAPITestAddrTwoValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the Address value of the user"
::= { sfpsTopologyDAPITest 7 }
sfpsDAPITestCallTag OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specify the Call Tag value of the user."
::= { sfpsTopologyDAPITest 8 }
sfpsDAPITestOutputTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsDAPITestOutputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A Table of the DAPITest switch ports, both input and output."
::= { sfpsTopologyDAPITest 9 }
sfpsDAPITestOutputEntry OBJECT-TYPE
SYNTAX SfpsDAPITestOutputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains information pertaining to a DAPITest
switch port."
INDEX { sfpsDAPITestOutputIndex }
::= { sfpsDAPITestOutputTable 1 }
SfpsDAPITestOutputEntry ::=
SEQUENCE {
sfpsDAPITestOutputIndex INTEGER,
sfpsDAPITestOutputSwitchMac SfpsAddress,
sfpsDAPITestOutputPort INTEGER,
sfpsDAPITestOutputAddrOneTag INTEGER,
sfpsDAPITestOutputAddrOneValue DisplayString,
sfpsDAPITestOutputAddrTwoTag INTEGER,
sfpsDAPITestOutputAddrTwoValue DisplayString,
sfpsDAPITestOutputCallTag INTEGER
}
sfpsDAPITestOutputIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index of entries in the DAPITest Output Table."
::= { sfpsDAPITestOutputEntry 1 }
sfpsDAPITestOutputSwitchMac OBJECT-TYPE
SYNTAX SfpsAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the actual user's MAC value for the action."
::= { sfpsDAPITestOutputEntry 2 }
sfpsDAPITestOutputPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the Source Port of a user when mapping a user."
::= { sfpsDAPITestOutputEntry 3 }
sfpsDAPITestOutputAddrOneTag OBJECT-TYPE
SYNTAX INTEGER {
macDX(1),
ipxSap(2),
ipxRIP(3),
inetYP(4),
inetUDP(5),
ipxIpx(6),
inetIP(7),
inetRPC(8),
inetRIP(9),
macDXMcast(10),
atDDP(11),
empty(12),
vlan(13),
hostName(14),
netBiosName(15),
inetIPMask(16),
ipxSap8022(17),
ipxSapSnap(18),
ipxSapEnet(19),
ipxRip8022(20),
ipxRipSnap(21),
ipxRipEnet(22)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the Address tag of the user."
::= { sfpsDAPITestOutputEntry 4 }
sfpsDAPITestOutputAddrOneValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the address value of the user."
::= { sfpsDAPITestOutputEntry 5 }
sfpsDAPITestOutputAddrTwoTag OBJECT-TYPE
SYNTAX INTEGER {
macDX(1),
ipxSap(2),
ipxRIP(3),
inetYP(4),
inetUDP(5),
ipxIpx(6),
inetIP(7),
inetRPC(8),
inetRIP(9),
macDXMcast(10),
atDDP(11),
empty(12),
vlan(13),
hostName(14),
netBiosName(15),
inetIPMask(16),
ipxSap8022(17),
ipxSapSnap(18),
ipxSapEnet(19),
ipxRip8022(20),
ipxRipSnap(21),
ipxRipEnet(22)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the address tag of the user."
::= { sfpsDAPITestOutputEntry 6 }
sfpsDAPITestOutputAddrTwoValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the address value of the user."
::= { sfpsDAPITestOutputEntry 7 }
sfpsDAPITestOutputCallTag OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specify the Call Tag value of the user."
::= { sfpsDAPITestOutputEntry 8 }
-- SFPS Directory API Group
-- This group contains the objects that pertain to the SFPS Directory