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
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
|
JUNIPER-MIMSTP-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE,MODULE-IDENTITY, Integer32,
enterprises,Counter32, TimeTicks,NOTIFICATION-TYPE FROM SNMPv2-SMI
RowStatus, TEXTUAL-CONVENTION, MacAddress,
TruthValue FROM SNMPv2-TC
BridgeId, Timeout FROM BRIDGE-MIB
jnxXstpMibs FROM JUNIPER-SMI;
jnxMIMstMIB MODULE-IDENTITY
LAST-UPDATED "201605310000Z" -- Tue May 31 00:00:00 2016 UTC
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
"Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This mib module is for Juniper Networks Proprietory
Multiple Instance MSTP mib"
REVISION "200705030000Z"
DESCRIPTION
"Updated DESCRIPTION for jnxMIMstInstanceUpCount and
jnxMIMstInstanceDownCount"
REVISION "200705240000Z"
DESCRIPTION
"Updated DESCRIPTION for jnxMIMstNewRootTrap"
REVISION "200712180000Z"
DESCRIPTION
"Defined new tables jnxMIMstCistPortProtectTable and
jnxMIMstMstiPortProtectTable and new notifications under
jnxMIMstTraps to support Root Protect and Loop Protect."
REVISION "201605310000Z"
DESCRIPTION
"Removed duplicates"
::= { jnxXstpMibs 1 }
VlanId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A 12-bit VLAN ID used in the VLAN Tag header."
SYNTAX Integer32 (1..4094)
EnabledStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A simple status value for the object."
SYNTAX INTEGER { enabled(1), disabled(2) }
jnxMIDot1sJuniperMst OBJECT IDENTIFIER ::= { jnxMIMstMIB 1 }
jnxMIDot1sJnxMstTrapsControl OBJECT IDENTIFIER ::= { jnxMIMstMIB 2 }
jnxMIDot1sJuniperMstTraps OBJECT IDENTIFIER ::= { jnxMIMstMIB 3 }
-- jnxMIDot1qJuniperMst group
jnxMIMstGlobalTrace OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to enable Global Trace
Statements in the MSTP Module."
::= { jnxMIDot1sJuniperMst 1 }
jnxMIMstGlobalDebug OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to enable Global Debug
Statements in the MSTP Module."
::= { jnxMIDot1sJuniperMst 2 }
jnxMIDot1sJuniperMstTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIDot1sJuniperMstEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of per Virtual Context Mst Module Parameters."
::= { jnxMIDot1sJuniperMst 3 }
jnxMIDot1sJuniperMstEntry OBJECT-TYPE
SYNTAX JnxMIDot1sJuniperMstEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Virtual Context Mst Module Parameters."
INDEX { jnxMIDot1sJuniperMstContextId }
::= { jnxMIDot1sJuniperMstTable 1 }
JnxMIDot1sJuniperMstEntry ::=
SEQUENCE {
jnxMIDot1sJuniperMstContextId
Integer32,
jnxMIMstSystemControl
INTEGER,
jnxMIMstModuleStatus
EnabledStatus,
jnxMIMstMaxMstInstanceNumber
Integer32,
jnxMIMstNoOfMstiSupported
Integer32,
jnxMIMstMaxHopCount
Integer32,
jnxMIMstBrgAddress
MacAddress,
jnxMIMstCistRoot
BridgeId,
jnxMIMstCistRegionalRoot
BridgeId,
jnxMIMstCistRootCost
Integer32,
jnxMIMstCistRegionalRootCost
Integer32,
jnxMIMstCistRootPort
Integer32,
jnxMIMstCistBridgePriority
Integer32,
jnxMIMstCistBridgeMaxAge
Timeout,
jnxMIMstCistBridgeForwardDelay
Timeout,
jnxMIMstCistHoldTime
Integer32,
jnxMIMstCistMaxAge
Timeout,
jnxMIMstCistForwardDelay
Timeout,
jnxMIMstMstpUpCount
Counter32,
jnxMIMstMstpDownCount
Counter32,
jnxMIMstPathCostDefaultType
INTEGER,
jnxMIMstTrace
Integer32,
jnxMIMstDebug
Integer32,
jnxMIMstForceProtocolVersion
INTEGER,
jnxMIMstTxHoldCount
INTEGER,
jnxMIMstMstiConfigIdSel
Integer32,
jnxMIMstMstiRegionName
OCTET STRING,
jnxMIMstMstiRegionVersion
Integer32,
jnxMIMstMstiConfigDigest
OCTET STRING,
jnxMIMstBufferOverFlowCount
Counter32,
jnxMIMstMemAllocFailureCount
Counter32,
jnxMIMstRegionConfigChangeCount
Counter32,
jnxMIMstCistBridgeRoleSelectionSemState
INTEGER,
jnxMIMstCistTimeSinceTopologyChange
TimeTicks,
jnxMIMstCistTopChanges
Counter32,
jnxMIMstCistNewRootBridgeCount
Counter32,
jnxMIMstCistHelloTime
Timeout,
jnxMIMstCistBridgeHelloTime
Timeout,
jnxMIMstCistDynamicPathcostCalculation
TruthValue
}
jnxMIDot1sJuniperMstContextId OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identifies the Virtual Context."
::= { jnxMIDot1sJuniperMstEntry 1 }
jnxMIMstSystemControl OBJECT-TYPE
SYNTAX INTEGER { start(1), shutdown(2) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative shutdown status requested by management for the MST
feature. The value start (1) indicates that MST should be active in
the device on all ports. The value shutdown (2) indicates that MST
should be shutdown in the device on all ports. All memory should
be released on all ports."
::= { jnxMIDot1sJuniperMstEntry 2 }
jnxMIMstModuleStatus OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative status requested by management for the MST
feature. The value enabled(1) indicates that Mst should be enabled
in the device on all ports. The value disabled(2) indicates that
Mst should be disabled in the device on all ports. The object can
be set to enabled(1) if and only if, jnxMIMstSystemControl set to start."
::= { jnxMIDot1sJuniperMstEntry 3 }
jnxMIMstMaxMstInstanceNumber OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Maximun number of spanning trees to be allowed.
A User may limit the Number of Spanning Tree instance
to be allowed in the Bridge."
::= { jnxMIDot1sJuniperMstEntry 4 }
jnxMIMstNoOfMstiSupported OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates Maximum number of spanning tree Instances supported."
::= { jnxMIDot1sJuniperMstEntry 5 }
jnxMIMstMaxHopCount OBJECT-TYPE
SYNTAX Integer32 (600..4000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Maximum Hop Count value.
The granularity of this timer is specified
to be 1 second. An agent may return a badValue
error if a set is attempted to a value which is
not a whole number of seconds."
DEFVAL { 2000 }
::= { jnxMIDot1sJuniperMstEntry 6 }
jnxMIMstBrgAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address used by this bridge when it must
be referred to in a unique fashion. It is
recommended that this be the numerically smallest
MAC address of all ports that belong to this
bridge. However it is only required to be unique.
When concatenated with jnxMIMstCistBridgePriority or
jnxMIMstMstiBridgePriority a unique BridgeIdentifier
is formed which is used in the Spanning Tree Protocol."
::= { jnxMIDot1sJuniperMstEntry 7 }
jnxMIMstCistRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bridge identifier of the Root of the common spanning
tree as determined by the Spanning Tree Protocol
as executed by this node. This value is used as
the CIST Root Identifier parameter in all Configuration
Bridge PDUs originated by this node."
::= { jnxMIDot1sJuniperMstEntry 8 }
jnxMIMstCistRegionalRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bridge identifier of the Root of the Multiple
spanning tree region as determined by the Spanning Tree
Protocol as executed by this node. This value is used as
the CIST Regional Root Identifier parameter in all Configuration
Bridge PDUs originated by this node."
::= { jnxMIDot1sJuniperMstEntry 9 }
jnxMIMstCistRootCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Cost of the path to the CIST Root as seen
from this bridge."
::= { jnxMIDot1sJuniperMstEntry 10 }
jnxMIMstCistRegionalRootCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Cost of the path to the CIST Regional Root
as seen from this bridge."
::= { jnxMIDot1sJuniperMstEntry 11 }
jnxMIMstCistRootPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port Number of the Port which offers the lowest
path cost from this bridge to the CIST Root Bridge."
::= { jnxMIDot1sJuniperMstEntry 12 }
jnxMIMstCistBridgePriority OBJECT-TYPE
SYNTAX Integer32 (0..61440)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Value of the writable portion of the Bridge
Identifier comprising of the first two octets.
The values that are set for Bridge Priority must be
in steps of 4096."
DEFVAL {32768}
::= { jnxMIDot1sJuniperMstEntry 13 }
jnxMIMstCistBridgeMaxAge OBJECT-TYPE
SYNTAX Timeout (600..4000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value that all bridges use for MaxAge when
this bridge is acting as the root. The granularity
of this timer is specified to be 1 second.
An agent may return a badValue error if a set is
attempted to a value which is not a whole number
of seconds."
DEFVAL {2000}
::= { jnxMIDot1sJuniperMstEntry 14 }
jnxMIMstCistBridgeForwardDelay OBJECT-TYPE
SYNTAX Timeout (400..3000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value that all bridges use for ForwardDelay
when this bridge is acting as the root. Note that
802.1D specifies that the range for this
parameter is related to the value of
BridgeMaxAge. The granularity of this
timer is specified to be 1 second.
An agent may return a badValue error if a set is
attempted to a value which is not a whole number
of seconds."
DEFVAL {1500}
::= { jnxMIDot1sJuniperMstEntry 15 }
jnxMIMstCistHoldTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This time value determines the interval length
during which no more than two Configuration bridge
PDUs shall be transmitted by this node, in units
of hundredths of a second."
::= { jnxMIDot1sJuniperMstEntry 16 }
jnxMIMstCistMaxAge OBJECT-TYPE
SYNTAX Timeout
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum age of Spanning Tree Protocol
information learned from the network on any port
before it is discarded, in units of hundredths of
a second. This is the actual value that this
bridge is currently using."
::= { jnxMIDot1sJuniperMstEntry 17 }
jnxMIMstCistForwardDelay OBJECT-TYPE
SYNTAX Timeout
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This time value, measured in units of hundredths
of a second, controls how fast a port changes its
spanning state when moving towards the Forwarding
state. The value determines how long the port
stays in a particular state before moving to the
next state."
::= { jnxMIDot1sJuniperMstEntry 18 }
jnxMIMstMstpUpCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times MSTP Module has been enabled."
::= { jnxMIDot1sJuniperMstEntry 19 }
jnxMIMstMstpDownCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times MSTP Module has been disabled."
::= { jnxMIDot1sJuniperMstEntry 20 }
jnxMIMstPathCostDefaultType OBJECT-TYPE
SYNTAX INTEGER {
stp8021d1998(1),
stp8021t2001(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the Spanning Tree default Path Costs that
are to be used by this Bridge. A value of 8021d1998(1)
uses the 16-bit default Path Costs from IEEE Std. 802.1D-1998.
A value of stp8021t2001(2) uses the 32-bit default Path
Costs from IEEE Std. 802.1t."
::= { jnxMIDot1sJuniperMstEntry 21 }
jnxMIMstTrace OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to enable Trace Statements in the MSTP
Module.
A FOUR BYTE integer is used for enabling the level of tracing.
Each BIT in the four byte integer, represents a particular
level of Trace.
The mapping between the bit positions & the level of trace is
as follows:
0 - Init and Shutdown Traces
1 - Management Traces
2 - Data Path Traces
3 - Control Plane Traces
4 - Packet Dump Traces
5 - Traces related to All Resources except Buffers
6 - All Failure Traces
7 - Buffer Traces
The remaining bits are unused. Combination of trace levels are
also allowed.
For example if the bits 0 and 1 are set, then the Trace
statements related to Init-Shutdown and management
will be printed.
The user has to enter the corresponding INTEGER VALUE for the
bits set. For example if bits 0 and 1 are to be set then user has
to give the value for this object as 3.
Setting the Trace Option to any value will cause the Debug Option
to be set to 0 (i.e.) the Trace Option and Debug Option are mutually
exclusive."
DEFVAL { 0 }
::= { jnxMIDot1sJuniperMstEntry 22 }
jnxMIMstDebug OBJECT-TYPE
SYNTAX Integer32 (0..131071)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to enable Debug Statements in the MSTP
Module.
A FOUR BYTE integer is used for enabling the level of debugging.
Each BIT in the four byte integer, represents a particular
level of Debug.
The mapping between the bit positions & the level of debug is
as follows:
0 - Init and Shutdown Debug statements
1 - Management Debug statements
2 - Memory related Debug statements
3 - BPDU related Debug statements
4 - Event Handling Debug statements
5 - Timer Module Debug statements
6 - Port Information SEM Debug statements
7 - Port Receive SEM Debug statements (valid in the case of MSTP alone)
8 - Role Selection SEM Debug statements
9 - Role Transition SEM Debug statements
10 - State Transition SEM Debug statements
11 - Protocol Migration SEM Debug statements
12 - Topology Change SEM Debug statements
13 - Port Transmit SEM Debug statements
14 - Bridge Detection SEM Debug statements
15 - All Failure Debug statements
16 - Redundancy code flow Debug statements
The remaining bits are unused. Combination of debug levels are
also allowed.
For example if the bits 0 and 1 are set, then the Debug
statements related to Init-Shutdown and management
will be printed.
The user has to enter the corresponding INTEGER VALUE for the
bits set. For example if bits 0 and 1 are to be set then user has
to give the value for this object as 3.
Setting the Debug Option to any value will cause the Trace Option
to be set to 0 (i.e.) the Trace Option and Debug Option are mutually
exclusive."
DEFVAL { 0 }
::= { jnxMIDot1sJuniperMstEntry 23 }
jnxMIMstForceProtocolVersion OBJECT-TYPE
SYNTAX INTEGER {
stpCompatible(0),
rstp(2),
mstp(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of Spanning Tree Protocol the bridge is
currently running. The value 'stpCompatible(0)'
indicates the Spanning Tree Protocol specified in
IEEE 802.1D and 'rstp(2)' indicates the Rapid Spanning
Tree Protocol specified in IEEE 802.1w and 'mstp(3)'
indicates the Multiple Spanning Tree Protocol Specified
in IEEE 802.1s."
DEFVAL { mstp }
::= { jnxMIDot1sJuniperMstEntry 24 }
jnxMIMstTxHoldCount OBJECT-TYPE
SYNTAX INTEGER (1..10)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value used by the Port Transmit state machine to limit
the maximum transmission rate."
DEFVAL { 3 }
::= { jnxMIDot1sJuniperMstEntry 25 }
jnxMIMstMstiConfigIdSel OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Configuration Identifier Format Selector used
by the Bridge. This has a fixed value of 0 to indicate
RegionName, RegionVersion are specified as in Standard."
::= { jnxMIDot1sJuniperMstEntry 26 }
jnxMIMstMstiRegionName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Name for the Region's configuration. By Default
Region Name will be equal to the Bridge Mac Address."
::= { jnxMIDot1sJuniperMstEntry 27 }
jnxMIMstMstiRegionVersion OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of the MST Region."
::= { jnxMIDot1sJuniperMstEntry 28 }
jnxMIMstMstiConfigDigest OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Configuration Digest value for this Region."
::= { jnxMIDot1sJuniperMstEntry 29 }
jnxMIMstBufferOverFlowCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times Buffer overflows/failures have occured.
A Trap is generated on the occurence of this event."
::= { jnxMIDot1sJuniperMstEntry 30 }
jnxMIMstMemAllocFailureCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times memory allocation failures have occured.
A Trap is generated on the occurence of this event."
::= { jnxMIDot1sJuniperMstEntry 31 }
jnxMIMstRegionConfigChangeCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a Region Configuration Identifier Change
was detected.
A Trap is generated on the occurence of this event."
::= { jnxMIDot1sJuniperMstEntry 32 }
jnxMIMstCistBridgeRoleSelectionSemState OBJECT-TYPE
SYNTAX INTEGER {
initbridge (0),
roleselection (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port Role Selection State Machine
of this bridge in Common Spanning Tree context"
::= { jnxMIDot1sJuniperMstEntry 33 }
jnxMIMstCistTimeSinceTopologyChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in hundredths of a second) since the
TcWhile Timer for any port in this Bridge was
non-zero for Common Spanning Tree context."
::= { jnxMIDot1sJuniperMstEntry 34 }
jnxMIMstCistTopChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that there have been atleast
one non-zero TcWhile Timer on this Bridge for Common
Spanning Tree context."
::= { jnxMIDot1sJuniperMstEntry 35 }
jnxMIMstCistNewRootBridgeCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times this Bridge has detected a Root
Bridge change for Common Spanning Tree context.
A Trap is generated on the occurence of this event."
::= { jnxMIDot1sJuniperMstEntry 36 }
jnxMIMstCistHelloTime OBJECT-TYPE
SYNTAX Timeout
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This time value, measured in units of hundredths
of a second, specifies the amount of time between
the transmission of configuration BPDUs by this node
on any port when it is the root of the spanning tree
or trying to become so."
::= { jnxMIDot1sJuniperMstEntry 37 }
jnxMIMstCistBridgeHelloTime OBJECT-TYPE
SYNTAX Timeout (100..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time between the transmission of
Configuration bridge PDUs by this node in units
of hundredths of a second."
::= { jnxMIDot1sJuniperMstEntry 38 }
jnxMIMstCistDynamicPathcostCalculation OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to determine whether dynamic pathcost
calculation is allowed or not.The value is determined by
management. If set to true, pathcost is calculated dynamically
from port speed, otherwise the link speed at the time of port
creation is used for calculating the path cost. In both cases
if the user has configured a pathcost for the port that will be
used. By default dynamic pathcost calculation is set to false."
DEFVAL { false }
::= { jnxMIDot1sJuniperMstEntry 39 }
-- -------------------------------------
-- jnxMIDot1sJuniperMstTable - End
-- -------------------------------------
-- -----------------------------------------------------------------
-- Juniper Mst Multiple Spanning Tree Instance Bridge Table
-- -----------------------------------------------------------------
jnxMIMstMstiBridgeTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstMstiBridgeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table containing Bridge Information specific to Spanning
Tree Instance. This table maintains context ID as one
more index to support Multiple Instances."
::= { jnxMIDot1sJuniperMst 4 }
jnxMIMstMstiBridgeEntry OBJECT-TYPE
SYNTAX JnxMIMstMstiBridgeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry indicating the Bridge Information."
INDEX { jnxMIDot1sJuniperMstContextId, jnxMIMstMstiInstanceIndex }
::= { jnxMIMstMstiBridgeTable 1 }
JnxMIMstMstiBridgeEntry ::=
SEQUENCE {
jnxMIMstMstiInstanceIndex
Integer32,
jnxMIMstMstiBridgeRegionalRoot
BridgeId,
jnxMIMstMstiBridgePriority
Integer32,
jnxMIMstMstiRootCost
Integer32,
jnxMIMstMstiRootPort
Integer32,
jnxMIMstMstiTimeSinceTopologyChange
TimeTicks,
jnxMIMstMstiTopChanges
Counter32,
jnxMIMstMstiNewRootBridgeCount
Counter32,
jnxMIMstMstiBridgeRoleSelectionSemState
INTEGER,
jnxMIMstInstanceUpCount
Counter32,
jnxMIMstInstanceDownCount
Counter32,
jnxMIMstOldDesignatedRoot
BridgeId
}
jnxMIMstMstiInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Spanning Tree Instance to which the information belongs."
::= { jnxMIMstMstiBridgeEntry 1 }
jnxMIMstMstiBridgeRegionalRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"MSTI Regional Root Identifier value for the Instance. This value
is used as the MSTI Regional Root Identifier parameter in all
Configuration Bridge PDUs originated by this node"
::= { jnxMIMstMstiBridgeEntry 2 }
jnxMIMstMstiBridgePriority OBJECT-TYPE
SYNTAX Integer32 (0..61440)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The writable portion of the MSTI Bridge Identifier.
comprising of the first two octets.
The values that are set for Bridge Priority must be
in steps of 4096."
DEFVAL {32768}
::= { jnxMIMstMstiBridgeEntry 3 }
jnxMIMstMstiRootCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Cost of the path to the MSTI Regional Root as seen
by this bridge."
::= { jnxMIMstMstiBridgeEntry 4 }
jnxMIMstMstiRootPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port Number of the Port which offers the lowest
path cost from this bridge to the MSTI Region Root Bridge."
::= { jnxMIMstMstiBridgeEntry 5 }
jnxMIMstMstiTimeSinceTopologyChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time (in hundredths of a second) since the
TcWhile Timer for any port in this Bridge was
non-zero for this spanning tree instance."
::= { jnxMIMstMstiBridgeEntry 6 }
jnxMIMstMstiTopChanges OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times that there have been atleast
one non-zero TcWhile Timer on this Bridge for this
spanning tree instance."
::= { jnxMIMstMstiBridgeEntry 7 }
jnxMIMstMstiNewRootBridgeCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times this Bridge has detected a Root
Bridge change for this spanning tree instance.
A Trap is generated on the occurence of this event."
::= { jnxMIMstMstiBridgeEntry 8 }
jnxMIMstMstiBridgeRoleSelectionSemState OBJECT-TYPE
SYNTAX INTEGER {
initbridge (0),
roleselection (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port Role Selection State Machine
for this spanning tree instance for this bridge."
::= { jnxMIMstMstiBridgeEntry 9 }
jnxMIMstInstanceUpCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a new spanning tree instance has
been created. This counter is incremented whenever a new
spanning tree instance is created and also whenever a
vlan is mapped to the instance.
A Trap is generated on the occurence of this event."
::= { jnxMIMstMstiBridgeEntry 10 }
jnxMIMstInstanceDownCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a spanning tree instance has
been deleted. This counter is incremented whenever a
spanning tree instance is deleted and also whenever a
vlan is unmapped from the instance.
A Trap is generated on the occurence of this event."
::= { jnxMIMstMstiBridgeEntry 11 }
jnxMIMstOldDesignatedRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bridge identifier of the old root of the spanning
tree instance as determined by the Spanning Tree Protocol
as executed by this node. "
::= { jnxMIMstMstiBridgeEntry 12 }
-- -----------------------------------------------------------------
-- Juniper Mst VlanId to Instance Mapping Table
-- -----------------------------------------------------------------
jnxMIMstVlanInstanceMappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstVlanInstanceMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one entry for each instance of MSTP.
This table maintains context ID as one more index to
support Multiple Instances."
::= { jnxMIDot1sJuniperMst 5 }
jnxMIMstVlanInstanceMappingEntry OBJECT-TYPE
SYNTAX JnxMIMstVlanInstanceMappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing the status of the MSTP instance."
INDEX { jnxMIDot1sJuniperMstContextId, jnxMIMstInstanceIndex }
::= { jnxMIMstVlanInstanceMappingTable 1 }
JnxMIMstVlanInstanceMappingEntry ::=
SEQUENCE {
jnxMIMstInstanceIndex
Integer32,
jnxMIMstMapVlanIndex
VlanId,
jnxMIMstUnMapVlanIndex
VlanId,
jnxMIMstSetVlanList
OCTET STRING,
jnxMIMstResetVlanList
OCTET STRING,
jnxMIMstInstanceVlanMapped
OCTET STRING,
jnxMIMstInstanceVlanMapped2k
OCTET STRING,
jnxMIMstInstanceVlanMapped3k
OCTET STRING,
jnxMIMstInstanceVlanMapped4k
OCTET STRING
}
jnxMIMstInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer within the range from 1 to the value of
Max Instance Number that uniquely identifies an instance."
::= { jnxMIMstVlanInstanceMappingEntry 1 }
jnxMIMstMapVlanIndex OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VlanId will get mapped to the spanning tree instance
specified. All the Instance Specific information for the
Member ports of the Vlan will be created.This object is
used only for SET operation.GET Operation returns null values.
If the VlanId to Instance Mapping has to be known then any
one of the VlanMapped object should be used."
::= { jnxMIMstVlanInstanceMappingEntry 2 }
jnxMIMstUnMapVlanIndex OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VlanId will get unmapped from spanning tree instance
to which it it mapped. All the Instance Specific information
for the Member ports of the Vlan will get released.This object
is used only for SET operation.GET Operation returns null values."
::= { jnxMIMstVlanInstanceMappingEntry 3 }
jnxMIMstSetVlanList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
1 through 8; the second octet to VLANs 9 through
16 etc. The most significant bit of each octet
corresponds to the lowest VlanIndex value in that octet.
The set of vlans configured by management to map for this
Instance. If the VlanId to Instance Mapping has to be known
then any one of the VlanMapped object should be used.If a
vlan is already mapped to this Instance, it may not be mapped
again. This object is used only for SET operation.
GET Operation returns null values."
::= { jnxMIMstVlanInstanceMappingEntry 4 }
jnxMIMstResetVlanList OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
1 through 8; the second octet to VLANs 9 through
16 etc. The most significant bit of each octet
corresponds to the lowest VlanIndex value in that octet.
The set of vlans configured by management to unmap from this
Instance. A vlan may not be unmapped from this instance if
it is not already mapped to this Instance. This object is
used only for SET operation.GET Operation returns null values."
::= { jnxMIMstVlanInstanceMappingEntry 5 }
jnxMIMstInstanceVlanMapped OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
1 through 8; the second octet to VLANs 9 through
16 etc. The most significant bit of each octet
corresponds to the lowest VlanIndex value in that octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'."
::= { jnxMIMstVlanInstanceMappingEntry 6 }
jnxMIMstInstanceVlanMapped2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
1024 through 1031; the second octet to VLANs 1032
through 1039 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
This object is only instantiated on devices with
support for VlanIndex values up to 4095."
::= { jnxMIMstVlanInstanceMappingEntry 7 }
jnxMIMstInstanceVlanMapped3k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 2048 through 3071. The
first octet corresponds to VLANs with VlanIndex values
of 2048 through 2055; the second octet to VLANs 2056
through 2063 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
This object is only instantiated on devices with
support for VlanIndex values up to 4095."
::= { jnxMIMstVlanInstanceMappingEntry 8 }
jnxMIMstInstanceVlanMapped4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
3072 through 3079; the second octet to VLANs 3080
through 3087 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
This object is only instantiated on devices with
support for VlanIndex values up to 4095."
::= { jnxMIMstVlanInstanceMappingEntry 9 }
-- -----------------------------------------------------------------
-- Juniper Mst Common Spanning Tree Port Table
-- -----------------------------------------------------------------
jnxMIMstCistPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstCistPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Common Spanning Tree Port
Information."
::= { jnxMIDot1sJuniperMst 6 }
jnxMIMstCistPortEntry OBJECT-TYPE
SYNTAX JnxMIMstCistPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information maintained by every port for
Common Spanning tree."
INDEX { jnxMIMstCistPort }
::= { jnxMIMstCistPortTable 1 }
JnxMIMstCistPortEntry ::=
SEQUENCE {
jnxMIMstCistPort
Integer32,
jnxMIMstCistPortPathCost
Integer32,
jnxMIMstCistPortPriority
Integer32,
jnxMIMstCistPortDesignatedRoot
BridgeId,
jnxMIMstCistPortDesignatedBridge
BridgeId,
jnxMIMstCistPortDesignatedPort
OCTET STRING,
jnxMIMstCistPortAdminP2P
INTEGER,
jnxMIMstCistPortOperP2P
TruthValue,
jnxMIMstCistPortAdminEdgeStatus
TruthValue,
jnxMIMstCistPortOperEdgeStatus
TruthValue,
jnxMIMstCistPortProtocolMigration
TruthValue,
jnxMIMstCistPortState
INTEGER,
jnxMIMstCistForcePortState
INTEGER,
jnxMIMstCistPortForwardTransitions
Counter32,
jnxMIMstCistPortRxMstBpduCount
Counter32,
jnxMIMstCistPortRxRstBpduCount
Counter32,
jnxMIMstCistPortRxConfigBpduCount
Counter32,
jnxMIMstCistPortRxTcnBpduCount
Counter32,
jnxMIMstCistPortTxMstBpduCount
Counter32,
jnxMIMstCistPortTxRstBpduCount
Counter32,
jnxMIMstCistPortTxConfigBpduCount
Counter32,
jnxMIMstCistPortTxTcnBpduCount
Counter32,
jnxMIMstCistPortInvalidMstBpduRxCount
Counter32,
jnxMIMstCistPortInvalidRstBpduRxCount
Counter32,
jnxMIMstCistPortInvalidConfigBpduRxCount
Counter32,
jnxMIMstCistPortInvalidTcnBpduRxCount
Counter32,
jnxMIMstCistPortTransmitSemState
INTEGER,
jnxMIMstCistPortReceiveSemState
INTEGER,
jnxMIMstCistPortProtMigrationSemState
INTEGER,
jnxMIMstCistProtocolMigrationCount
Counter32,
jnxMIMstCistPortDesignatedCost
Integer32,
jnxMIMstCistPortRegionalRoot
BridgeId,
jnxMIMstCistPortRegionalPathCost
Integer32,
jnxMIMstCistSelectedPortRole
INTEGER,
jnxMIMstCistCurrentPortRole
INTEGER,
jnxMIMstCistPortInfoSemState
INTEGER,
jnxMIMstCistPortRoleTransitionSemState
INTEGER,
jnxMIMstCistPortStateTransitionSemState
INTEGER,
jnxMIMstCistPortTopologyChangeSemState
INTEGER,
jnxMIMstCistPortHelloTime
Timeout,
jnxMIMstCistPortOperVersion
INTEGER,
jnxMIMstCistPortEffectivePortState
TruthValue,
jnxMIMstCistPortAutoEdgeStatus
TruthValue
}
jnxMIMstCistPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port number of the port for which this entry contains
spanning tree information."
::= { jnxMIMstCistPortEntry 1 }
jnxMIMstCistPortPathCost OBJECT-TYPE
SYNTAX Integer32 (1..200000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The contribution of this port to the path cost of
paths towards the CIST Root which include this port."
::= { jnxMIMstCistPortEntry 2 }
jnxMIMstCistPortPriority OBJECT-TYPE
SYNTAX Integer32 (0..240)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The four most significant bits of the Port Identifier
of the Spanning Tree instance can be modified by setting
the CistPortPriority value. The values that are set for Port
Priority must be in steps of 16."
DEFVAL {128}
::= { jnxMIMstCistPortEntry 3 }
jnxMIMstCistPortDesignatedRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Bridge Identifier of the bridge recorded as the
CIST Root in the configuration BPDUs transmitted."
::= { jnxMIMstCistPortEntry 4 }
jnxMIMstCistPortDesignatedBridge OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Bridge Identifier of the bridge which this port
considers to be the Designated Bridge for the port's segment."
::= { jnxMIMstCistPortEntry 5 }
jnxMIMstCistPortDesignatedPort OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port identifier of the port on the Designated Bridge
for this port's segment."
::= { jnxMIMstCistPortEntry 6 }
jnxMIMstCistPortAdminP2P OBJECT-TYPE
SYNTAX INTEGER {
forceTrue(0),
forceFalse(1),
auto(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative point-to-point status of the LAN segment
attached to this port. A value of forceTrue(0) indicates that
this port should always be treated as if it is connected to
a point-to-point link. A value of forceFalse(1) indicates
that this port should be treated as having a shared media
connection. A value of auto(2) indicates that this port is
considered to have a point-to-point link if it is an Aggregator
and all of its members are aggregatable, or if the MAC entity
is configured for full duplex operation, either through
auto-negotiation or by management means."
::= { jnxMIMstCistPortEntry 7 }
jnxMIMstCistPortOperP2P OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational point-to-point status of the LAN segment
attached to this port. It indicates whether a port is
considered to have a point-to-point connection or not.
The value is determined by management or by auto-detection,
as described in the jnxMIMstCistPortAdminP2P object."
::= { jnxMIMstCistPortEntry 8 }
jnxMIMstCistPortAdminEdgeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The administrative value of the Edge Port parameter. A
value of TRUE(1) indicates that this port should be
assumed as an edge-port and a value of FALSE(2) indicates
that this port should be assumed as a non-edge-port."
::= { jnxMIMstCistPortEntry 9 }
jnxMIMstCistPortOperEdgeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational value of the Edge Port parameter. The
object is initialized to the value of
jnxMIMstCistPortAdminEdgeStatus and is set FALSE on reception
of a BPDU."
::= { jnxMIMstCistPortEntry 10 }
jnxMIMstCistPortProtocolMigration OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Protocol migration state of this Port.
When operating in RSTP/MSTP (version >= 2) mode, writing
TRUE(1) to this object forces this port to transmit MSTP
BPDUs without instance information.
Any other operation on this object has no effect and
it always returns FALSE(2) when read."
::= { jnxMIMstCistPortEntry 11 }
jnxMIMstCistPortState OBJECT-TYPE
SYNTAX INTEGER {
disabled (1),
discarding (2),
learning (4),
forwarding (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port as defined by the Common
spanning tree protocol."
::= { jnxMIMstCistPortEntry 12 }
jnxMIMstCistForcePortState OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port which can be changed to either
Disabled or Enabled for ALL spanning tree
instances. Setting this object will override the port's
status in any of the MSTI contexts"
::= { jnxMIMstCistPortEntry 13 }
jnxMIMstCistPortForwardTransitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times this port has transitioned to the
Forwarding State."
::= { jnxMIMstCistPortEntry 14 }
jnxMIMstCistPortRxMstBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of MST BPDUs received on this port."
::= { jnxMIMstCistPortEntry 15 }
jnxMIMstCistPortRxRstBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RST BPDUs received on this port."
::= { jnxMIMstCistPortEntry 16 }
jnxMIMstCistPortRxConfigBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Configuration BPDUs received on this port."
::= { jnxMIMstCistPortEntry 17 }
jnxMIMstCistPortRxTcnBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of TCN BPDUs received on this port."
::= { jnxMIMstCistPortEntry 18 }
jnxMIMstCistPortTxMstBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of MST BPDUs Transmitted from this port."
::= { jnxMIMstCistPortEntry 19 }
jnxMIMstCistPortTxRstBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RST BPDUs Transmitted from this port."
::= { jnxMIMstCistPortEntry 20 }
jnxMIMstCistPortTxConfigBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Configuration BPDUs Transmitted from this port."
::= { jnxMIMstCistPortEntry 21 }
jnxMIMstCistPortTxTcnBpduCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of TCN BPDUs Transmitted from this port."
::= { jnxMIMstCistPortEntry 22 }
jnxMIMstCistPortInvalidMstBpduRxCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Invalid MST BPDUs Received on this port."
::= { jnxMIMstCistPortEntry 23 }
jnxMIMstCistPortInvalidRstBpduRxCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Invalid RST BPDUs Received on this port."
::= { jnxMIMstCistPortEntry 24 }
jnxMIMstCistPortInvalidConfigBpduRxCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Invalid Configuration BPDUs Received on this port."
::= { jnxMIMstCistPortEntry 25 }
jnxMIMstCistPortInvalidTcnBpduRxCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Invalid TCN BPDUs Received on this port."
::= { jnxMIMstCistPortEntry 26 }
jnxMIMstCistPortTransmitSemState OBJECT-TYPE
SYNTAX INTEGER {
transmitinit (0),
transmitperiodic (1),
transmitconfig (2),
transmittcn (3),
transmitrstp (4),
idle (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates current State of the Port Transmit state machine."
::= { jnxMIMstCistPortEntry 27 }
jnxMIMstCistPortReceiveSemState OBJECT-TYPE
SYNTAX INTEGER {
discard (0),
receive (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates current State of the Port Receive state machine."
::= { jnxMIMstCistPortEntry 28 }
jnxMIMstCistPortProtMigrationSemState OBJECT-TYPE
SYNTAX INTEGER {
init (0),
sendrstp (1),
sendingrstp (2),
sendstp (3),
sendingstp (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates current State of the Port Protocol Migration
State machine."
::= { jnxMIMstCistPortEntry 29 }
jnxMIMstCistProtocolMigrationCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times this Port has migrated from one STP protocol
version to another. The relevant protocols are STP-COMPATIBLE and
RSTP/MSTP.
A Trap is generated on the occurence of this event."
::= { jnxMIMstCistPortEntry 30 }
jnxMIMstCistPortDesignatedCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path cost of the Designated Port of the
segment connected to this port."
::= { jnxMIMstCistPortEntry 31 }
jnxMIMstCistPortRegionalRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Bridge Identifier of the bridge recorded as the
CIST Regional Root Identifier in the configuration BPDUs
transmitted."
::= { jnxMIMstCistPortEntry 32 }
jnxMIMstCistPortRegionalPathCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The contribution of this port to the path cost of paths
towards the CIST Regional Root which include this port."
::= { jnxMIMstCistPortEntry 33 }
jnxMIMstCistSelectedPortRole OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
alternate(1),
backup(2),
root(3),
designated(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Selected Port Role of the port for this spanning
tree instance."
::= { jnxMIMstCistPortEntry 34 }
jnxMIMstCistCurrentPortRole OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
alternate(1),
backup(2),
root(3),
designated(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Port Role of the port for this spanning
tree instance."
::= { jnxMIMstCistPortEntry 35 }
jnxMIMstCistPortInfoSemState OBJECT-TYPE
SYNTAX INTEGER {
disabled (0),
enabled (1),
aged (2),
update (3),
superiordesg (4),
repeatdesg (5),
root (6),
other (7),
present (8),
receive (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port Information State Machine
for this port in this spanning tree context."
::= { jnxMIMstCistPortEntry 36 }
jnxMIMstCistPortRoleTransitionSemState OBJECT-TYPE
SYNTAX INTEGER {
init (0),
blockport (1),
blockedport (2),
activeport (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port Role Transition State Machine
for this port in this spanning tree context."
::= { jnxMIMstCistPortEntry 37 }
jnxMIMstCistPortStateTransitionSemState OBJECT-TYPE
SYNTAX INTEGER {
discarding (0),
learning (1),
forwarding (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port State Transition State Machine
for this port in this spanning tree context."
::= { jnxMIMstCistPortEntry 38 }
jnxMIMstCistPortTopologyChangeSemState OBJECT-TYPE
SYNTAX INTEGER {
init (0),
inactive (1),
active (2),
detected (3),
notifiedtcn (4),
notifiedtc (5),
propagating (6),
acknowledged (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Topology Change State Machine
for this port in this spanning tree context."
::= { jnxMIMstCistPortEntry 39 }
jnxMIMstCistPortHelloTime OBJECT-TYPE
SYNTAX Timeout (100..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of time between the transmission of
Configuration bridge PDUs by this node on this port
in units of hundredths of a second."
::= { jnxMIMstCistPortEntry 40 }
jnxMIMstCistPortOperVersion OBJECT-TYPE
SYNTAX INTEGER {
stpCompatible(0),
rstp(2),
mstp(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates whether the Port is operationally in the Mstp
mode, Rstp mode or the Stp-compatible mode i.e., whether the
Port is transmitting MST BPDUs, RST BPDUs or Config/TCN BPDUs."
::= { jnxMIMstCistPortEntry 41 }
jnxMIMstCistPortEffectivePortState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The effective operational state of the port for CIST. This will
TRUE only when the port is operationally up in the Interface level
and Protocol level for CIST. This is will be set to False for all
other times."
::= { jnxMIMstCistPortEntry 42 }
jnxMIMstCistPortAutoEdgeStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This parameter when TRUE(1) indicates that detection
of a port as Edge Port happens automatically
and FALSE(2) indicates that this feature is disabled."
::= { jnxMIMstCistPortEntry 43 }
-- -----------------------------------------------------------------
-- Juniper Mst Multiple Spanning Tree Instance Port Table
-- -----------------------------------------------------------------
jnxMIMstMstiPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstMstiPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains Spanning Tree Instance Specific Port
Information."
::= { jnxMIDot1sJuniperMst 7 }
jnxMIMstMstiPortEntry OBJECT-TYPE
SYNTAX JnxMIMstMstiPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information maintained by every port for each
and every spanning tree instance."
INDEX { jnxMIMstMstiPort, jnxMIMstInstanceIndex }
::= { jnxMIMstMstiPortTable 1 }
JnxMIMstMstiPortEntry ::=
SEQUENCE {
jnxMIMstMstiPort
Integer32,
jnxMIMstMstiPortPathCost
Integer32,
jnxMIMstMstiPortPriority
Integer32,
jnxMIMstMstiPortDesignatedRoot
BridgeId,
jnxMIMstMstiPortDesignatedBridge
BridgeId,
jnxMIMstMstiPortDesignatedPort
OCTET STRING,
jnxMIMstMstiPortState
INTEGER,
jnxMIMstMstiForcePortState
INTEGER,
jnxMIMstMstiPortForwardTransitions
Counter32,
jnxMIMstMstiPortReceivedBPDUs
Counter32,
jnxMIMstMstiPortTransmittedBPDUs
Counter32,
jnxMIMstMstiPortInvalidBPDUsRcvd
Counter32,
jnxMIMstMstiPortDesignatedCost
Integer32,
jnxMIMstMstiSelectedPortRole
INTEGER,
jnxMIMstMstiCurrentPortRole
INTEGER,
jnxMIMstMstiPortInfoSemState
INTEGER,
jnxMIMstMstiPortRoleTransitionSemState
INTEGER,
jnxMIMstMstiPortStateTransitionSemState
INTEGER,
jnxMIMstMstiPortTopologyChangeSemState
INTEGER,
jnxMIMstMstiPortEffectivePortState
TruthValue
}
jnxMIMstMstiPort OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Port number of the port for which this entry contains
spanning tree information."
::= { jnxMIMstMstiPortEntry 1 }
jnxMIMstMstiPortPathCost OBJECT-TYPE
SYNTAX Integer32 (1..200000000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The contribution of this port to the path cost of
paths towards the MSTI Root which include this port."
::= { jnxMIMstMstiPortEntry 2 }
jnxMIMstMstiPortPriority OBJECT-TYPE
SYNTAX Integer32 (0..240)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The four most significant bits of the Port Identifier
for a given Spanning Tree instance can be modified
independently for each Spanning Tree instance
supported by the Bridge. The values that are set for Port
Priority must be in steps of 16."
DEFVAL {128}
::= { jnxMIMstMstiPortEntry 3 }
jnxMIMstMstiPortDesignatedRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Bridge Identifier of the bridge recorded as the
MSTI Regional Root in the configuration BPDUs transmitted."
::= { jnxMIMstMstiPortEntry 4 }
jnxMIMstMstiPortDesignatedBridge OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique Bridge Identifier of the bridge which this port
considers to be the Designated Bridge for the port's segment."
::= { jnxMIMstMstiPortEntry 5 }
jnxMIMstMstiPortDesignatedPort OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Port identifier of the port on the Designated Bridge
for this port's segment."
::= { jnxMIMstMstiPortEntry 6 }
jnxMIMstMstiPortState OBJECT-TYPE
SYNTAX INTEGER {
disabled (1),
discarding (2),
learning (4),
forwarding (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port as defined by the Multiple
spanning tree protocol. Port which is Forwarding state
in one instance can be in Discarding (Blocking) state
in another instance."
::= { jnxMIMstMstiPortEntry 7 }
jnxMIMstMstiForcePortState OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port which can be changed to either
Disabled or Enabled for the specific spanning tree
instance. This object can be set to enabled only if the
'jnxMIMstCistForcePortState' is set to 'enabled' for this port"
::= { jnxMIMstMstiPortEntry 8 }
jnxMIMstMstiPortForwardTransitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times this port has transitioned to the
Forwarding State for specific instance."
::= { jnxMIMstMstiPortEntry 9 }
jnxMIMstMstiPortReceivedBPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of BPDUs received by this port for this
spanning tree instance."
::= { jnxMIMstMstiPortEntry 10 }
jnxMIMstMstiPortTransmittedBPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of BPDUs transmitted on this port for
this spanning tree instance."
::= { jnxMIMstMstiPortEntry 11 }
jnxMIMstMstiPortInvalidBPDUsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Invalid BPDUs received on this Port
for this spanning tree instance."
::= { jnxMIMstMstiPortEntry 12 }
jnxMIMstMstiPortDesignatedCost OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path cost of the Designated Port of the
segment connected to this port."
::= { jnxMIMstMstiPortEntry 13 }
jnxMIMstMstiSelectedPortRole OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
alternate(1),
backup(2),
root(3),
designated(4),
master(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Selected Port Role of the port for this spanning
tree instance."
::= { jnxMIMstMstiPortEntry 14 }
jnxMIMstMstiCurrentPortRole OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
alternate(1),
backup(2),
root(3),
designated(4),
master(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current Port Role of the port for this spanning
tree instance."
::= { jnxMIMstMstiPortEntry 15 }
jnxMIMstMstiPortInfoSemState OBJECT-TYPE
SYNTAX INTEGER {
disabled (0),
enabled (1),
aged (2),
update (3),
superiordesg (4),
repeatdesg (5),
root (6),
other (7),
present (8),
receive (9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port Information State Machine
for this port in this spanning tree context."
::= { jnxMIMstMstiPortEntry 16 }
jnxMIMstMstiPortRoleTransitionSemState OBJECT-TYPE
SYNTAX INTEGER {
init (0),
blockport (1),
blockedport (2),
activeport (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port Role Transition State Machine
for this port in this spanning tree context."
::= { jnxMIMstMstiPortEntry 17 }
jnxMIMstMstiPortStateTransitionSemState OBJECT-TYPE
SYNTAX INTEGER {
discarding (0),
learning (1),
forwarding (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Port State Transition State Machine
for this port in this spanning tree context."
::= { jnxMIMstMstiPortEntry 18 }
jnxMIMstMstiPortTopologyChangeSemState OBJECT-TYPE
SYNTAX INTEGER {
init (0),
inactive (1),
active (2),
detected (3),
notifiedtcn (4),
notifiedtc (5),
propagating (6),
acknowledged (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of the Topology Change State Machine
for this port in this spanning tree context."
::= { jnxMIMstMstiPortEntry 19 }
jnxMIMstMstiPortEffectivePortState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The effective operational stae of the port for specific instance.
This is will be TRUE only when the port is operationally up in the
interface level and Protocol level for the specific instance.
This is will be set to false at all other times."
::= { jnxMIMstMstiPortEntry 20 }
jnxMIMstCistPortProtectTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstCistPortProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the jnxMIMstCist Port Table for providing extensions
for Root Protect and Loop Protect to the corresponding
jnxMIMstCistPortTable entry."
::= { jnxMIDot1sJuniperMst 8 }
jnxMIMstCistPortProtectEntry OBJECT-TYPE
SYNTAX JnxMIMstCistPortProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the jnxMIMstCistPortProtectTable. This essentially
augments the jnxMIMstCistPortEntry with additional objects."
AUGMENTS { jnxMIMstCistPortEntry }
::= { jnxMIMstCistPortProtectTable 1 }
JnxMIMstCistPortProtectEntry ::=
SEQUENCE {
jnxMIMstCistPortRootProtectEnabled TruthValue,
jnxMIMstCistPortRootProtectState INTEGER,
jnxMIMstCistPortLoopProtectEnabled TruthValue,
jnxMIMstCistPortLoopProtectState INTEGER
}
jnxMIMstCistPortRootProtectEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A Boolean value set by management indicating whether Root protect
functionality is enabled on the port. If TRUE causes the Port not
to be selected as Root Port for the CIST or any MSTI, even it has
the best spanning tree priority vector. This parameter should be
FALSE by default. "
::= {jnxMIMstCistPortProtectEntry 1}
jnxMIMstCistPortRootProtectState OBJECT-TYPE
SYNTAX INTEGER {
no-error (0),
root-prevented (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the port was prevented from being a root port
for CIST. This parameter will always return 'no-error (0)' if
jnxMIMstCistPortRootProtectEnabled is FALSE. "
::= {jnxMIMstCistPortProtectEntry 2}
jnxMIMstCistPortLoopProtectEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A Boolean value set by management indicating whether Loop protect
functionality is enabled on the port. If TRUE causes the Port not
to be selected as Designated Port for the CIST or any MSTI, when
the received superior BPDU is aged out. This parameter should be
FALSE by default. "
::= {jnxMIMstCistPortProtectEntry 3}
jnxMIMstCistPortLoopProtectState OBJECT-TYPE
SYNTAX INTEGER {
no-error (0),
loop-prevented (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a potential Loop was prevented on the port for CIST.
This parameter will always return 'no-error (0)' if
jnxMIMstCistPortLoopProtectEnabled is FALSE. "
::= {jnxMIMstCistPortProtectEntry 4}
jnxMIMstMstiPortProtectTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstMstiPortProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines the jnxMIMstMsti Port Table for providing extensions
for Root Protect and Loop Protect to the corresponding
jnxMIMstMstiPortTable entry."
::= { jnxMIDot1sJuniperMst 9 }
jnxMIMstMstiPortProtectEntry OBJECT-TYPE
SYNTAX JnxMIMstMstiPortProtectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Defines an entry in the jnxMIMstMstiPortProtectTable. This essentially
augments the jnxMIMstMstiPortEntry with additional objects."
AUGMENTS { jnxMIMstMstiPortEntry }
::= { jnxMIMstMstiPortProtectTable 1 }
JnxMIMstMstiPortProtectEntry ::=
SEQUENCE {
jnxMIMstMstiPortRootProtectState INTEGER,
jnxMIMstMstiPortLoopProtectState INTEGER
}
jnxMIMstMstiPortRootProtectState OBJECT-TYPE
SYNTAX INTEGER {
no-error (0),
root-prevented (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the port was prevented from being a root port
for CIST. This parameter will always return 'no-error (0)' if
jnxMIMstCistPortRootProtectEnabled is FALSE. "
::= {jnxMIMstMstiPortProtectEntry 1}
jnxMIMstMstiPortLoopProtectState OBJECT-TYPE
SYNTAX INTEGER {
no-error (0),
loop-prevented (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a potential Loop was prevented on the port for CIST.
This parameter will always return 'no-error (0)' if
jnxMIMstCistPortLoopProtectEnabled is FALSE. "
::= {jnxMIMstMstiPortProtectEntry 2}
-- TRAP MIB BEGIN
jnxMIDot1sJnxMstSetGlobalTrapOption OBJECT-TYPE
SYNTAX Integer32 (0..1)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to enable and disable MSTP traps for memory
failure or buffer failure irrespective of the context in which
the failure occurs.
0 - Traps are not enabled.
1 - Memory and buffer failure traps enabled"
::= { jnxMIDot1sJnxMstTrapsControl 1 }
jnxMIMstGlobalErrTrapType OBJECT-TYPE
SYNTAX INTEGER {
none (0),
memfail (1),
bufffail (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used within the Trap Notification PDU.
It denotes general events like
none - none of the below values
memfail - memory allocation failure
bufffail - buffer allocation failure"
::= { jnxMIDot1sJnxMstTrapsControl 2 }
jnxMIDot1sJnxMstTrapsControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIDot1sJnxMstTrapsControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of per virtual bridge Trap Control Info."
::= { jnxMIDot1sJnxMstTrapsControl 3 }
jnxMIDot1sJnxMstTrapsControlEntry OBJECT-TYPE
SYNTAX JnxMIDot1sJnxMstTrapsControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Virtual bridge TrapsControl information."
INDEX { jnxMIDot1sJuniperMstContextId }
::= { jnxMIDot1sJnxMstTrapsControlTable 1 }
JnxMIDot1sJnxMstTrapsControlEntry ::=
SEQUENCE {
jnxMIMstSetTraps
Integer32,
jnxMIMstGenTrapType
INTEGER
}
jnxMIMstSetTraps OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is used to enable and disable context-specific
MSTP traps. Currently the following are defined
0 - Traps are not enabled.
1 - General Traps like protocol up or down
2 - Exception Traps like port protocol migration or
invalid packet rcvd in port
3 - All the above Traps "
::= { jnxMIDot1sJnxMstTrapsControlEntry 1 }
jnxMIMstGenTrapType OBJECT-TYPE
SYNTAX INTEGER {
none (0),
up (1),
down (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Used within the Trap Notification PDU.
It denotes general events like
none - none of the below values
up - protocol UP,
down - protocol DOWN"
::= { jnxMIDot1sJnxMstTrapsControlEntry 2 }
jnxMIMstPortTrapNotificationTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxMIMstPortTrapNotificationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to store the notification information
occured in each of the port for protocol migration and
invalid packet received. This table is maintained per virtual
context in the system."
::= { jnxMIDot1sJnxMstTrapsControl 4 }
jnxMIMstPortTrapNotificationEntry OBJECT-TYPE
SYNTAX JnxMIMstPortTrapNotificationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" This entry is used to store the notification information"
INDEX { jnxMIMstPortTrapIndex}
::= { jnxMIMstPortTrapNotificationTable 1 }
JnxMIMstPortTrapNotificationEntry ::=
SEQUENCE {
jnxMIMstPortTrapIndex
Integer32,
jnxMIMstPortMigrationType
INTEGER,
jnxMIMstPktErrType
INTEGER,
jnxMIMstPktErrVal
INTEGER
}
jnxMIMstPortTrapIndex OBJECT-TYPE
SYNTAX Integer32 (1..4096)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value, greater than zero, indicating the Port number."
::= { jnxMIMstPortTrapNotificationEntry 1 }
jnxMIMstPortMigrationType OBJECT-TYPE
SYNTAX INTEGER {
sendstp (0),
sendrstp (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Port Protocol migration type occured in the port"
::= { jnxMIMstPortTrapNotificationEntry 2 }
jnxMIMstPktErrType OBJECT-TYPE
SYNTAX INTEGER {
protocolIdErr(0),
invalidBpdu(1),
configLengthErr(2),
tcnLengthErr(3),
rstpLengthErr(4),
maxAgeErr(5),
fwdDelayErr(6),
helloTimeErr(7),
mstpLengthErr(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of invalid packet received in each of the port "
::= { jnxMIMstPortTrapNotificationEntry 3 }
jnxMIMstPktErrVal OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Packet error value corresponding to the above type "
::= { jnxMIMstPortTrapNotificationEntry 4 }
jnxMIMstTraps OBJECT IDENTIFIER ::= { jnxMIDot1sJuniperMstTraps 0 }
jnxMIMstGenTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstGenTrapType
}
STATUS current
DESCRIPTION
"Generated when any of the general events like protocol up or
protocol down occurs"
::= { jnxMIMstTraps 1 }
jnxMIMstErrTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstGlobalErrTrapType
}
STATUS current
DESCRIPTION
"Generated when any of the error events like memory failure or buffer failure
or protocol migration or new root or topology change occurs "
::= { jnxMIMstTraps 2 }
jnxMIMstNewRootTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstOldDesignatedRoot,
jnxMIMstMstiBridgeRegionalRoot,
jnxMIMstMstiInstanceIndex
}
STATUS current
DESCRIPTION
"Generated whenever a new root bridge is selected in the topology.
The jnxMIMstNewRootTrap indicates that the sending agent has become
the new root of the Spanning Tree; the trap is sent by a bridge soon
after its election as the new root"
::= { jnxMIMstTraps 3 }
jnxMIMstTopologyChgTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstMstiInstanceIndex
}
STATUS current
DESCRIPTION
"Generated when topology change is detected "
::= { jnxMIMstTraps 4 }
jnxMIMstProtocolMigrationTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstPortTrapIndex,
jnxMIMstForceProtocolVersion,
jnxMIMstPortMigrationType
}
STATUS current
DESCRIPTION
"Generated when port protocol migration happens in the port "
::= { jnxMIMstTraps 5 }
jnxMIMstInvalidBpduRxdTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstPortTrapIndex,
jnxMIMstPktErrType,
jnxMIMstPktErrVal
}
STATUS current
DESCRIPTION
"Generated when the invalid packet is received for
bpdu/stp/rstp/maximum age/forward delay/hello time"
::= { jnxMIMstTraps 6 }
jnxMIMstRegionConfigChangeTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstMstiConfigIdSel,
jnxMIMstMstiRegionName,
jnxMIMstMstiRegionVersion,
jnxMIMstMstiConfigDigest
}
STATUS current
DESCRIPTION
"Generated when the MST region's configuration
identifier changes."
::= { jnxMIMstTraps 7 }
jnxMIMstCistPortRootProtectStateChangeTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstCistPortRootProtectState
}
STATUS current
DESCRIPTION
"Generated when the ports Root-protect state (no-error or root-prevented)
for CIST changes."
::= { jnxMIMstTraps 8 }
jnxMIMstMstiPortRootProtectStateChangeTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstMstiPortRootProtectState
}
STATUS current
DESCRIPTION
"Generated when the ports Root-protect state (no-error or root-prevented)
an MSTI changes."
::= { jnxMIMstTraps 9 }
jnxMIMstCistPortLoopProtectStateChangeTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstCistPortLoopProtectState
}
STATUS current
DESCRIPTION
"Generated when the ports Loop-protect state (no-error or loop-prevented)
for CIST changes."
::= { jnxMIMstTraps 10 }
jnxMIMstMstiPortLoopProtectStateChangeTrap NOTIFICATION-TYPE
OBJECTS {
jnxMIMstBrgAddress,
jnxMIMstMstiPortLoopProtectState
}
STATUS current
DESCRIPTION
"Generated when the ports Loop-protect state (no-error or loop-prevented)
an MSTI changes."
::= { jnxMIMstTraps 11 }
-- TRAP MIB END
END
|