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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
|
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
-- support@ctron.com
--
-- 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
-- Application Program Interface (API). The API provides a verb-based
-- autonomous interface to the directory information.
sfpsDAPIVerb OBJECT-TYPE
SYNTAX INTEGER {
other(1),
add(2),
delete(3),
clearPort(4),
clearPortLocals(5),
clearSwitchRefs(6),
lockNode(7),
unlockNode(8),
restrictPort(9),
unrestrictPort(10),
ageNodes(11),
ageAliases(12)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Describes the action to perform with the information provided
in the other leafs of this MIB group. This leaf should be set
last (after all other desired information is provided)."
::= { sfpsTopologyDAPI 1 }
sfpsDAPIPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Describes the port of the entry."
::= { sfpsTopologyDAPI 2 }
sfpsDAPINodeType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Describes the node type with a well-known string."
::= { sfpsTopologyDAPI 3 }
sfpsDAPINodeValue OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of the node address (i.e., base MAC) for this entry."
::= { sfpsTopologyDAPI 4 }
sfpsDAPIAliasType OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Describes the alias type associated with this node. This must be
a well-known string."
::= { sfpsTopologyDAPI 5 }
sfpsDAPIAliasValue OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of the alias (i.e., protocol address) for this entry."
::= { sfpsTopologyDAPI 6 }
sfpsDAPIAge OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"In minutes"
::= { sfpsTopologyDAPI 7 }
-- DIRECTORY
sfpsServiceCenterDirectoryTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsServiceCenterDirectoryEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table gives directory semantics to call processing."
::= { sfpsServiceCenter 3 }
sfpsServiceCenterDirectoryEntry OBJECT-TYPE
SYNTAX SfpsServiceCenterDirectoryEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the configuration of the Directory Entry."
INDEX { sfpsServiceCenterDirectoryHashLeaf }
::= { sfpsServiceCenterDirectoryTable 1 }
SfpsServiceCenterDirectoryEntry ::=
SEQUENCE {
sfpsServiceCenterDirectoryHashLeaf HexInteger,
sfpsServiceCenterDirectoryMetric INTEGER,
sfpsServiceCenterDirectoryName DisplayString,
sfpsServiceCenterDirectoryOperStatus INTEGER,
sfpsServiceCenterDirectoryAdminStatus INTEGER,
sfpsServiceCenterDirectoryStatusTime TimeTicks,
sfpsServiceCenterDirectoryRequests INTEGER,
sfpsServiceCenterDirectoryResponses INTEGER
}
sfpsServiceCenterDirectoryHashLeaf OBJECT-TYPE
SYNTAX HexInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server hash, part of instance key."
::= { sfpsServiceCenterDirectoryEntry 1 }
sfpsServiceCenterDirectoryMetric OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Defines order servers are called low to high."
::= { sfpsServiceCenterDirectoryEntry 2 }
sfpsServiceCenterDirectoryName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Server name."
::= { sfpsServiceCenterDirectoryEntry 3 }
sfpsServiceCenterDirectoryOperStatus OBJECT-TYPE
SYNTAX INTEGER {
kStatusRunning(1), -- all is well
kStatusHalted(2), -- admin disabled
kStatusPending(3), -- Trying to run, not there yet
kStatusFaulted(4), -- Internal error, never will recover
kStatusNotStarted(5) -- Not fully started yet
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Operational state of entry."
::= { sfpsServiceCenterDirectoryEntry 4 }
sfpsServiceCenterDirectoryAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Not running or stopped
disable(2), -- Please stop
enable(3) -- Go
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Administrative State of Entry."
::= { sfpsServiceCenterDirectoryEntry 5 }
sfpsServiceCenterDirectoryStatusTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time Tick of last operStatus change."
::= { sfpsServiceCenterDirectoryEntry 6 }
sfpsServiceCenterDirectoryRequests OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Requests made to server."
::= { sfpsServiceCenterDirectoryEntry 7 }
sfpsServiceCenterDirectoryResponses OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"GOOD replies by server."
::= { sfpsServiceCenterDirectoryEntry 8 }
--
sfpsTopologyDirStatsTotalUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes used by the Directory."
::= { sfpsTopologyDirStats 1 }
sfpsTopologyDirStatsDynamicUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes dynamically used by the Directory."
::= { sfpsTopologyDirStats 2 }
sfpsTopologyDirStatsNumOfNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current number of nodes in the Directory."
::= { sfpsTopologyDirStats 3 }
sfpsTopologyDirStatsNodeUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes used by the nodes."
::= { sfpsTopologyDirStats 4 }
sfpsTopologyDirStatsNumLocalNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of nodes local to the switch."
::= { sfpsTopologyDirStats 5 }
sfpsTopologyDirStatsLocalNodeUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes used by the local nodes."
::= { sfpsTopologyDirStats 6 }
sfpsTopologyDirStatsMaxLocalNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of local nodes that resided in Directory
since the switch initiated."
::= { sfpsTopologyDirStats 7 }
sfpsTopologyDirStatsNumRemoteNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of remote nodes in the Directory."
::= { sfpsTopologyDirStats 8 }
sfpsTopologyDirStatsRemoteNodeUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes used for the Remote nodes."
::= { sfpsTopologyDirStats 9 }
sfpsTopologyDirStatsMaxRemoteNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of remote nodes that resided in Directory
since the switch initiated."
::= { sfpsTopologyDirStats 10 }
sfpsTopologyDirStatsNumOfAliases OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of aliases in the Directory. An alias is an entry
that maps to a node. It may be layer 3 information, Vlan
information, etc. There can be several alias entries which
bind to on node entry."
::= { sfpsTopologyDirStats 11 }
sfpsTopologyDirStatsAliasUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes used by the aliases in the Directory."
::= { sfpsTopologyDirStats 12 }
sfpsTopologyDirStatsStaticUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of bytes statically used for Directory."
::= { sfpsTopologyDirStats 14 }
sfpsTopologyDirStatsObjectsUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of objects used in Directory."
::= { sfpsTopologyDirStats 15 }
sfpsTopologyDirStatsNodeTableSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of node entries in Node Table."
::= { sfpsTopologyDirStats 16 }
sfpsTopologyDirStatsNodeTableUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes used for Node Table."
::= { sfpsTopologyDirStats 17 }
sfpsTopologyDirStatsAliasTableSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of alias entries in Alias Table."
::= { sfpsTopologyDirStats 18 }
sfpsTopologyDirStatsAliasTableUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of bytes used for Alias Table."
::= { sfpsTopologyDirStats 19 }
sfpsTopologyDirStatsNodeCollisions OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of collisions - Node Table."
::= { sfpsTopologyDirStats 20 }
sfpsTopologyDirStatsNodeLongestChain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 21 }
sfpsTopologyDirStatsAliasCollisions OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of collisions - Alias Table."
::= { sfpsTopologyDirStats 22 }
sfpsTopologyDirStatsAliasLongestChain OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 23 }
sfpsTopologyDirStatsLocalAddsRefused OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of adds into the Directory of local nodes which
were refused."
::= { sfpsTopologyDirStats 24 }
sfpsTopologyDirStatsAliasRemotesReplaced OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of remote entries which had to be replaced in
the Directory."
::= { sfpsTopologyDirStats 25 }
sfpsTopologyDirStatsAliasMultiPortClears OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the Directory entries were cleared for
multiple ports. Used for debugging."
::= { sfpsTopologyDirStats 26 }
sfpsTopologyDirStatsReservedForRemoteNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of entries in the Directory reserved for Remote
nodes. Remote nodes may exceed this reserved area but if
the Directory becomes full from local nodes, then the remote
nodes will be cycled through this reserved area."
::= { sfpsTopologyDirStats 27 }
sfpsTopologyDirStatsNumSwitches OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 28 }
sfpsTopologyDirStatsSwitchUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 29 }
sfpsTopologyDirStatsMaxSwitches OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 30 }
sfpsTopologyDirStatsSwitchTableSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 31 }
sfpsTopologyDirStatsSwitchTableUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 32 }
sfpsTopologyDirStatsSwitchLookups OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 33 }
sfpsTopologyDirStatsSwitchCacheHits OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 34 }
sfpsTopologyDirStatsNumVlans OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 35 }
sfpsTopologyDirStatsVlanUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 36 }
sfpsTopologyDirStatsMaxVlans OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 37 }
sfpsTopologyDirStatsVlanTableSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 38 }
sfpsTopologyDirStatsVlanTableUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 39 }
sfpsTopologyDirStatsVlanLookups OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 40 }
sfpsTopologyDirStatsVlanCacheHits OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 41 }
sfpsTopologyDirStatsNodeAliasMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 42 }
sfpsTopologyDirStatsLocalAliasRefused OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 43 }
sfpsTopologyDirStatsRemoteAliasRemoved OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 44 }
---
sfpsDirAliasStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsDirAliasStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyDirStats 13 }
sfpsDirAliasStatsEntry OBJECT-TYPE
SYNTAX SfpsDirAliasStatsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { sfpsDirAliasStatsAliasType }
::= { sfpsDirAliasStatsTable 1 }
SfpsDirAliasStatsEntry ::=
SEQUENCE {
sfpsDirAliasStatsAliasType INTEGER,
sfpsDirAliasStatsAliasName DisplayString,
sfpsDirAliasStatsNumOfAliases INTEGER,
sfpsDirAliasStatsAliasUsage INTEGER,
sfpsDirAliasStatsMaxAliases INTEGER
}
sfpsDirAliasStatsAliasType OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number which correlates to an alias name."
::= { sfpsDirAliasStatsEntry 1 }
sfpsDirAliasStatsAliasName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A human readable name which represents the Alias type."
::= { sfpsDirAliasStatsEntry 2 }
sfpsDirAliasStatsNumOfAliases OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current number of alias entries of this AliasType."
::= { sfpsDirAliasStatsEntry 3 }
sfpsDirAliasStatsAliasUsage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of memory (bytes) used by entries of this alias
type."
::= { sfpsDirAliasStatsEntry 4 }
sfpsDirAliasStatsMaxAliases OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum number of entries of this Alias Type that have
been in the Directory."
::= { sfpsDirAliasStatsEntry 5 }
--
sfpsDirFilterAliasTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsDirFilterAliasEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyRemoteNodes 3 }
sfpsDirFilterAliasEntry OBJECT-TYPE
SYNTAX SfpsDirFilterAliasEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { sfpsDirFilterAliasLockCount, sfpsDirFilterAliasAliasHash, sfpsDirFilterAliasBaseHash, sfpsDirFilterAliasHashIndex }
::= { sfpsDirFilterAliasTable 1 }
SfpsDirFilterAliasEntry ::=
SEQUENCE {
sfpsDirFilterAliasLockCount INTEGER,
sfpsDirFilterAliasAliasHash INTEGER,
sfpsDirFilterAliasBaseHash INTEGER,
sfpsDirFilterAliasHashIndex INTEGER,
sfpsDirFilterAliasDomain DisplayString,
sfpsDirFilterAliasChassisType DisplayString,
sfpsDirFilterAliasChassisLoad DisplayString,
sfpsDirFilterAliasSwitchType DisplayString,
sfpsDirFilterAliasSwitchLoad DisplayString,
sfpsDirFilterAliasInPort INTEGER,
sfpsDirFilterAliasBaseType DisplayString,
sfpsDirFilterAliasBaseLoad DisplayString,
sfpsDirFilterAliasNodeState INTEGER,
sfpsDirFilterAliasNodeAge TimeTicks,
sfpsDirFilterAliasNodeLock INTEGER,
sfpsDirFilterAliasLinkType DisplayString,
sfpsDirFilterAliasLinkLoad DisplayString,
sfpsDirFilterAliasLinkAge TimeTicks,
sfpsDirFilterAliasLinkLock INTEGER,
sfpsDirFilterAliasVlanLearned INTEGER,
sfpsDirFilterAliasOpaqueTag OCTET STRING,
sfpsDirFilterAliasChassisOctets OCTET STRING,
sfpsDirFilterAliasSwitchOctets OCTET STRING,
sfpsDirFilterAliasNodeOctets OCTET STRING,
sfpsDirFilterAliasLinkOctets OCTET STRING,
sfpsDirFilterAliasNodeLocal INTEGER,
sfpsDirFilterAliasLinkState INTEGER
}
sfpsDirFilterAliasLockCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 1 }
sfpsDirFilterAliasAliasHash OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 2 }
sfpsDirFilterAliasBaseHash OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 3 }
sfpsDirFilterAliasHashIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 4 }
sfpsDirFilterAliasDomain OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 5 }
sfpsDirFilterAliasChassisType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 6 }
sfpsDirFilterAliasChassisLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 7 }
sfpsDirFilterAliasSwitchType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 8 }
sfpsDirFilterAliasSwitchLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 9 }
sfpsDirFilterAliasInPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 10 }
sfpsDirFilterAliasBaseType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 11 }
sfpsDirFilterAliasBaseLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 12 }
sfpsDirFilterAliasNodeState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 13 }
sfpsDirFilterAliasNodeAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 14 }
sfpsDirFilterAliasNodeLock OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked-to-port(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 15 }
sfpsDirFilterAliasLinkType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 16 }
sfpsDirFilterAliasLinkLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 17 }
sfpsDirFilterAliasLinkAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 18 }
sfpsDirFilterAliasLinkLock OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked-to-node(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 19 }
sfpsDirFilterAliasVlanLearned OBJECT-TYPE
SYNTAX INTEGER {
other(1),
inherited(2),
amr(3),
static(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 20 }
sfpsDirFilterAliasOpaqueTag OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 21 }
sfpsDirFilterAliasChassisOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 22 }
sfpsDirFilterAliasSwitchOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 23 }
sfpsDirFilterAliasNodeOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 24 }
sfpsDirFilterAliasLinkOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 25 }
sfpsDirFilterAliasNodeLocal OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 26 }
sfpsDirFilterAliasLinkState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
remote(2),
local(3),
hidden(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAliasEntry 27 }
--
sfpsDirFilterNodeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SfpsDirFilterNodeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
::= { sfpsTopologyRemoteNodes 2 }
sfpsDirFilterNodeEntry OBJECT-TYPE
SYNTAX SfpsDirFilterNodeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
""
INDEX { sfpsDirFilterNodeLockCount, sfpsDirFilterNodeNodeIndex, sfpsDirFilterNodeLinkIndex }
::= { sfpsDirFilterNodeTable 1 }
SfpsDirFilterNodeEntry ::=
SEQUENCE {
sfpsDirFilterNodeLockCount INTEGER,
sfpsDirFilterNodeNodeIndex INTEGER,
sfpsDirFilterNodeLinkIndex INTEGER,
sfpsDirFilterNodeNodeCount INTEGER,
sfpsDirFilterNodeLinkCount INTEGER,
sfpsDirFilterNodeDomainName DisplayString,
sfpsDirFilterNodeChassisType DisplayString,
sfpsDirFilterNodeChassisLoad DisplayString,
sfpsDirFilterNodeSwitchType DisplayString,
sfpsDirFilterNodeSwitchLoad DisplayString,
sfpsDirFilterNodeInPort INTEGER,
sfpsDirFilterNodeBaseType DisplayString,
sfpsDirFilterNodeBaseLoad DisplayString,
sfpsDirFilterNodeNodeState INTEGER,
sfpsDirFilterNodeNodeAge TimeTicks,
sfpsDirFilterNodeNodeLock INTEGER,
sfpsDirFilterNodeLinkType DisplayString,
sfpsDirFilterNodeLinkLoad DisplayString,
sfpsDirFilterNodeLinkAge TimeTicks,
sfpsDirFilterNodeLinkLock INTEGER,
sfpsDirFilterNodeVlanLearned INTEGER,
sfpsDirFilterNodeOpaqueTag OCTET STRING,
sfpsDirFilterNodeChassisOctets OCTET STRING,
sfpsDirFilterNodeSwitchOctets OCTET STRING,
sfpsDirFilterNodeNodeOctets OCTET STRING,
sfpsDirFilterNodeLinkOctets OCTET STRING,
sfpsDirFilterNodeNodeLocal INTEGER,
sfpsDirFilterNodeLinkState INTEGER
}
sfpsDirFilterNodeLockCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 1 }
sfpsDirFilterNodeNodeIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 2 }
sfpsDirFilterNodeLinkIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 3 }
sfpsDirFilterNodeNodeCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 4 }
sfpsDirFilterNodeLinkCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 5 }
sfpsDirFilterNodeDomainName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 6 }
sfpsDirFilterNodeChassisType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 7 }
sfpsDirFilterNodeChassisLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 8 }
sfpsDirFilterNodeSwitchType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 9 }
sfpsDirFilterNodeSwitchLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 10 }
sfpsDirFilterNodeInPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 11 }
sfpsDirFilterNodeBaseType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 12 }
sfpsDirFilterNodeBaseLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 13 }
sfpsDirFilterNodeNodeState OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 14 }
sfpsDirFilterNodeNodeAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 15 }
sfpsDirFilterNodeNodeLock OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked-to-port(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 16 }
sfpsDirFilterNodeLinkType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 17 }
sfpsDirFilterNodeLinkLoad OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 18 }
sfpsDirFilterNodeLinkAge OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 19 }
sfpsDirFilterNodeLinkLock OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked-to-node(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 20 }
sfpsDirFilterNodeVlanLearned OBJECT-TYPE
SYNTAX INTEGER {
other(1),
inherit(2),
autoReg(3),
static(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 21 }
sfpsDirFilterNodeOpaqueTag OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 22 }
sfpsDirFilterNodeChassisOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 23 }
sfpsDirFilterNodeSwitchOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 24 }
sfpsDirFilterNodeNodeOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 25 }
sfpsDirFilterNodeLinkOctets OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 26 }
sfpsDirFilterNodeNodeLocal OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 27 }
sfpsDirFilterNodeLinkState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
remote(2),
local(3),
hidden(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterNodeEntry 28 }
--
sfpsDirFilterAPILockAdmin OBJECT-TYPE
SYNTAX INTEGER {
other(1),
lock(2),
unlock(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 1 }
sfpsDirFilterAPILockStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
locked(2),
unlocked(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 2 }
sfpsDirFilterAPILockCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 3 }
sfpsDirFilterAPIValueType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 4 }
sfpsDirFilterAPIValue OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 5 }
sfpsDirFilterAPILockTimeOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 6 }
sfpsDirFilterAPILockTimeElapsed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { sfpsDirFilterAPI 7 }
END
|