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
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
|
-- *****************************************************************
-- CISCO-STP-EXTENSIONS-MIB
--
-- August 1997, Fei Xu
--
-- Copyright (c) 1997-2014, 2017 by Cisco Systems Inc.
-- All rights reserved.
-- *****************************************************************
CISCO-STP-EXTENSIONS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Counter32,
Integer32,
Unsigned32,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
TruthValue,
TimeStamp,
DisplayString,
RowStatus,
TEXTUAL-CONVENTION
FROM SNMPv2-TC
dot1dStpPortEntry
FROM BRIDGE-MIB
vlanTrunkPortEntry,
VlanIndex,
vtpVlanEntry,
vtpVlanEditEntry
FROM CISCO-VTP-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoStpExtensionsMIB MODULE-IDENTITY
LAST-UPDATED "201708240000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
"Cisco Systems
Customer Service
Postal: 170 W Tasman Drive
San Jose, CA 95134
USA
Tel: +1 800 553-NETS
E-mail: cs-wbu@cisco.com"
DESCRIPTION
"The MIB module for managing Cisco extensions to
the 802.1D Spanning Tree Protocol (STP)."
REVISION "201708240000Z"
DESCRIPTION
"Added stpxMstInconsistencyTable & stpxMstInconsistencyUpdate."
REVISION "201407100000Z"
DESCRIPTION
"Added stpxL2GatewayDomainIdGroup.
Added a new value network(3) to stpxFastStartGlobalDefaultMode.
Added a new value network(3) to stpxFastStartOperMode."
REVISION "201303070000Z"
DESCRIPTION
"Added one new value network(5) to stpxFastStartPortMode."
REVISION "200512200000Z"
DESCRIPTION
"Added bit value rstp(5) to stpxSMSTPortStatus and
dispute(4) to stpxRPVSTPortStatus."
REVISION "200504120000Z"
DESCRIPTION
"Changed the description clauses of stpxMSTMaxHopCount
and stpxMSTInstanceRemainingHopCount.
Added StpxMSTConfigurationDigest textual convention.
Deprecated stpxMSTGroup3 and added the following groups:
stpxRSTPTransmitHoldCountGroup,
stpxSMSTPortMSTModeGroup, stpxSMSTMaxHopCountGroup,
stpxSMSTConfigDigestGroup and stpxMSTGroup4.
Added bit dispute(4) into the BITS syntax of
stpxSMSTPortStatus.
Deprecated stpxMIBCompliance11 and added
stpxMIBCompliance12."
REVISION "200407210000Z"
DESCRIPTION
"Added stpxPathCostOperModeGroup
and changed the decription of
stpxSpanningTreePathCostMode."
REVISION "200404080000Z"
DESCRIPTION
"Added stpxSMSTInstanceCISTGroup.
Added 3 new bit values into the BITS syntax
of stpxNotificationEnable:
inconsistency(2), rootInconsistency(3),
and loopInconsistency(4)."
REVISION "200401140000Z"
DESCRIPTION
"Deprecated stpxMSTGroup2 and
stpxPreferredMSTInstancesGroup.
Added stpxMSTGroup3, stpxSMSTGroup,
stpxSMSTInstanceGroup, stpxSMSTInstanceEditGroup,
stpxSMSTPortStatusGroup, stpxSMSTPortHelloTimeGroup.
Added one new value master(7) to stpxMSTPortRoleValue
and stpxRSTPPortRoleValue. Added 2 new unused bit
value into the BITS syntax of stpxRPVSTPortStatus."
REVISION "200310230000Z"
DESCRIPTION
"Added stpxExtendedSysIDGroup,
stpxNotificationEnableGroup, and
stpxFastStartOperModeGroup."
REVISION "200207110000Z"
DESCRIPTION
"Added Rapid Spanning Tree Protocol support.
Added stpxUplinkFastOperEnabled and
stpxBackboneFastOperEnabled objects.
Replaced stpxMSTPortAdminLinkType,
stpxMSTPortOperLinkType,
stpxMSTPortProtocolMigration
with stpxRSTPPortAdminLinkType,
stpxRSTPPortOperLinkType and
stpxRSTPPortProtocolMigration
defined in stpxRSTPPortTable.
Replaced stpxMSTPortRoleTable with
stpxRSTPPortRoleTable. Added stpxRPVSTPortTable."
REVISION "200112060000Z"
DESCRIPTION
"Added per port Bpdu Guard and Bpdu Filter
mode configuration support. Modified the
description of stpxUplinkFastEnabled and
stpxUplinkStationLearningGenRate for MST
support."
REVISION "200109140000Z"
DESCRIPTION
"Added MST support, Loop Guard Global Default mode
support and Fast Start Global Default mode support.
Deprecated stpxFastStartPortEnable and
stpxLoopGuardConfigEnabled objects. Changed description
of stpxUplinkFastEnabled, stpxUplinkFastTransitions,
stpxUplinkStationLearningGenRate,
stpxUplinkStationLearningFrames objects for MST support."
REVISION "200106200000Z"
DESCRIPTION
"Added BPDU Skewing feature support and modified
the SYNTAX clause of stpxUplinkStationLearningGenRate."
REVISION "200104120000Z"
DESCRIPTION
"Added PVST+ VLAN Configuration, MISTP to VLAN mapping,
Loopguard, and Port Fast Start support."
REVISION "200005230000Z"
DESCRIPTION
"Added Long Spanning Tree Path Cost Mode support."
REVISION "200003210000Z"
DESCRIPTION
"Added Rootguard, 4k VLAN and MISTP support."
REVISION "9711101200Z"
DESCRIPTION
"Additional objects to support SSTP."
REVISION "9708191200Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 82 }
stpxObjects OBJECT IDENTIFIER
::= { ciscoStpExtensionsMIB 1 }
stpxUplinkFastObjects OBJECT IDENTIFIER
::= { stpxObjects 1 }
stpxVlanObjects OBJECT IDENTIFIER
::= { stpxObjects 2 }
stpxInconsistencyObjects OBJECT IDENTIFIER
::= { stpxObjects 3 }
stpxBackboneFastObjects OBJECT IDENTIFIER
::= { stpxObjects 4 }
stpxRootGuardObjects OBJECT IDENTIFIER
::= { stpxObjects 5 }
stpxSpanningTreeObjects OBJECT IDENTIFIER
::= { stpxObjects 6 }
stpxMISTPObjects OBJECT IDENTIFIER
::= { stpxObjects 7 }
stpxLoopGuardObjects OBJECT IDENTIFIER
::= { stpxObjects 8 }
stpxFastStartObjects OBJECT IDENTIFIER
::= { stpxObjects 9 }
stpxBpduSkewingObjects OBJECT IDENTIFIER
::= { stpxObjects 10 }
stpxMSTObjects OBJECT IDENTIFIER
::= { stpxObjects 11 }
stpxRSTPObjects OBJECT IDENTIFIER
::= { stpxObjects 12 }
stpxRPVSTObjects OBJECT IDENTIFIER
::= { stpxObjects 13 }
stpxSMSTObjects OBJECT IDENTIFIER
::= { stpxObjects 14 }
stpxL2GatewayObjects OBJECT IDENTIFIER
::= { stpxObjects 16 }
stpxNotifications OBJECT IDENTIFIER
::= { ciscoStpExtensionsMIB 2 }
-- Textual Conventions
StpxMSTConfigurationDigest ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1x"
STATUS current
DESCRIPTION
"Represents an MST configuration digest."
SYNTAX OCTET STRING (SIZE (16))
-- UplinkFast capability
stpxUplinkFastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the UplinkFast capability is
administratively enabled on the device.
If the platform does not support configuration of this
object when the object value of stpxSpanningTreeType is
mst(4), then this object is not instantiated."
::= { stpxUplinkFastObjects 1 }
stpxUplinkFastTransitions OBJECT-TYPE
SYNTAX Counter32
UNITS "transitions"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative number of UplinkFast transitions (from
the STP 'Blocking' state directly to the STP 'Forwarding'
state). All transitions are included in this counter,
irrespective of the instance of the Spanning Tree
Protocol on which they occur.
If the platform supports the stpxUplinkFastOperEnabled
object, then this object is not instantiated when the
object value of stpxUplinkFastOperEnabled is false(2).
If the platform does not support the
stpxUplinkFastOperEnabled object, then this object is
not instantiated when the object value of
stpxSpanningTreeType is mst(4)."
::= { stpxUplinkFastObjects 2 }
stpxUplinkStationLearningGenRate OBJECT-TYPE
SYNTAX Integer32 (0..32000)
UNITS "frames"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of station-learning frames that this
device will generate in each 100 milli-second period after
a UplinkFast transition. By configuring this object, the
network administrator can limit the rate at which
station-learning frames are generated.
If the platform does not support configuration of this
object when the object value of stpxSpanningTreeType is
mst(4), then this object is not instantiated."
::= { stpxUplinkFastObjects 3 }
stpxUplinkStationLearningFrames OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative number of station-learning frames generated
due to UplinkFast transitions. All generated
station-learning frames are included in this counter,
irrespective of the instance of the Spanning Tree Protocol
on which the UplinkFast transition occurred.
If the platform supports the stpxUplinkFastOperEnabled
object, then this object is not instantiated when the
object value of stpxUplinkFastOperEnabled is false(2).
If the platform does not support the
stpxUplinkFastOperEnabled object, then this object is
not instantiated when the object value of
stpxSpanningTreeType is mst(4)."
::= { stpxUplinkFastObjects 4 }
stpxUplinkFastOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether the UplinkFast capability is
operationally enabled on the device."
::= { stpxUplinkFastObjects 5 }
-- Preferred VLANs for Load-Sharing across VLAN Trunk Ports
stpxPreferredVlansTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxPreferredVlansEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table containing indications of which VLANs are
preferred on which VLAN trunk ports. The preferred
VLANs on a trunk port have a lower Path Cost value
compared with the VLANs on the trunk not in the
preferred list. If the value of stpxSpanningTreeType
is neither pvstPlus(1) nor rapidPvstPlus(5), the
configuration in this table has no effect."
::= { stpxVlanObjects 1 }
stpxPreferredVlansEntry OBJECT-TYPE
SYNTAX StpxPreferredVlansEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry indicating which VLANs are preferred on a
specific VLAN trunk port."
AUGMENTS { vlanTrunkPortEntry }
::= { stpxPreferredVlansTable 1 }
StpxPreferredVlansEntry ::= SEQUENCE {
stpxPreferredVlansMap OCTET STRING,
stpxPreferredVlansMap2k OCTET STRING,
stpxPreferredVlansMap3k OCTET STRING,
stpxPreferredVlansMap4k OCTET STRING
}
stpxPreferredVlansMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN in the
management domain on this trunk port. The first octet
corresponds to VLANs with VlanIndex values of 0 through 7;
the second octet to VLANs 8 through 15; etc. The most
significant bit of each octet corresponds to the lowest
value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 1 }
stpxPreferredVlansMap2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for VLANS
with VlanIndex values of 1024 through 2047 in the management
domain on this trunk port. The first octet corresponds to
VLANs with VlanIndex values of 1024 through 1031;
the second octet to VLANs 1032 through 1039; etc.
The most significant bit of each octet corresponds to the
lowest value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 2 }
stpxPreferredVlansMap3k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for VLANS
with VlanIndex values of 2048 through 3071 in the management
domain on this trunk port. 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 value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 3 }
stpxPreferredVlansMap4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for VLANS
with VlanIndex values of 3072 through 4095 in the management
domain on this trunk port. The first octet corresponds to
VLANs with VlanIndex values of 3072 through 3079;
the second octet to VLANs 3080 through 3087; etc.
The most significant bit of each octet corresponds to the
lowest value VlanIndex in that octet.
For each VLAN, if it is preferred on this trunk port, then
the bit corresponding to that VLAN is set to '1'.
The default value is 128 bytes of zeros.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
VLAN on the trunk port), any SNMP Set operation accessing an
instance of this object should also write the value of
vlanTrunkPortSetSerialNo."
::= { stpxPreferredVlansEntry 4 }
-- Spanning Tree Protocol PVST+ VLAN Configuration
stpxPVSTVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxPVSTVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of Virtual LAN entries containing
information for Spanning Tree PVST+ protocol.
An entry will exist for each VLAN existing on
the device."
::= { stpxVlanObjects 2 }
stpxPVSTVlanEntry OBJECT-TYPE
SYNTAX StpxPVSTVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing Spanning Tree PVST+ Protocol
information for a particular Virtual LAN."
INDEX { stpxPVSTVlanIndex }
::= { stpxPVSTVlanTable 1 }
StpxPVSTVlanEntry ::= SEQUENCE {
stpxPVSTVlanIndex VlanIndex,
stpxPVSTVlanEnable INTEGER
}
stpxPVSTVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An index value that uniquely identifies the
Virtual LAN associated with this information."
::= { stpxPVSTVlanEntry 1 }
stpxPVSTVlanEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2),
notApplicable(3) -- read-only
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether Spanning Tree PVST+
Protocol is enabled for this Virtual LAN. If
Spanning Tree PVST+ Protocol is not supported
on this VLAN, then notApplicable(3) will be
returned while retrieving the object value for
this VLAN.
If the device only supports a single global
Spanning Tree PVST+ Protocol enable/disable
for all the existing VLANs, then the object
value assigned to this VLAN will be applied
to the object values of all the instances
in this table which do not have the value
of notApplicable(3).
If the value of stpxSpanningTreeType is neither
pvstPlus(1) nor rapidPvstPlus(5), then the value
of stpxPVSTVlanEnable for this VLAN can not be
changed."
DEFVAL { enabled }
::= { stpxPVSTVlanEntry 2 }
-- Objects to support Cisco's Shared Spanning Tree Protocol (SSTP).
stpxInconsistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the ports for which
a particular VLAN's Spanning Tree has been found to
have an inconsistency. Two types of inconsistency
are discovered: 1) an inconsistency where two different
port types have been plugged together; and 2) an
inconsistency where different switches have different
PVIDs for the same link."
::= { stpxInconsistencyObjects 1 }
stpxInconsistencyEntry OBJECT-TYPE
SYNTAX StpxInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A VLAN on a particular port for which a Spanning Tree
inconsistency is currently in effect."
INDEX {
stpxVlanIndex,
stpxPortIndex
}
::= { stpxInconsistencyTable 1 }
StpxInconsistencyEntry ::= SEQUENCE {
stpxVlanIndex VlanIndex,
stpxPortIndex Integer32,
stpxInconsistentState BITS
}
stpxVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN id of the VLAN."
::= { stpxInconsistencyEntry 1 }
stpxPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxInconsistencyEntry 2 }
stpxInconsistentState OBJECT-TYPE
SYNTAX BITS {
typeInconsistent(0),
pvidInconsistent(1) -- a PVID inconsistency
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The types of inconsistency which have been discovered on
this port for this VLAN's Spanning Tree.
When this object exists, the value of the corresponding
instance of the Bridge MIB's dot1dStpPortState object will
be 'broken(6)'."
REFERENCE "dot1dStpPortState is defined in RFC-1493."
::= { stpxInconsistencyEntry 3 }
stpxMstInconsistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMstInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table that contains a list of the bridge ports for which a
particular spanning tree instance has been found to have an
inconsistency. The agent creates a new entry in this table
whenever it detects a new inconsistency, and deletes entries
when the inconsistency is no longer present.
Two types of inconsistencies are discovered:
(1) the inconsistency when two different port types have been
plugged together.
(2) the inconsistency when different switches have different
PVIDs for the same link."
::= { stpxInconsistencyObjects 2 }
stpxMstInconsistencyEntry OBJECT-TYPE
SYNTAX StpxMstInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The instance of a particular port for which the spanning tree
inconsistency is currently in effect."
INDEX {
stpxMstInconsistencyIndex,
stpxMstInconsistencyPortIndex
}
::= { stpxMstInconsistencyTable 1 }
StpxMstInconsistencyEntry ::= SEQUENCE {
stpxMstInconsistencyIndex Integer32,
stpxMstInconsistencyPortIndex Integer32,
stpxMstInconsistencyState BITS
}
stpxMstInconsistencyIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree Instance ID, such as the MST instance."
::= { stpxMstInconsistencyEntry 1 }
stpxMstInconsistencyPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dotdBasePort (i.e. dot1dBridge.1.4) for the bridge
port."
::= { stpxMstInconsistencyEntry 2 }
stpxMstInconsistencyState OBJECT-TYPE
SYNTAX BITS {
typeInconsistent(0),
pvidInconsistent(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of inconsistency which has been discovered on
this port for this Spanning Tree.
When this object exists, the value of the corresponding
instance of the Bridge MIB's dot1dStpPortState object will
be 'broken(6)'."
REFERENCE "dot1dStpPortState is defined in RFC-1493."
::= { stpxMstInconsistencyEntry 3 }
-- BackboneFast capability
stpxBackboneFastEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the BackboneFast capability is
administratively enabled on the device."
::= { stpxBackboneFastObjects 1 }
stpxBackboneFastInInferiorBPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inferior BPDUs received by the switch
since the stpxBackboneFastOperEnabled has
become true(1). If the value of
stpxBackboneFastOperEnabled is false(2), then this
mib object will have a value of 0."
::= { stpxBackboneFastObjects 2 }
stpxBackboneFastInRLQRequestPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query request PDUs received by the
switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 3 }
stpxBackboneFastInRLQResponsePDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query response PDUs received by the
switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 4 }
stpxBackboneFastOutRLQRequestPDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query request PDUs transmitted by
the switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 5 }
stpxBackboneFastOutRLQResponsePDUs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of Root Link Query response PDUs transmitted by
the switch since the stpxBackboneFastOperEnabled has become
true(1). If the value of stpxBackboneFastOperEnabled is
false(2), then this mib object will have a value of 0."
::= { stpxBackboneFastObjects 6 }
stpxBackboneFastOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An indication of whether the BackboneFast capability is
operationally enabled on the device."
::= { stpxBackboneFastObjects 7 }
-- STP Root Guard Capability
stpxRootGuardConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRootGuardConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for which
Spanning Tree RootGuard capability can be configured."
::= { stpxRootGuardObjects 1 }
stpxRootGuardConfigEntry OBJECT-TYPE
SYNTAX StpxRootGuardConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A bridge port for which Spanning Tree RootGuard
capability can be configured."
INDEX { stpxRootGuardConfigPortIndex }
::= { stpxRootGuardConfigTable 1 }
StpxRootGuardConfigEntry ::= SEQUENCE {
stpxRootGuardConfigPortIndex Integer32,
stpxRootGuardConfigEnabled TruthValue
}
stpxRootGuardConfigPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxRootGuardConfigEntry 1 }
stpxRootGuardConfigEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the RootGuard capability is
enabled on this port or not. This configuration will be
applied to all Spanning Tree instances in which this port
exists."
DEFVAL { false }
::= { stpxRootGuardConfigEntry 2 }
stpxRootInconsistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRootInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for which
a particular Spanning Tree instance has been found
to have an root-inconsistency. The agent creates a new
entry in this table whenever it detects a new
root-inconsistency, and deletes entries
when/soon after the inconsistency is no longer present."
::= { stpxRootGuardObjects 2 }
stpxRootInconsistencyEntry OBJECT-TYPE
SYNTAX StpxRootInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Spanning Tree instance on a particular port for
which a Spanning Tree root-inconsistency is currently
in effect."
INDEX {
stpxRootInconsistencyIndex,
stpxRootInconsistencyPortIndex
}
::= { stpxRootInconsistencyTable 1 }
StpxRootInconsistencyEntry ::= SEQUENCE {
stpxRootInconsistencyIndex Integer32,
stpxRootInconsistencyPortIndex Integer32,
stpxRootInconsistencyState TruthValue
}
stpxRootInconsistencyIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree instance id, such as the VLAN id
of the VLAN if the object value of stpxSpanningTreeType
is pvstPlus(1) or rapidPvstPlus(5)."
::= { stpxRootInconsistencyEntry 1 }
stpxRootInconsistencyPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxRootInconsistencyEntry 2 }
stpxRootInconsistencyState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the port on a particular Spanning
Tree instance is currently in root-inconsistent
state or not."
::= { stpxRootInconsistencyEntry 3 }
-- stpxSpanningTreeObjects
stpxSpanningTreeType OBJECT-TYPE
SYNTAX INTEGER {
pvstPlus(1),
mistp(2),
mistpPvstPlus(3),
mst(4),
rapidPvstPlus(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The actual mode of spanning tree protocol runs
on the device. It can be one of the following:
pvstPlus -- PVST+ (Per VLAN Spanning Tree+ Protocol).
mistp -- MISTP (Multi Instance Spanning Tree Protocol).
mistpPvstPlus -- MISTP with the tunneling scheme
enabled for PVST+.
mst -- IEEE 802.1s Multiple Spanning Tree (MST)
with IEEE 802.1w Rapid Spanning Tree Protocol
(RSTP).
rapidPvstPlus -- IEEE 802.1w Rapid Spanning Tree
Protocol (RSTP) for all vlans in PVST+.
When the value of this MIB object gets changed, the
network connectivity would be affected and the
connectivity to this device would also be lost
temporarily."
DEFVAL { pvstPlus }
::= { stpxSpanningTreeObjects 1 }
stpxSpanningTreePathCostMode OBJECT-TYPE
SYNTAX INTEGER {
short(1), -- 16 bits spanning tree path
-- cost mode
long(2) -- 32 bits spanning tree path
-- cost mode
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the administrative spanning tree path cost mode
configured on device."
DEFVAL { short }
::= { stpxSpanningTreeObjects 2 }
stpxLongStpPortPathCostTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxLongStpPortPathCostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the spanning tree port path cost
configuration when stpxSpanningTreePathCostOperMode is
long(2).
If the value of stpxSpanningTreePathCostOperMode is
short(1), this table is not instantiated."
::= { stpxSpanningTreeObjects 3 }
stpxLongStpPortPathCostEntry OBJECT-TYPE
SYNTAX StpxLongStpPortPathCostEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing the spanning tree port path cost
configuration."
AUGMENTS { dot1dStpPortEntry }
::= { stpxLongStpPortPathCostTable 1 }
StpxLongStpPortPathCostEntry ::= SEQUENCE {
stpxLongStpPortPathCost Unsigned32
}
stpxLongStpPortPathCost OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The contribution of this port to the path cost (in 32
bits value) of paths towards the spanning tree root which
include this port.
This object is used to configure the spanning tree port
path cost in 32 bits value range when the
stpxSpanningTreePathCostOperMode is long(2).
If the stpxSpanningTreePathCostOperMode is short(1), this
MIB object is not instantiated."
::= { stpxLongStpPortPathCostEntry 1 }
stpxExtendedSysIDAdminEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether Extended System ID feature
is administratively enabled on the device or not."
REFERENCE "IEEE 802.1t."
::= { stpxSpanningTreeObjects 4 }
stpxExtendedSysIDOperEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether Extended System ID feature
is operationaly enabled on the device or not.
If the value of this object is true(1), then
the accepted values for dot1dStpPriority
in BRIDGE-MIB should be multiples of 4096 plus
bridge instance ID, such as VlanIndex. Changing
this object value might cause the values of
dot1dBaseBridgeAddress and dot1dStpPriority
in BRIDGE-MIB to be changed also."
REFERENCE "IEEE 802.1t."
::= { stpxSpanningTreeObjects 5 }
stpxNotificationEnable OBJECT-TYPE
SYNTAX BITS {
newRoot(0),
topologyChange(1),
inconsistency(2),
rootInconsistency(3),
loopInconsistency(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether a specified notification is enabled or not.
If a bit corresponding to a notification is set to 1, then
the specified notification can be generated.
newRoot -- the newRoot notification as defined in BRIDGE-MIB.
topologyChange -- the topologyChange notification as
defined in BRIDGE-MIB.
inconsistency -- the stpxInconsistencyUpdate notification.
rootInconsistency -- the stpxRootInconsistencyUpdate
notification.
loopInconsistency -- the stpxLoopInconsistencyUpdate
notification."
::= { stpxSpanningTreeObjects 6 }
stpxSpanningTreePathCostOperMode OBJECT-TYPE
SYNTAX INTEGER {
short(1), -- 16 bits spanning tree path
-- cost mode
long(2) -- 32 bits spanning tree path
-- cost mode
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicate the operational spanning tree path cost mode
on device. This mode applies to all instances of the Spanning
Tree protocol running on the device.
When the value of this MIB object gets changed, the path cost
of all ports will be reassigned to the default path cost
values based on the new spanning tree path cost mode and the
ports' speed.
When the value of this MIB object is long(2),
the stpxLongStpPortPathCost MIB object must be used in order
to retrieve/configure the spanning tree port path cost as a
32 bits value. The set operation on dot1dStpPortPathCost in
BRIDGE-MIB will be rejected. While retrieving the value of
dot1dStpPortPathCost, the maximum value of 65535 will be
returned if the value of stpxLongStpPortPathCost for the same
instance exceeds 65535.
When the value of this MIB object is short(1),
the dot1dStpPortPathCost in BRIDGE-MIB must be used."
::= { stpxSpanningTreeObjects 7 }
-- MISTP Objects
stpxMISTPInstanceNumber OBJECT-TYPE
SYNTAX Integer32 (1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of MISTP instances, that are supported by the device
when the value of stpxSpanningTreeType is either mistp(2)
or mistpPvstPlus(3)."
::= { stpxMISTPObjects 1 }
-- When stpxSpanningTreeType is modified from a value of 'pvstPlus' to
-- either 'mistp' or 'mistpPvstPlus', the agent will create a fixed
-- number (specified in stpxMISTPInstanceNumber) of MISTP instances in
-- this table. When stpxSpanningTreeType is changed to 'pvstPlus', the
-- agent will delete all the MISTP instances from this table and also
-- all the MIB objects associated with them.
stpxMISTPInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMISTPInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one entry for each instance of MISTP and
it contains stpxMISTPInstanceNumber entries, numbered from 1
to stpxMISTPInstanceNumber.
This table is only instantiated when the value of
stpxSpanningTreeType is mistp(2) or mistpPvstPlus(3)."
::= { stpxMISTPObjects 2 }
stpxMISTPInstanceEntry OBJECT-TYPE
SYNTAX StpxMISTPInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing the status of the MISTP
instance."
INDEX { stpxMISTPInstanceIndex }
::= { stpxMISTPInstanceTable 1 }
StpxMISTPInstanceEntry ::= SEQUENCE {
stpxMISTPInstanceIndex Integer32,
stpxMISTPInstanceEnable TruthValue,
stpxMISTPInstanceVlansMapped OCTET STRING,
stpxMISTPInstanceVlansMapped2k OCTET STRING,
stpxMISTPInstanceVlansMapped3k OCTET STRING,
stpxMISTPInstanceVlansMapped4k OCTET STRING
}
stpxMISTPInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (1..256)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary integer within the range from 1 to the value of
stpxMISTPInstanceNumber that uniquely identifies an instance."
::= { stpxMISTPInstanceEntry 1 }
stpxMISTPInstanceEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates whether the MISTP protocol is currently
enabled on the MISTP instance.
If this object is set to
'true' - the MISTP protocol will run on this instance.
'false' - the MISTP protocol will stop running on this
instance."
DEFVAL { true }
::= { stpxMISTPInstanceEntry 2 }
stpxMISTPInstanceVlansMapped 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
of 0 through 7; the second octet to VLANs 8 through
15; etc. The most significant bit of each octet
corresponds to the lowest value VlanIndex in that octet.
For each VLAN, if it is mapped to this MISTP instance,
then the bit corresponding to that VLAN is set to '1'."
::= { stpxMISTPInstanceEntry 3 }
stpxMISTPInstanceVlansMapped2k 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 of 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
of 1024 through 1031; the second octet to VLANs 1032
through 1039; etc. The most significant bit of each
octet corresponds to the lowest value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MISTP instance,
then the bit corresponding to that VLAN is set to '1'.
This object is only instantiated on devices with
support for VlanIndex up to 4095."
::= { stpxMISTPInstanceEntry 4 }
stpxMISTPInstanceVlansMapped3k 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 of 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 value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MISTP instance,
then the bit corresponding to that VLAN is set to '1'.
This object is only instantiated on devices with
support for VlanIndex up to 4095."
::= { stpxMISTPInstanceEntry 5 }
stpxMISTPInstanceVlansMapped4k 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 of 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
of 3072 through 3079; the second octet to VLANs 3080
through 3087; etc. The most significant bit of each
octet corresponds to the lowest value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MISTP instance,
then the bit corresponding to that VLAN is set to '1'.
This object is only instantiated on devices with
support for VlanIndex up to 4095."
::= { stpxMISTPInstanceEntry 6 }
stpxVlanMISTPInstMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxVlanMISTPInstMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the MISTP Instance Index of the VLANs for a
particular management domain.
This table is only instantiated when the value of
stpxSpanningTreeType is mistp(2) or mistpPvstPlus(3)."
::= { stpxMISTPObjects 3 }
stpxVlanMISTPInstMapEntry OBJECT-TYPE
SYNTAX StpxVlanMISTPInstMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing the MISTP Instance Index of the
VLAN for a particular management domain."
AUGMENTS { vtpVlanEntry }
::= { stpxVlanMISTPInstMapTable 1 }
StpxVlanMISTPInstMapEntry ::= SEQUENCE {
stpxVlanMISTPInstMapInstIndex Integer32
}
stpxVlanMISTPInstMapInstIndex OBJECT-TYPE
SYNTAX Integer32 (0..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MISTP instance, to which the corresponding vlan is mapped.
If this value of this mib object is 0, the corresponding vlan
is not configured to be mapped to any MISTP instance and all
the ports under this VLAN remain in blocking state."
::= { stpxVlanMISTPInstMapEntry 1 }
stpxVlanMISTPInstMapEditTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxVlanMISTPInstMapEditEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing the MISTP related information for the VLANs
in the Edit Buffers for a particular management domain.
This table is only instantiated when when the value of
stpxSpanningTreeType is mistp(2) or mistpPvstPlus(3)."
::= { stpxMISTPObjects 4 }
stpxVlanMISTPInstMapEditEntry OBJECT-TYPE
SYNTAX StpxVlanMISTPInstMapEditEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about one VLAN mapping to one instance
in the Edit Buffer for a particular management domain."
AUGMENTS { vtpVlanEditEntry }
::= { stpxVlanMISTPInstMapEditTable 1 }
StpxVlanMISTPInstMapEditEntry ::= SEQUENCE {
stpxVlanMISTPInstMapEditInstIndex Integer32
}
stpxVlanMISTPInstMapEditInstIndex OBJECT-TYPE
SYNTAX Integer32 (0..256)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The MISTP instance, to which the corresponding vlan would be
mapped. The value of this mib object is from 0 to the value of
stpxMISTPInstanceNumber. If setting the value of this object
to 0, the corresponding vlan will not be mapped to a MISTP
instance and all the ports under this VLAN will be moved into
the blocking state."
::= { stpxVlanMISTPInstMapEditEntry 1 }
stpxPreferredMISTPInstancesTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxPreferredMISTPInstancesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table containing indications of which MISTP instances
are preferred on which trunk ports. The preferred
MISTP instances on a trunk port have a lower Path Cost value
compared with the MISTP instances on the trunk not in the
preferred list.
This table is only instantiated when the value of
stpxSpanningTreeType is mistp(2) or mistpPvstPlus(3)."
::= { stpxMISTPObjects 5 }
stpxPreferredMISTPInstancesEntry OBJECT-TYPE
SYNTAX StpxPreferredMISTPInstancesEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry indicating which MISTP instances are preferred on
a specific trunk port."
AUGMENTS { vlanTrunkPortEntry }
::= { stpxPreferredMISTPInstancesTable 1 }
StpxPreferredMISTPInstancesEntry ::= SEQUENCE {
stpxPreferredMISTPInstancesMap OCTET STRING
}
stpxPreferredMISTPInstancesMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A string of octets containing one bit per MISTP instances
in the management domain on this trunk port. The first octet
corresponds to MISTP instances with InstIndex values of 1
through 8; the second octet to MISTP instances 9 through 16;
etc. The most significant bit of each octet corresponds to
the lowest value instanceIndex in that octet. The number of
bits for this mib object will be determined by the value of
stpxMISTPInstanceNumber.
For each instance, if it is preferred on this trunk port,
then the bit corresponding to that instance is set to '1'.
To avoid conflicts between overlapping partial updates by
multiple managers, i.e., updates which modify only a portion
of an instance of this object (e.g., enable/disable a single
instance on the trunk port), any SNMP Set operation
accessing an instance of this object should also write the
value of vlanTrunkPortSetSerialNo."
::= { stpxPreferredMISTPInstancesEntry 1 }
-- STP Loop Guard Capability
stpxLoopGuardConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxLoopGuardConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for which
Spanning Tree LoopGuard capability can be configured."
::= { stpxLoopGuardObjects 1 }
stpxLoopGuardConfigEntry OBJECT-TYPE
SYNTAX StpxLoopGuardConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A bridge port for which Spanning Tree LoopGuard
capability can be configured."
INDEX { stpxLoopGuardConfigPortIndex }
::= { stpxLoopGuardConfigTable 1 }
StpxLoopGuardConfigEntry ::= SEQUENCE {
stpxLoopGuardConfigPortIndex Integer32,
stpxLoopGuardConfigEnabled TruthValue,
stpxLoopGuardConfigMode INTEGER
}
stpxLoopGuardConfigPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxLoopGuardConfigEntry 1 }
stpxLoopGuardConfigEnabled OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"An indication of whether the LoopGuard capability is
enabled on this port or not. This configuration will be
applied to all the Spanning Tree instances in which this
port exists.
In order to support additional Loop Guard config mode
(default) as defined in stpxLoopGuardConfigMode other
than enable (true(1)) or disable (false(2)) as defined
in this object, stpxLoopGuardConfigMode object needs to
be used.
When the stpxLoopGuardConfigMode object has the value of
enable(1), the value of stpxLoopGuardConfigEnabled for
the same instance will be true(1). When the
stpxLoopGuardConfigMode object has the value of disable(2),
the value of stpxLoopGuardConfigEnabled for the same
instance will be false(2). When the stpxLoopGuardConfigMode
object has the value of default(3), the value of
stpxLoopGuardConfigEnabled for the same instance will
depend on the object value of
stpxLoopGuardGlobalDefaultMode."
DEFVAL { false }
::= { stpxLoopGuardConfigEntry 2 }
stpxLoopGuardConfigMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
default(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the mode of Loop Guard Feature on this
port. This configuration will be applied to all
the Spanning Tree instances in which this port
exists.
enable -- the Loop Guard feature is enabled on this
port.
disable -- the Loop Guard feature is disabled on this
port.
default -- whether the Loop Guard feature is enabled
or not on this port depends on the object
value of stpxLoopGuardGlobalDefaultMode."
::= { stpxLoopGuardConfigEntry 3 }
stpxLoopInconsistencyTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxLoopInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for which
a particular Spanning Tree instance has been found
to have a loop-inconsistency. The agent creates a new
entry in this table whenever it detects a new
loop-inconsistency, and deletes entries
when/soon after the inconsistency is no longer present."
::= { stpxLoopGuardObjects 2 }
stpxLoopInconsistencyEntry OBJECT-TYPE
SYNTAX StpxLoopInconsistencyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Spanning Tree instance on a particular port for
which a Spanning Tree loop-inconsistency is currently
in effect."
INDEX {
stpxLoopInconsistencyIndex,
stpxLoopInconsistencyPortIndex
}
::= { stpxLoopInconsistencyTable 1 }
StpxLoopInconsistencyEntry ::= SEQUENCE {
stpxLoopInconsistencyIndex Integer32,
stpxLoopInconsistencyPortIndex Integer32,
stpxLoopInconsistencyState TruthValue
}
stpxLoopInconsistencyIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree instance id, such as the VLAN id
of the VLAN if the object value of stpxSpanningTreeType
is pvstPlus(1) or rapidPvstPlus(5)."
::= { stpxLoopInconsistencyEntry 1 }
stpxLoopInconsistencyPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxLoopInconsistencyEntry 2 }
stpxLoopInconsistencyState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether the port on a particular Spanning
Tree instance is currently in loop-inconsistent
state or not."
::= { stpxLoopInconsistencyEntry 3 }
stpxLoopGuardGlobalDefaultMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the global default config mode of LoopGuard
feature on the device."
::= { stpxLoopGuardObjects 3 }
-- Spanning Tree Port Fast Start Objects
stpxFastStartBpduGuardEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the global default mode of the Bpdu
Guard feature on the device.
On platforms that does not support per port
Bpdu Guard configuration as indicated by
the object stpxFastStartPortBpduGuardMode,
if the value of this object is set to true(1),
and the Fast Start Feature is operationally
enabled on a port, then that port will be
immediately disabled when the system receives
a BPDU from that port."
DEFVAL { false }
::= { stpxFastStartObjects 1 }
stpxFastStartBpduFilterEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the global default mode of the Bpdu
Filter feature on the device.
On platforms that does not support per port
Bpdu Filter configuration as indicated by
the object stpxFastStartPortBpduFilterMode,
if the value of this object is set to true(1),
and the Fast Start Feature is operationally
enabled on a port, then no BPDUs will be
transmitted on this port."
DEFVAL { false }
::= { stpxFastStartObjects 2 }
stpxFastStartPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxFastStartPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for
which Spanning Tree Port Fast Start can be
configured."
::= { stpxFastStartObjects 3 }
stpxFastStartPortEntry OBJECT-TYPE
SYNTAX StpxFastStartPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A bridge port for which Spanning Tree Port Fast
Start can be configured."
INDEX { stpxFastStartPortIndex }
::= { stpxFastStartPortTable 1 }
StpxFastStartPortEntry ::= SEQUENCE {
stpxFastStartPortIndex Integer32,
stpxFastStartPortEnable TruthValue,
stpxFastStartPortMode INTEGER,
stpxFastStartPortBpduGuardMode INTEGER,
stpxFastStartPortBpduFilterMode INTEGER
}
stpxFastStartPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxFastStartPortEntry 1 }
stpxFastStartPortEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Indicates whether the port is operating in spantree
fast start mode. A port with fast start enabled is
immediately put in spanning tree forwarding state when
that port is detected by the Spanning Tree, rather
than starting in blocking state which is the normal
operation.
In order to support additional Fast Start enable mode
(enableForTrunk and default) as defined in
stpxFastStartPortMode other than enable (true(1))
or disable (false(2)) as defined in this object,
stpxFastStartPortMode object needs to be used.
When the stpxFastStartPortMode has the value of
enable(1) or enableForTrunk(3), the value of
stpxFastStartPortEnable for the same instance
will be true(1). When the stpxFastStartPortMode
has the value of disable(2), the value of
stpxFastStartPortEnable for the same instance will be
false(2). When the stpxFastStartPortMode has the value
of default(4), the value of stpxFastStartPortEnable for
the same instance depends on the object value of
stpxFastStartGlobalDefaultMode."
DEFVAL { false }
::= { stpxFastStartPortEntry 2 }
stpxFastStartPortMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
enableForTrunk(3),
default(4),
network(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the mode of Fast Start Feature on the
port. A port with fast start enabled is immediately
put in spanning tree forwarding state when the port
is detected by the Spanning Tree, rather than
starting in blocking state which is the normal
operation.
enable -- the fast start feature is enabled on this
port but will only take effect when the
object value of its
vlanTrunkPortDynamicStatus as specified
in CISCO-VTP-MIB is notTrunking(2).
disable -- the fast start feature is disabled on this
port.
enableForTrunk -- the fast start feature is enabled
on this port and will take effect
regardless of the object value of
its vlanTrunkPortDynamicStatus.
default -- whether the fast start feature is enabled
or not on this port depends on the object
value of stpxFastStartGlobalDefaultMode.
network -- the network mode is enabled on this
port."
::= { stpxFastStartPortEntry 3 }
stpxFastStartPortBpduGuardMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
default(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the mode of Bpdu Guard Feature on the
port. A port with Bpdu Guard enabled is
immediately disabled when the system
receives a BPDU from that port.
enable -- the Bpdu Guard feature is enabled on this
port.
disable -- the Bpdu Guard feature is disabled on this
port.
default -- whether the Bpdu Guard feature is enabled
or not on this port depends on the object
value of stpxFastStartBpduGuardEnable. If
the value of stpxFastStartBpduGuardEnable
is true(1) and Fast Start feature is also
enabled operationally on this port, then
this port is immediately disabled when
the system receives a BPDU from this port."
DEFVAL { default }
::= { stpxFastStartPortEntry 4 }
stpxFastStartPortBpduFilterMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
default(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the mode of Bpdu Filter Feature on the
port. The system will not transmit BPDUs on a port
with Bpdu Filter feature enabled.
enable -- the Bpdu Filter feature is enabled on this
port.
disable -- the Bpdu Filter feature is disabled on this
port.
default -- whether the Bpdu Filter feature is enabled
or not on this port depends on the object
value of stpxFastStartBpduFilterEnable. If
the value of stpxFastStartBpduFilterEnable
is true(1) and Fast Start feature is also
enabled operationally on this port, then
no BPDUs will be transmitted on this port."
DEFVAL { default }
::= { stpxFastStartPortEntry 5 }
stpxFastStartGlobalDefaultMode OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2),
network(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the global default mode of the Fast
Start feature on the device.
enable -- the fast start feature is enabled and
the default port mode is edge mode.
disable -- the fast start feature is disabled.
network -- the default port mode is network mode."
DEFVAL { disable }
::= { stpxFastStartObjects 4 }
stpxFastStartOperModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxFastStartOperModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports
for a particular Spanning Tree Instance."
::= { stpxFastStartObjects 5 }
stpxFastStartOperModeEntry OBJECT-TYPE
SYNTAX StpxFastStartOperModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry with port fast start oper mode
information on a bridge port for a particular
Spanning Tree Instance."
INDEX {
stpxFastStartOperModeInstIndex,
stpxFastStartOperModePortIndex
}
::= { stpxFastStartOperModeTable 1 }
StpxFastStartOperModeEntry ::= SEQUENCE {
stpxFastStartOperModeInstIndex Integer32,
stpxFastStartOperModePortIndex Integer32,
stpxFastStartOperMode INTEGER
}
stpxFastStartOperModeInstIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree instance id, such as the VLAN id
of the VLAN if the object value of stpxSpanningTreeType
is pvstPlus(1)."
::= { stpxFastStartOperModeEntry 1 }
stpxFastStartOperModePortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxFastStartOperModeEntry 2 }
stpxFastStartOperMode OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2),
network(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the fast start operational status of the
port on a particular Spanning Tree Instance.
enable -- the fast start feature is operationally
enabled on this port and the port is in
edge mode.
disable -- the fast start feature is operationally
disabled on this port.
network -- the port is in network mode."
::= { stpxFastStartOperModeEntry 3 }
-- BPDU Skewing Feature
stpxBpduSkewingDetectionEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether BPDU skewing detection feature
is enabled or not on the system. If this object has
the value of true(1), then the system will detect
whether BPDUs received by any port on any Spanning
Tree instance are processed at an interval longer
than the object value of dot1dStpHelloTime in the
BIRDGE-MIB of the Spanning Tree instance."
DEFVAL { false }
::= { stpxBpduSkewingObjects 1 }
stpxBpduSkewingTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxBpduSkewingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for
which a particular Spanning Tree instance has been
detected to have BPDU skewing occurred since the
object value of stpxBpduSkewingDetectionEnable was
last changed to true(1).
The agent creates a new entry in this table whenever
a port in a particular Spanning Tree instance is
detected to be BPDU skewed since the object value of
stpxBpduSkewingDetectionEnable object is changed to
true(1). The agent deletes all the entries in this
table when the object value of
stpxBpduSkewingDetectionEnable is changed to false(2)
or the object value of stpxSpanningTreeType is
changed."
::= { stpxBpduSkewingObjects 2 }
stpxBpduSkewingEntry OBJECT-TYPE
SYNTAX StpxBpduSkewingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A Spanning Tree instance on a particular port for
which BPDU skewing has been detected."
INDEX {
stpxBpduSkewingInstanceIndex,
stpxBpduSkewingPortIndex
}
::= { stpxBpduSkewingTable 1 }
StpxBpduSkewingEntry ::= SEQUENCE {
stpxBpduSkewingInstanceIndex Integer32,
stpxBpduSkewingPortIndex Integer32,
stpxBpduSkewingLastSkewDuration Unsigned32,
stpxBpduSkewingWorstSkewDuration Unsigned32,
stpxBpduSkewingWorstSkewTime TimeStamp
}
stpxBpduSkewingInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree instance id, such as the VLAN id
of the VLAN if the object value of stpxSpanningTreeType
is pvstPlus(1)."
::= { stpxBpduSkewingEntry 1 }
stpxBpduSkewingPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxBpduSkewingEntry 2 }
stpxBpduSkewingLastSkewDuration OBJECT-TYPE
SYNTAX Unsigned32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the skew duration in milliseconds of the
last BPDU skewing detected."
::= { stpxBpduSkewingEntry 3 }
stpxBpduSkewingWorstSkewDuration OBJECT-TYPE
SYNTAX Unsigned32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the skew duration in milliseconds of the
worst BPDU skewing detected."
::= { stpxBpduSkewingEntry 4 }
stpxBpduSkewingWorstSkewTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the value of sysUpTime when the worst
BPDU skewing was detected."
::= { stpxBpduSkewingEntry 5 }
-- Multiple Spanning Tree Objects
stpxMSTMaxInstanceNumber OBJECT-TYPE
SYNTAX Integer32 (1..256)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The maximum MST (Multiple Spanning Tree) instance id,
that can be supported by the device for Cisco proprietary
implementation of the MST Protocol.
This object is deprecated and replaced by
stpxSMSTMaxInstanceID."
::= { stpxMSTObjects 1 }
stpxMSTRegionName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational MST region name."
::= { stpxMSTObjects 2 }
stpxMSTRegionRevision OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The operational MST region version.
This object is deprecated and replaced by
stpxSMSTRegionRevision."
::= { stpxMSTObjects 3 }
stpxMSTInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMSTInstanceEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table contains MST instance information with
one entry for an MST instance within the range of
0 to the object value of stpxMSTMaxInstanceNumber.
This table is deprecated and replaced by
stpxSMSTInstanceTable."
::= { stpxMSTObjects 4 }
stpxMSTInstanceEntry OBJECT-TYPE
SYNTAX StpxMSTInstanceEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A conceptual row containing the MST instance
information."
INDEX { stpxMSTInstanceIndex }
::= { stpxMSTInstanceTable 1 }
StpxMSTInstanceEntry ::= SEQUENCE {
stpxMSTInstanceIndex Integer32,
stpxMSTInstanceVlansMapped OCTET STRING,
stpxMSTInstanceVlansMapped2k OCTET STRING,
stpxMSTInstanceVlansMapped3k OCTET STRING,
stpxMSTInstanceVlansMapped4k OCTET STRING,
stpxMSTInstanceRemainingHopCount Integer32
}
stpxMSTInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (0..256)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An integer that uniquely identifies an MST instance
within the range of 0 to the object value of
stpxMSTMaxInstanceNumber.
This object is deprecated and replaced by
stpxSMSTInstanceIndex."
::= { stpxMSTInstanceEntry 1 }
stpxMSTInstanceVlansMapped OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
of 0 through 7; the second octet to VLANs 8 through
15; etc. The most significant bit of each octet
corresponds to the lowest value VlanIndex in that octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to '1'.
This object is deprecated and replaced by
stpxSMSTInstanceVlansMapped1k2k."
::= { stpxMSTInstanceEntry 2 }
stpxMSTInstanceVlansMapped2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
of 1024 through 1031; the second octet to VLANs 1032
through 1039; etc. The most significant bit of each
octet corresponds to the lowest value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to '1'.
This object is deprecated and replaced by
stpxSMSTInstanceVlansMapped1k2k."
::= { stpxMSTInstanceEntry 3 }
stpxMSTInstanceVlansMapped3k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 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 value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to '1'.
This object is deprecated and replaced by
stpxSMSTInstanceVlansMapped3k4k."
::= { stpxMSTInstanceEntry 4 }
stpxMSTInstanceVlansMapped4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
of 3072 through 3079; the second octet to VLANs 3080
through 3087; etc. The most significant bit of each
octet corresponds to the lowest value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to '1'.
This object is deprecated and replaced by
stpxSMSTInstanceVlansMapped3k4k."
::= { stpxMSTInstanceEntry 5 }
stpxMSTInstanceRemainingHopCount OBJECT-TYPE
SYNTAX Integer32 (0..40)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The remaining hop count for this MST instance.
This object will take on value of 40 if the object value
of stpxSMSTInstanceRemainingHopCount is greater than 40.
This object is only instantiated when the object value of
stpxSpanningTreeType is mst(4).
This object is deprecated and replaced by
stpxSMSTInstanceRemainingHopCount."
::= { stpxMSTInstanceEntry 6 }
stpxMSTRegionEditBufferStatus OBJECT-TYPE
SYNTAX INTEGER {
released(1),
acquiredBySnmp(2),
acquiredByNonSnmp(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current ownership status of the unique
Region Config Edit Buffer.
released -- the Edit Buffer can be acquired by any of
the SNMP management stations.
acquiredBySnmp -- the Edit Buffer is acquired by
any of the SNMP management stations.
acquiredByNonSnmp -- the Edit Buffer is acquired by the
non-SNMP users managing the device."
::= { stpxMSTObjects 5 }
stpxMSTRegionEditBufferOperation OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- read-only
acquire(2),
releaseWithForce(3),
commit(4),
rollBack(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the operation that is performed on the Region
Config Edit Buffer.
other -- none of the following operations.
acquire -- acquire the Edit Buffer. This operation can
only be performed when the object
stpxMSTRegionEditBufferStatus has the value of
released(1). After the successful operation of
this action, the stpxMSTRegionEditBufferStatus
will be changed to acquiredBySnmp(2).
releaseWithForce -- release the Edit Buffer acquired by
non-SNMP users with force and discard the changes
in the Edit Buffer. This operation can only be
performed when the object
stpxMSTRegionEditBufferStatus has the value of
acquiredByNonSnmp(2).
commit -- commit the changes in the Edit Buffer
and release the Edit Buffer. The successful
operation of this action will make the changes
in the Edit Buffer effective on the device.
This operation can only be performed when the
object stpxMSTRegionEditBufferStatus has the
value of acquiredBySnmp(3).
rollBack -- discard the changes in the Edit Buffer
and release the Edit Buffer. This operation can
only be performed when the object
stpxMSTRegionEditBufferStatus has the value
of acquiredBySnmp(3).
This object always returns other(1) when it is read."
::= { stpxMSTObjects 6 }
stpxMSTRegionEditName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MST region name in the Edit Buffer.
This object is only instantiated when the
stpxMSTRegionEditBufferStatus has the value of
acquiredBySnmp(2)."
::= { stpxMSTObjects 7 }
stpxMSTRegionEditRevision OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The MST region version in the Edit Buffer. This object is
only instantiated when the stpxMSTRegionEditBufferStatus
has the value of acquiredBySnmp(2).
This object is deprecated and replaced by
stpxSMSTRegionEditRevision."
::= { stpxMSTObjects 8 }
stpxMSTInstanceEditTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMSTInstanceEditEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"This table contains MST instance information in the
Edit Buffer with one entry for each MST
instance numbered from 0 to stpxMSTMaxInstanceNumber.
This table is only instantiated when the
stpxMSTRegionEditBufferStatus has the value of
acquiredBySnmp(2).
This table is deprecated and replaced by
stpxSMSTInstanceEditTable."
::= { stpxMSTObjects 9 }
stpxMSTInstanceEditEntry OBJECT-TYPE
SYNTAX StpxMSTInstanceEditEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A conceptual row containing MST instance information
in the Edit Buffer."
INDEX { stpxMSTInstanceEditIndex }
::= { stpxMSTInstanceEditTable 1 }
StpxMSTInstanceEditEntry ::= SEQUENCE {
stpxMSTInstanceEditIndex Integer32,
stpxMSTInstanceEditVlansMap OCTET STRING,
stpxMSTInstanceEditVlansMap2k OCTET STRING,
stpxMSTInstanceEditVlansMap3k OCTET STRING,
stpxMSTInstanceEditVlansMap4k OCTET STRING
}
stpxMSTInstanceEditIndex OBJECT-TYPE
SYNTAX Integer32 (0..256)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An integer that uniquely identifies an MST instance
from 0 to the object value of stpxMSTMaxInstanceNumber.
The instances of this table entry with
stpxMSTInstanceEditIndex of zero can not be
modified.
This object is deprecated and replaced by
stpxSMSTInstanceEditIndex."
::= { stpxMSTInstanceEditEntry 1 }
stpxMSTInstanceEditVlansMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
of 0 through 7; the second octet to VLANs 8 through
15; etc. The most significant bit of each octet
corresponds to the lowest value VlanIndex in that octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to
'1'. Each VLAN can only be mapped to one unique MST
instance in the range from 1 to stpxMSTMaxInstanceNumber.
If the bit corresponding to a VLAN is changed from '1'
to '0', then that VLAN will be automatically mapped to
MST instance 0 by the device.
This object is deprecated and replaced by
stpxSMSTInstanceEditVlansMap1k2k."
::= { stpxMSTInstanceEditEntry 2 }
stpxMSTInstanceEditVlansMap2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
of 1024 through 1031; the second octet to VLANs 1032
through 1039; etc. The most significant bit of each
octet corresponds to the lowest value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to
'1'. Each VLAN can only be mapped to one unique MST
instance in the range from 1 to stpxMSTMaxInstanceNumber.
If the bit corresponding to a VLAN is changed from '1'
to '0', then that VLAN will be automatically mapped to
MST instance 0 by the device.
This object is deprecated and replaced by
stpxSMSTInstanceEditVlansMap1k2k."
::= { stpxMSTInstanceEditEntry 3 }
stpxMSTInstanceEditVlansMap3k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 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 value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to
'1'. Each VLAN can only be mapped to one unique MST
instance in the range from 1 to stpxMSTMaxInstanceNumber.
If the bit corresponding to a VLAN is changed from '1'
to '0', then that VLAN will be automatically mapped to
MST instance 0 by the device.
This object is deprecated and replaced by
stpxSMSTInstanceEditVlansMap3k4k."
::= { stpxMSTInstanceEditEntry 4 }
stpxMSTInstanceEditVlansMap4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
of 3072 through 3079; the second octet to VLANs 3080
through 3087; etc. The most significant bit of each
octet corresponds to the lowest value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to
'1'. Each VLAN can only be mapped to one unique MST
instance in the range from 1 to stpxMSTMaxInstanceNumber.
If the bit corresponding to a VLAN is changed from '1'
to '0', then that VLAN will be automatically mapped to
MST instance 0 by the device.
This object is deprecated and replaced by
stpxSMSTInstanceEditVlansMap3k4k."
::= { stpxMSTInstanceEditEntry 5 }
stpxPreferredMSTInstancesTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxPreferredMSTInstancesEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The table containing indications of which MST instances
are preferred on which trunk ports. The preferred
MST instances on a trunk port have a lower Path Cost value
compared with the MST instances on the trunk not in the
preferred list."
::= { stpxMSTObjects 10 }
stpxPreferredMSTInstancesEntry OBJECT-TYPE
SYNTAX StpxPreferredMSTInstancesEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry indicating which MST instances are preferred on
a specific trunk port."
AUGMENTS { vlanTrunkPortEntry }
::= { stpxPreferredMSTInstancesTable 1 }
StpxPreferredMSTInstancesEntry ::= SEQUENCE {
stpxPreferredMSTInstancesMap OCTET STRING
}
stpxPreferredMSTInstancesMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"A string of octets containing one bit per MST instances
on this trunk port. The first octet corresponds to MST
instances of 0 through 7; the second octet to MST instances
8 through 15; etc. The most significant bit of each octet
corresponds to the lowest MST instance value in that octet.
The number of bits for this mib object will be determined
by the value of stpxMSTMaxInstanceNumber.
For each instance, if it is preferred on this trunk port,
then the bit corresponding to that instance is set to '1'."
::= { stpxPreferredMSTInstancesEntry 1 }
stpxMSTPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMSTPortEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A table containing port information for the MST
Protocol on all the bridge ports existing on the
system."
::= { stpxMSTObjects 11 }
stpxMSTPortEntry OBJECT-TYPE
SYNTAX StpxMSTPortEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry with port information for the MST Protocol
on a bridge port."
INDEX { stpxMSTPortIndex }
::= { stpxMSTPortTable 1 }
StpxMSTPortEntry ::= SEQUENCE {
stpxMSTPortIndex Integer32,
stpxMSTPortAdminLinkType INTEGER,
stpxMSTPortOperLinkType INTEGER,
stpxMSTPortProtocolMigration TruthValue,
stpxMSTPortStatus BITS
}
stpxMSTPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxMSTPortEntry 1 }
stpxMSTPortAdminLinkType OBJECT-TYPE
SYNTAX INTEGER {
pointToPoint(1),
shared(2),
auto(3)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Indicates the administrative link type configuration of
a bridge port for the MST protocol.
pointToPoint -- the port is administratively configured to
be connected to a point-to-point link.
shared -- the port is administratively configured to be
connected to a shared medium.
auto -- the administrative configuration of the port's
link type depends on link duplex of the port.
If the port link is full-duplex, the administrative
link type configuration on this port will be taken
as pointTopoint(1). If the port link is half-duplex,
the administrative link type configuration on this
port will be taken as shared(2).
This configuration of this object only takes effect when the
stpxSpanningTreeType is mst(4) or rapidPvstPlus(5).
stpxMSTPortAdminLinkType is deprecated and replaced
with stpxRSTPPortAdminLinkType."
DEFVAL { auto }
::= { stpxMSTPortEntry 2 }
stpxMSTPortOperLinkType OBJECT-TYPE
SYNTAX INTEGER {
pointToPoint(1),
shared(2),
other(3)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Indicates the operational link type of a bridge port
for the MST protocol.
pointToPoint -- the port is operationally connected to
a point-to-point link.
shared -- the port is operationally connected to
a shared medium.
other -- none of the above.
This object is only instantiated when the object value of
stpxSpanningTreeType is mst(4). stpxMSTPortOperLinkType
is deprecated and replaced with stpxRSTPPortOperLinkType."
::= { stpxMSTPortEntry 3 }
stpxMSTPortProtocolMigration OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The protocol migration control on this port. When the
object value of stpxSpanningTreeType is mst(4) or
rapidPvstPlus(5), setting true(1) to this object forces
the device to try using version 2 BPDUs on this port.
When the object value of stpxSpanningTreeType is neither
mst(4) nor rapidPvstPlus(5), setting true(1) to this
object has no effect. Setting false(2) to this object has
no effect. This object always returns false(2) when read.
stpxMSTPortProtocolMigration is deprecated and
replaced with stpxRSTPPortProtocolMigration."
REFERENCE "IEEE 802.1w clause 14.8.2.4, 17.26."
::= { stpxMSTPortEntry 4 }
stpxMSTPortStatus OBJECT-TYPE
SYNTAX BITS {
edge(0),
boundary(1),
pvst(2),
stp(3)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Indicates the operational status of the port for the
MST protocol.
edge -- this port is an edge port for the MST region.
boundary -- this port is a boundary port for the
MST region.
pvst -- this port is connected to a PVST/PVST+ bridge.
stp -- this port is connected to a Single Spanning
Tree bridge.
This object is only instantiated when the object value
of stpxSpanningTreeType is mst(4).
This object is deprecated and replaced by
stpxSMSTPortStatus."
::= { stpxMSTPortEntry 5 }
stpxMSTPortRoleTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxMSTPortRoleEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A table containing a list of the bridge ports for a
particular MST instance. This table is only instantiated
when the stpxSpanningTreeType is mst(4).
This table is deprecated and replaced with
stpxRSTPPortRoleTable."
::= { stpxMSTObjects 12 }
stpxMSTPortRoleEntry OBJECT-TYPE
SYNTAX StpxMSTPortRoleEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An entry containing the port role information for the MST
protocol on a port for a particular MST instance existing
on the system."
INDEX {
stpxMSTPortRoleInstanceIndex,
stpxMSTPortRolePortIndex
}
::= { stpxMSTPortRoleTable 1 }
StpxMSTPortRoleEntry ::= SEQUENCE {
stpxMSTPortRoleInstanceIndex Integer32,
stpxMSTPortRolePortIndex Integer32,
stpxMSTPortRoleValue INTEGER
}
stpxMSTPortRoleInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (0..256)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The MST instance id within the range of 0 to
stpxMSTMaxInstanceNumber."
::= { stpxMSTPortRoleEntry 1 }
stpxMSTPortRolePortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxMSTPortRoleEntry 2 }
stpxMSTPortRoleValue OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
root(2),
designated(3),
alternate(4),
backUp(5),
boundary(6),
master(7)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Indicates the port role on a particular MST instance
for the MST protocol.
disabled -- this port has no role on this MST instance.
root -- this port has the role of root port on this MST
instance.
designated -- this port has the role of designated
port on this MST instance.
alternate -- this port has the role of alternate port
on this MST instance.
backUp -- this port has the role of backup port on this
MST instance.
boundary -- this port has the role of boundary port on
this MST instance.
master -- this port has the role of master port on
this MST instance."
::= { stpxMSTPortRoleEntry 3 }
stpxMSTMaxHopCount OBJECT-TYPE
SYNTAX Integer32 (1..40)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The maximum number of hops for the MST region.
This object will take on value of 40 if the object value
of stpxSMSTMaxHopCount is greater than 40.
This object is deprecated and replaced by
stpxSMSTMaxHopCount."
DEFVAL { 20 }
::= { stpxMSTObjects 13 }
-- Rapid Spanning Tree Protocol Objects
stpxRSTPPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRSTPPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing port information for the RSTP
Protocol on all the bridge ports existing in the
system."
::= { stpxRSTPObjects 1 }
stpxRSTPPortEntry OBJECT-TYPE
SYNTAX StpxRSTPPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry with port information for the RSTP Protocol
on a bridge port."
INDEX { stpxRSTPPortIndex }
::= { stpxRSTPPortTable 1 }
StpxRSTPPortEntry ::= SEQUENCE {
stpxRSTPPortIndex Integer32,
stpxRSTPPortAdminLinkType INTEGER,
stpxRSTPPortOperLinkType INTEGER,
stpxRSTPPortProtocolMigration TruthValue
}
stpxRSTPPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxRSTPPortEntry 1 }
stpxRSTPPortAdminLinkType OBJECT-TYPE
SYNTAX INTEGER {
pointToPoint(1),
shared(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the administrative link type configuration of
a bridge port for the RSTP protocol.
pointToPoint -- the port is administratively configured to
be connected to a point-to-point link.
shared -- the port is administratively configured to be
connected to a shared medium.
auto -- the administrative configuration of the port's
link type depends on link duplex of the port.
If the port link is full-duplex, the administrative
link type configuration on this port will be taken
as pointTopoint(1). If the port link is half-duplex,
the administrative link type configuration on this
port will be taken as shared(2).
This configuration of this object only takes effect when the
stpxSpanningTreeType is mst(4) or rapidPvstPlus(5)."
DEFVAL { auto }
::= { stpxRSTPPortEntry 2 }
stpxRSTPPortOperLinkType OBJECT-TYPE
SYNTAX INTEGER {
pointToPoint(1),
shared(2),
other(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the operational link type of a bridge port
for the RSTP protocol.
pointToPoint -- the port is operationally connected to
a point-to-point link.
shared -- the port is operationally connected to
a shared medium.
other -- none of the above.
This object is only instantiated when the object value of
stpxSpanningTreeType is mst(4) or rapidPvstPlus(5)."
::= { stpxRSTPPortEntry 3 }
stpxRSTPPortProtocolMigration OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The protocol migration control on this port. When the
object value of stpxSpanningTreeType is mst(4) or
rapidPvstPlus(5), setting true(1) to this object forces
the device to try using version 2 BPDUs on this port.
When the object value of stpxSpanningTreeType is neither
mst(4) nor rapidPvstPlus(5), setting true(1) to
this object has no effect. Setting false(2) to this
object has no effect. This object always returns
false(2) when read."
REFERENCE "IEEE 802.1w clause 14.8.2.4, 17.26."
::= { stpxRSTPPortEntry 4 }
stpxRSTPPortRoleTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRSTPPortRoleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports for a
particular Spanning Tree instance. This table is
only instantiated when the stpxSpanningTreeType is mst(4)
or rapidPvstPlus(5)."
::= { stpxRSTPObjects 2 }
stpxRSTPPortRoleEntry OBJECT-TYPE
SYNTAX StpxRSTPPortRoleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing the port role information for the RSTP
protocol on a port for a particular Spanning Tree instance."
INDEX {
stpxRSTPPortRoleInstanceIndex,
stpxRSTPPortRolePortIndex
}
::= { stpxRSTPPortRoleTable 1 }
StpxRSTPPortRoleEntry ::= SEQUENCE {
stpxRSTPPortRoleInstanceIndex Integer32,
stpxRSTPPortRolePortIndex Integer32,
stpxRSTPPortRoleValue INTEGER
}
stpxRSTPPortRoleInstanceIndex OBJECT-TYPE
SYNTAX Integer32 (0..4095)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Spanning Tree instance id, it can either be a
VLAN number if the stpxSpanningTreeType is rapidPvstPlus(5)
or an MST instance id if the stpxSpanningTreeType is mst(4)."
::= { stpxRSTPPortRoleEntry 1 }
stpxRSTPPortRolePortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxRSTPPortRoleEntry 2 }
stpxRSTPPortRoleValue OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
root(2),
designated(3),
alternate(4),
backUp(5),
boundary(6),
master(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the port role on a particular Spanning Tree
instance for the RSTP protocol.
disabled -- this port has no role in this Spanning
Tree instance.
root -- this port has the role of root port in this
Spanning Tree instance.
designated -- this port has the role of designated
port in this Spanning Tree instance.
alternate -- this port has the role of alternate port
in this Spanning Tree instance.
backUp -- this port has the role of backup port in this
Spanning Tree instance.
boundary -- this port has the role of boundary port in
this Spanning Tree instance.
master -- this port has the role of master port in
this Spanning Tree instance.
This object could have a value of 'boundary' or 'master'
only when the object value of stpxSpanningTreeType is mst(4)."
::= { stpxRSTPPortRoleEntry 3 }
stpxRSTPTransmitHoldCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Transmit Hold Count."
::= { stpxRSTPObjects 3 }
-- Rapid PVST+ Objects
stpxRPVSTPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxRPVSTPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing a list of the bridge ports
for a particular Spanning Tree Instance.
This table is only instantiated when the object value
of stpxSpanningTreeType is rapidPvstPlus(5)."
::= { stpxRPVSTObjects 1 }
stpxRPVSTPortEntry OBJECT-TYPE
SYNTAX StpxRPVSTPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry with port status information on a
bridge port for a particular Spanning Tree
Instance."
INDEX {
stpxRPVSTPortVlanIndex,
stpxRPVSTPortIndex
}
::= { stpxRPVSTPortTable 1 }
StpxRPVSTPortEntry ::= SEQUENCE {
stpxRPVSTPortVlanIndex VlanIndex,
stpxRPVSTPortIndex Integer32,
stpxRPVSTPortStatus BITS
}
stpxRPVSTPortVlanIndex OBJECT-TYPE
SYNTAX VlanIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN id of the VLAN."
::= { stpxRPVSTPortEntry 1 }
stpxRPVSTPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxRPVSTPortEntry 2 }
stpxRPVSTPortStatus OBJECT-TYPE
SYNTAX BITS {
edge(0),
unused1(1),
unused2(2),
stp(3),
dispute(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the operational status of the port for the
Rapid PVST+ protocol.
edge -- this port is an edge port for the RST region.
unused1 -- unused bit 1.
unused2 -- unused bit 2.
stp -- this port is connected to a Single Spanning
Tree/PVST+ bridge.
dispute -- this port, as a designated port, received an
inferior BPDU with a designated role and the
learning bit being set."
::= { stpxRPVSTPortEntry 3 }
-- Standard Multiple Spanning Tree Objects.
-- This group of objects is for the management
-- of IEEE Multiple Spanning Tree, i.e., Standard MST
-- (SMST). Objects in this group replace some of the
-- objects in stpxMSTObjects which are for the the
-- managment of the Cisco proprietary implementation
-- of the Multiple Spanning Tree (MST).
stpxSMSTMaxInstances OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of MST instances that can be
supported by the device for IEEE MST."
::= { stpxSMSTObjects 1 }
stpxSMSTMaxInstanceID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum MST instance ID that can be supported
by the device for IEEE MST."
::= { stpxSMSTObjects 2 }
stpxSMSTRegionRevision OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational region version for IEEE MST."
::= { stpxSMSTObjects 3 }
stpxSMSTRegionEditRevision OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The MST region version in the Edit Buffer for IEEE
MST.
This object is only instantiated when the
stpxMSTRegionEditBufferStatus has the value of
acquiredBySnmp(2)."
::= { stpxSMSTObjects 4 }
stpxSMSTInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxSMSTInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MST instance information
for IEEE MST."
::= { stpxSMSTObjects 5 }
stpxSMSTInstanceEntry OBJECT-TYPE
SYNTAX StpxSMSTInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing the MST instance
information for IEEE MST."
INDEX { stpxSMSTInstanceIndex }
::= { stpxSMSTInstanceTable 1 }
StpxSMSTInstanceEntry ::= SEQUENCE {
stpxSMSTInstanceIndex Unsigned32,
stpxSMSTInstanceVlansMapped1k2k OCTET STRING,
stpxSMSTInstanceVlansMapped3k4k OCTET STRING,
stpxSMSTInstanceRemainingHopCount Integer32,
stpxSMSTInstanceCISTRegionalRoot OCTET STRING,
stpxSMSTInstanceCISTIntRootCost Unsigned32
}
stpxSMSTInstanceIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MST instance ID, the value of which is in the range
from 0 to stpxSMSTMaxInstanceID."
::= { stpxSMSTInstanceEntry 1 }
stpxSMSTInstanceVlansMapped1k2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 0 through 2047. The
first octet corresponds to VLANs with VlanIndex values
of 0 through 7; the second octet to VLANs 8 through
15; etc. The most significant bit of each octet
corresponds to the lowest value VlanIndex in that octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to '1'.
If the length of this string is less than 256 octets,
any 'missing' octets are assumed to contain the value
of zero."
::= { stpxSMSTInstanceEntry 2 }
stpxSMSTInstanceVlansMapped3k4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 2048 through 4095. 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 value VlanIndex in that
octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to '1'.
If the length of this string is less than 256 octets,
any 'missing' octets are assumed to contain the value
of zero."
::= { stpxSMSTInstanceEntry 3 }
stpxSMSTInstanceRemainingHopCount OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The remaining hop count for this MST instance. If this object
value is not applicable on an MST instance, then the value
retrieved for this object for that MST instance will be -1.
This object is only instantiated when the object value of
stpxSpanningTreeType is mst(4)."
::= { stpxSMSTInstanceEntry 4 }
stpxSMSTInstanceCISTRegionalRoot OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Bridge Identifier (refer to BridgeId
defined in BRIDGE-MIB) of CIST (Common and Internal
Spanning Tree) Regional Root for the MST region.
This object is only instantiated when the object value of
stpxSpanningTreeType is mst(4) and stpxSMSTInstanceIndex
is 0."
REFERENCE "IEEE 802.1S-2002: Section 13.9."
::= { stpxSMSTInstanceEntry 5 }
stpxSMSTInstanceCISTIntRootCost OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the CIST Internal Root Path Cost, i.e., the
path cost to the CIST Regional Root as specified by the
corresponding stpxSMSTInstanceCISTRegionalRoot for the
MST region.
This object is only instantiated when the object value of
stpxSpanningTreeType is mst(4) and stpxSMSTInstanceIndex
is 0."
REFERENCE "IEEE 802.1S-2002: Section 13.9."
::= { stpxSMSTInstanceEntry 6 }
stpxSMSTInstanceEditTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxSMSTInstanceEditEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains MST instance information in the
Edit Buffer.
This table is only instantiated when the object value
of stpxMSTRegionEditBufferStatus has the value of
acquiredBySnmp(2)."
::= { stpxSMSTObjects 6 }
stpxSMSTInstanceEditEntry OBJECT-TYPE
SYNTAX StpxSMSTInstanceEditEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A conceptual row containing MST instance information
in the Edit Buffer.
The total number of entries in this table has to be
less than or equal to the object value of stpxSMSTMaxInstances."
INDEX { stpxSMSTInstanceEditIndex }
::= { stpxSMSTInstanceEditTable 1 }
StpxSMSTInstanceEditEntry ::= SEQUENCE {
stpxSMSTInstanceEditIndex Unsigned32,
stpxSMSTInstanceEditVlansMap1k2k OCTET STRING,
stpxSMSTInstanceEditVlansMap3k4k OCTET STRING,
stpxSMSTInstanceEditRowStatus RowStatus
}
stpxSMSTInstanceEditIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MST instance ID, the value of which is in the range from
0 to stpxSMSTMaxInstanceID.
The instances of this table entry with
stpxSMSTInstanceEditIndex of zero is automatically
created by the device and can not modified."
::= { stpxSMSTInstanceEditEntry 1 }
stpxSMSTInstanceEditVlansMap1k2k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 0 through 2047. The
first octet corresponds to VLANs with VlanIndex values
of 0 through 7; the second octet to VLANs 8 through
15; etc. The most significant bit of each octet
corresponds to the lowest value VlanIndex in that octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to
'1'. Each VLAN can only be mapped to one unique MST
instance with the range from 0 to stpxSMSTMaxInstanceNumber.
If the bit corresponding to a VLAN is changed from '1'
to '0', then that VLAN will be automatically mapped to
SMST instance 0 by the device. If the bit corresponding
to a VLAN is changed from '0' to '1', then that VLAN will
be automatically removed from the MST instance this VLAN was
previously mapped to. If the length of this string is
less than 256 octets, any 'missing' octets are assumed to
contain the value of zero."
::= { stpxSMSTInstanceEditEntry 2 }
stpxSMSTInstanceEditVlansMap3k4k OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A string of octets containing one bit per VLAN for
VLANS with VlanIndex values of 2048 through 4095. 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 value VlanIndex in that octet.
For each VLAN, if it is mapped to this MST instance,
then the bit corresponding to that VLAN is set to
'1'. Each VLAN can only be mapped to one unique MST
instance with the range from 0 to stpxSMSTMaxInstanceNumber.
If the bit corresponding to a VLAN is changed from '1'
to '0', then that VLAN will be automatically mapped to
SMST instance 0 by the device. If the bit corresponding
to a VLAN is changed from '0' to '1', then that VLAN will
be automatically removed from the MST instance this VLAN was
previously mapped to. If the length of this string is
less than 256 octets, any 'missing' octets are assumed to
contain the value of zero."
::= { stpxSMSTInstanceEditEntry 3 }
stpxSMSTInstanceEditRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object controls the creation and deletion of a row
in stpxSMSTInstanceEditTable.
When creating an entry in this table, 'createAndGo' method
is used and the value of this object is set to 'active'.
Deactivation of an 'active' entry is not allowed. When
deleting an entry in this table, 'destroy' method is used.
Once a row becomes active, value in any other column
within such a row may be modified. When a row is active,
setting the instance of stpxSMSTInstanceEditVlansMap1k2k
stpxSMSTInstanceEditVlansMap3k4k for the same MST instance
both to the value of zero length can not be allowed."
::= { stpxSMSTInstanceEditEntry 4 }
stpxSMSTPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF StpxSMSTPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing port information for the MST
Protocol on all the bridge ports existing on the
system.
This table is only instantiated when the object
value of stpxSpanningTreeType is mst(4)"
::= { stpxSMSTObjects 7 }
stpxSMSTPortEntry OBJECT-TYPE
SYNTAX StpxSMSTPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry with port information for the MST protocol
on a bridge port."
INDEX { stpxSMSTPortIndex }
::= { stpxSMSTPortTable 1 }
StpxSMSTPortEntry ::= SEQUENCE {
stpxSMSTPortIndex Integer32,
stpxSMSTPortStatus BITS,
stpxSMSTPortAdminHelloTime Unsigned32,
stpxSMSTPortConfigedHelloTime Unsigned32,
stpxSMSTPortOperHelloTime Integer32,
stpxSMSTPortAdminMSTMode INTEGER,
stpxSMSTPortOperMSTMode INTEGER
}
stpxSMSTPortIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of dot1dBasePort (i.e. dot1dBridge.1.4)
for the bridge port."
REFERENCE "dot1dBasePort is defined in RFC1493."
::= { stpxSMSTPortEntry 1 }
stpxSMSTPortStatus OBJECT-TYPE
SYNTAX BITS {
edge(0),
boundary(1),
pvst(2),
stp(3),
dispute(4),
rstp(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the operational status of the port for the
MST protocol.
edge -- this port is an edge port for the MST region.
boundary -- this port is a boundary port for the
MST region.
pvst -- this port is connected to a PVST/PVST+ bridge.
stp -- this port is connected to a Single Spanning
Tree bridge.
dispute -- this port, as a designated port, received an
inferior BPDU with a designated role and the
learning bit being set.
rstp -- this port is connected to a RSTP bridge or an
MST bridge in a different MST region."
::= { stpxSMSTPortEntry 2 }
stpxSMSTPortAdminHelloTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "hundredth of seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The adminitratively configured hello time in hundredth
of seconds on a port for IEEE MST. The granularity
of this timer is 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. This object value of zero
means the hello time is not specifically configured on
this port and object value of stpxSMSTPortConfigedHelloTime
retrieved for this port will take on the value of
dot1dStpBridgeHelloTime defined in BRIDGE-MIB."
::= { stpxSMSTPortEntry 3 }
stpxSMSTPortConfigedHelloTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "hundredth of seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the effective configuration of the hello time on
a port."
::= { stpxSMSTPortEntry 4 }
stpxSMSTPortOperHelloTime OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
UNITS "hundredth of seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational hello time in hundredth of seconds on a
port for IEEE MST. If this object value is not
applicable on a port, then the value retrieved on that
port will be -1."
::= { stpxSMSTPortEntry 5 }
stpxSMSTPortAdminMSTMode OBJECT-TYPE
SYNTAX INTEGER {
preStandard(1),
auto(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired MST mode of this port.
preStandard -- this port is administratively configured to
transmit pre-standard, i.e. pre IEEE MST, BPDUs.
auto -- the BPDU transmission mode of this port is based
on automatic detection of neighbor ports."
::= { stpxSMSTPortEntry 6 }
stpxSMSTPortOperMSTMode OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
preStandard(2),
standard(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current operational MST mode of this port.
unknown -- the operational mode is currently unknown.
preStandard -- this port is currently operating in
pre-standard MSTP BPDU transmission mode.
standard -- this port is currently operating in IEEE MST
BPDU transmission mode."
::= { stpxSMSTPortEntry 7 }
stpxSMSTMaxHopCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The maximum number of hops for the IEEE MST region."
::= { stpxSMSTObjects 8 }
stpxSMSTConfigDigest OBJECT-TYPE
SYNTAX StpxMSTConfigurationDigest
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IEEE MST region configuration digest."
REFERENCE "IEEE 802.1Q-2003 Section 13.7."
::= { stpxSMSTObjects 9 }
stpxSMSTConfigPreStandardDigest OBJECT-TYPE
SYNTAX StpxMSTConfigurationDigest
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The pre-standard MST region configuration digest."
::= { stpxSMSTObjects 10 }
stpxL2GatewayDomainId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies layer2 gateway spanning tree
domain identifier."
::= { stpxL2GatewayObjects 1 }
-- Notifications
stpxNotificationsPrefix OBJECT IDENTIFIER
::= { stpxNotifications 0 }
stpxInconsistencyUpdate NOTIFICATION-TYPE
OBJECTS { stpxInconsistentState }
STATUS current
DESCRIPTION
"A stpxInconsistencyUpdate notification is sent by a
bridge when an instance of stpxInconsistentState is
created or destroyed. That is, when an inconsistency is
discovered in the VLAN's Spanning Tree for a particular
port, or when such an inconsistency disappears. Note
that the trap is not sent if the port transitions between
different types of inconsistency.
The stpxInconsistentState value indicates the type of
inconsistency which now exists/no longer exists for the
relevant VLAN on the relevant port."
::= { stpxNotificationsPrefix 1 }
stpxRootInconsistencyUpdate NOTIFICATION-TYPE
OBJECTS {
stpxRootInconsistencyState,
stpxSpanningTreeType
}
STATUS current
DESCRIPTION
"A stpxRootInconsistencyUpdate notification is sent by a
bridge when an instance of stpxRootInconsistencyState
is created or destroyed. That is, when an
root-inconsistency is discovered in the VLAN's or
instance's Spanning Tree for a particular port, or when
such an root-inconsistency disappears. For creation, the
value of stpxRootInconsistencyState in the notification is
true(1); for deletion, the value is false(2).
The object value of stpxSpanningTreeType indicates
which Spanning Tree protocol is running when an instance
of stpxRootInconsistencyState is created or destroyed."
::= { stpxNotificationsPrefix 2 }
stpxLoopInconsistencyUpdate NOTIFICATION-TYPE
OBJECTS {
stpxLoopInconsistencyState,
stpxSpanningTreeType
}
STATUS current
DESCRIPTION
"A stpxLoopInconsistencyUpdate notification is sent by a
bridge when an instance of stpxLoopInconsistencyState
is created or destroyed. That is, when an
loop-inconsistency is discovered in the VLAN's or
instance's Spanning Tree for a particular port, or when
such an loop-inconsistency disappears. For creation,
the value of stpxLoopInconsistencyState in the
notification is true(1); for deletion, the value is
false(2).
The object value of stpxSpanningTreeType indicates
which Spanning Tree protocol is running when an instance
of stpxLoopInconsistencyState is created or
destroyed."
::= { stpxNotificationsPrefix 3 }
stpxMstInconsistencyUpdate NOTIFICATION-TYPE
OBJECTS { stpxMstInconsistencyState }
STATUS current
DESCRIPTION
"A stpxMstInconsistencyUpdate notification is sent by a
bridge when an instance of stpxMstInconsistencyState
is created or destroyed. That is, when an
type-inconsistency is discovered in instance's Spanning
Tree for a particular port, or when such a type-inconsistency
disappears.
Note that the trap is not sent if the port transitions between
different types of inconsistency.
The stpxMstInconsistentState value indicates the type of
inconsistency which now exists/no longer exists for the
relevant instance on the relevant port."
::= { stpxNotificationsPrefix 4 }
-- conformance information
stpxMIBConformance OBJECT IDENTIFIER
::= { ciscoStpExtensionsMIB 3 }
stpxMIBCompliances OBJECT IDENTIFIER
::= { stpxMIBConformance 1 }
stpxMIBGroups OBJECT IDENTIFIER
::= { stpxMIBConformance 2 }
-- compliance statements
stpxMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
::= { stpxMIBCompliances 1 }
stpxMIBCompliance2 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
::= { stpxMIBCompliances 2 }
stpxMIBCompliance3 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
::= { stpxMIBCompliances 3 }
stpxMIBCompliance4 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
::= { stpxMIBCompliances 4 }
stpxMIBCompliance5 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the LoopGuard capability."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxFastStartGroup
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
::= { stpxMIBCompliances 5 }
stpxMIBCompliance6 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxMSTGroup
DESCRIPTION
"This group is optional for implementation of
Multiple Spanning Tree Protocol feature."
GROUP stpxPreferredMSTInstancesGroup
DESCRIPTION
"This group is optional for implementations
of Preferred MST Instance Map feature."
::= { stpxMIBCompliances 6 }
stpxMIBCompliance7 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxPreferredMSTInstancesGroup
DESCRIPTION
"This group is optional for implementations
of Preferred MST Instance Map feature."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxMSTGroup2
DESCRIPTION
"This group is optional for implementation of
Multiple Spanning Tree Protocol feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
::= { stpxMIBCompliances 7 }
stpxMIBCompliance8 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxPreferredMSTInstancesGroup
DESCRIPTION
"This group is optional for implementations
of Preferred MST Instance Map feature."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxMSTGroup2
DESCRIPTION
"This group is optional for implementation of
Multiple Spanning Tree Protocol feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
GROUP stpxExtendedSysIDGroup
DESCRIPTION
"This group is mandatory for implementation of
Extended System ID feature."
GROUP stpxNotificationEnableGroup
DESCRIPTION
"This group is mandatory for implementation of
control on the generation of Spanning Tree
notifications."
GROUP stpxFastStartOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
Spanning Tree Port Fast Start Oper Mode feature."
::= { stpxMIBCompliances 8 }
stpxMIBCompliance9 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
GROUP stpxExtendedSysIDGroup
DESCRIPTION
"This group is mandatory for implementation of
Extended System ID feature."
GROUP stpxNotificationEnableGroup
DESCRIPTION
"This group is mandatory for implementation of
control on the generation of Spanning Tree
notifications."
GROUP stpxFastStartOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
Spanning Tree Port Fast Start Oper Mode feature."
GROUP stpxMSTGroup3
DESCRIPTION
"This group is mandatory for implementation of
Multiple Spanning Tree Protocol on the device."
GROUP stpxSMSTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting IEEE MST on the device."
GROUP stpxSMSTInstanceGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance information for
IEEE MST on the device."
GROUP stpxSMSTInstanceEditGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance edit information for
IEEE MST on the device."
GROUP stpxSMSTPortStatusGroup
DESCRIPTION
"This group is mandatory for implementation of
port status information for Multiple Spanning
Tree Protocol on the device."
GROUP stpxSMSTPortHelloTimeGroup
DESCRIPTION
"This group is mandatory for implementation of
port hello time information for IEEE MST
on the device."
::= { stpxMIBCompliances 9 }
stpxMIBCompliance10 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
GROUP stpxExtendedSysIDGroup
DESCRIPTION
"This group is mandatory for implementation of
Extended System ID feature."
GROUP stpxNotificationEnableGroup
DESCRIPTION
"This group is mandatory for implementation of
control on the generation of Spanning Tree
notifications."
GROUP stpxFastStartOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
Spanning Tree Port Fast Start Oper Mode feature."
GROUP stpxMSTGroup3
DESCRIPTION
"This group is mandatory for implementation of
Multiple Spanning Tree Protocol on the device."
GROUP stpxSMSTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting IEEE MST on the device."
GROUP stpxSMSTInstanceGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance information for
IEEE MST on the device."
GROUP stpxSMSTInstanceEditGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance edit information for
IEEE MST on the device."
GROUP stpxSMSTPortStatusGroup
DESCRIPTION
"This group is mandatory for implementation of
port status information for Multiple Spanning
Tree Protocol on the device."
GROUP stpxSMSTPortHelloTimeGroup
DESCRIPTION
"This group is mandatory for implementation of
port hello time information for IEEE MST
on the device."
GROUP stpxSMSTInstanceCISTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting Common and Internal Spanning Tree (CIST)
information for IEEE MST on the device."
::= { stpxMIBCompliances 10 }
stpxMIBCompliance11 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
GROUP stpxExtendedSysIDGroup
DESCRIPTION
"This group is mandatory for implementation of
Extended System ID feature."
GROUP stpxNotificationEnableGroup
DESCRIPTION
"This group is mandatory for implementation of
control on the generation of Spanning Tree
notifications."
GROUP stpxFastStartOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
Spanning Tree Port Fast Start Oper Mode feature."
GROUP stpxMSTGroup3
DESCRIPTION
"This group is mandatory for implementation of
Multiple Spanning Tree Protocol on the device."
GROUP stpxSMSTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting IEEE MST on the device."
GROUP stpxSMSTInstanceGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance information for
IEEE MST on the device."
GROUP stpxSMSTInstanceEditGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance edit information for
IEEE MST on the device."
GROUP stpxSMSTPortStatusGroup
DESCRIPTION
"This group is mandatory for implementation of
port status information for Multiple Spanning
Tree Protocol on the device."
GROUP stpxSMSTPortHelloTimeGroup
DESCRIPTION
"This group is mandatory for implementation of
port hello time information for IEEE MST
on the device."
GROUP stpxSMSTInstanceCISTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting Common and Internal Spanning Tree (CIST)
information for IEEE MST on the device."
GROUP stpxPathCostOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting operational spanning tree path cost
mode."
::= { stpxMIBCompliances 11 }
stpxMIBCompliance12 MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRSTPTransmitHoldCountGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
GROUP stpxExtendedSysIDGroup
DESCRIPTION
"This group is mandatory for implementation of
Extended System ID feature."
GROUP stpxNotificationEnableGroup
DESCRIPTION
"This group is mandatory for implementation of
control on the generation of Spanning Tree
notifications."
GROUP stpxFastStartOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
Spanning Tree Port Fast Start Oper Mode feature."
GROUP stpxMSTGroup4
DESCRIPTION
"This group is mandatory for implementation of
Multiple Spanning Tree Protocol on the device."
GROUP stpxSMSTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting IEEE MST on the device."
GROUP stpxSMSTMaxHopCountGroup
DESCRIPTION
"This group is mandatory for implementation of
maximum hop count configuration on the device."
GROUP stpxSMSTInstanceGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance information for
IEEE MST on the device."
GROUP stpxSMSTInstanceEditGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance edit information for
IEEE MST on the device."
GROUP stpxSMSTPortStatusGroup
DESCRIPTION
"This group is mandatory for implementation of
port status information for Multiple Spanning
Tree Protocol on the device."
GROUP stpxSMSTPortHelloTimeGroup
DESCRIPTION
"This group is mandatory for implementation of
port hello time information for IEEE MST
on the device."
GROUP stpxSMSTInstanceCISTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting Common and Internal Spanning Tree (CIST)
information for IEEE MST on the device."
GROUP stpxPathCostOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting operational spanning tree path cost
mode."
GROUP stpxSMSTPortMSTModeGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting port MST mode configuration."
GROUP stpxSMSTConfigDigestGroup
DESCRIPTION
"This group is optional for implementation of
supporting IEEE MST on the device."
::= { stpxMIBCompliances 12 }
stpxMIBCompliance13 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities which implement
Cisco STP Extensions MIB."
MODULE -- this module
GROUP stpxUplinkGroup
DESCRIPTION
"This group is mandatory for implementations
of the UplinkFast capability."
GROUP stpxSstpGroup
DESCRIPTION
"This group is optional for implementations of
Cisco's Shared Spanning Tree Protocol (SSTP)."
GROUP stpxPreferredVlansGroup
DESCRIPTION
"This group is mandatory for implementations
of the Preferred VLANs capability."
GROUP stpxNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpxBackboneGroup
DESCRIPTION
"This group is mandatory for implementations
of the BackboneFast capability."
GROUP stpxRootGuardGroup
DESCRIPTION
"This group is mandatory for implementations
of the RootGuard capability."
GROUP stpxRootInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation required to implement."
GROUP stpx4kVlanGroup
DESCRIPTION
"This group must be implemented by the
entities which support the range of VlanIndex
between 1024 and 4095."
GROUP stpxSpanningTreeGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP and PVSTP+"
GROUP stpxMISTPGroup
DESCRIPTION
"This group must be implemented by the entities
that support MISTP."
GROUP stpxLongPathCostModeGroup
DESCRIPTION
"This group must be implemented by the entities
that support 32 bits spannning tree path cost
value."
GROUP stpxPVSTVlanGroup
DESCRIPTION
"This group is optional for implementations
of the Spanning Tree PVST+ Protocol VLAN
configuration."
GROUP stpxMISTPGroup2
DESCRIPTION
"This group is optional for implementations
that support MISTP with the range of VlanIndex
up to 4095."
GROUP stpxLoopInconsistencyNotificationsGroup
DESCRIPTION
"The notifications which a STP extension
implementation is required to implement."
GROUP stpxBpduSkewingGroup
DESCRIPTION
"This is an optional group for implementations of
Spanning Tree BPDU Skewing feature."
GROUP stpxFastStartGroup2
DESCRIPTION
"This stpxFastStartGroup is an optional group
containing objects providing information about
Spanning Tree Port Fast Start feature."
GROUP stpxLoopGuardGroup2
DESCRIPTION
"This group is optional for implementations
of the LoopGuard capability."
GROUP stpxFastStartGroup3
DESCRIPTION
"This group is optional for implementations
of Bpdu Guard and Bpdu Filter feature."
GROUP stpxUplinkGroup2
DESCRIPTION
"This group is optional for implementations
of UplinkFast feature."
GROUP stpxBackboneGroup2
DESCRIPTION
"This group is optional for implementations
of BackboneFast feature."
GROUP stpxRSTPGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRSTPTransmitHoldCountGroup
DESCRIPTION
"This group is optional for implementation of
Rapid Spanning Tree Protocol feature."
GROUP stpxRPVSTGroup
DESCRIPTION
"This group is optional for implementation of
Rapid PVST+ feature."
GROUP stpxExtendedSysIDGroup
DESCRIPTION
"This group is mandatory for implementation of
Extended System ID feature."
GROUP stpxNotificationEnableGroup
DESCRIPTION
"This group is mandatory for implementation of
control on the generation of Spanning Tree
notifications."
GROUP stpxFastStartOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
Spanning Tree Port Fast Start Oper Mode feature."
GROUP stpxMSTGroup4
DESCRIPTION
"This group is mandatory for implementation of
Multiple Spanning Tree Protocol on the device."
GROUP stpxSMSTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting IEEE MST on the device."
GROUP stpxSMSTMaxHopCountGroup
DESCRIPTION
"This group is mandatory for implementation of
maximum hop count configuration on the device."
GROUP stpxSMSTInstanceGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance information for
IEEE MST on the device."
GROUP stpxSMSTInstanceEditGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting MST instance edit information for
IEEE MST on the device."
GROUP stpxSMSTPortStatusGroup
DESCRIPTION
"This group is mandatory for implementation of
port status information for Multiple Spanning
Tree Protocol on the device."
GROUP stpxSMSTPortHelloTimeGroup
DESCRIPTION
"This group is mandatory for implementation of
port hello time information for IEEE MST
on the device."
GROUP stpxSMSTInstanceCISTGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting Common and Internal Spanning Tree (CIST)
information for IEEE MST on the device."
GROUP stpxPathCostOperModeGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting operational spanning tree path cost
mode."
GROUP stpxSMSTPortMSTModeGroup
DESCRIPTION
"This group is mandatory for implementation of
supporting port MST mode configuration."
GROUP stpxSMSTConfigDigestGroup
DESCRIPTION
"This group is optional for implementation of
supporting IEEE MST on the device."
GROUP stpxL2GatewayDomainIdGroup
DESCRIPTION
"This group is mandatory for implementation of
layer2 gateway domain identifier."
::= { stpxMIBCompliances 13 }
-- units of conformance
stpxUplinkGroup OBJECT-GROUP
OBJECTS {
stpxUplinkFastEnabled,
stpxUplinkFastTransitions,
stpxUplinkStationLearningGenRate,
stpxUplinkStationLearningFrames
}
STATUS current
DESCRIPTION
"A collection of objects for managing the UplinkFast
capability."
::= { stpxMIBGroups 1 }
stpxPreferredVlansGroup OBJECT-GROUP
OBJECTS { stpxPreferredVlansMap }
STATUS current
DESCRIPTION
"A collection of objects for indicating preferred VLANs."
::= { stpxMIBGroups 2 }
stpxSstpGroup OBJECT-GROUP
OBJECTS { stpxInconsistentState }
STATUS current
DESCRIPTION
"A collection of objects to support Cisco's Shared Spanning
Tree Protocol (SSTP)."
::= { stpxMIBGroups 3 }
stpxNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { stpxInconsistencyUpdate }
STATUS current
DESCRIPTION
"The notifications which a STP extension implementation is
required to implement."
::= { stpxMIBGroups 4 }
stpxBackboneGroup OBJECT-GROUP
OBJECTS {
stpxBackboneFastEnabled,
stpxBackboneFastInInferiorBPDUs,
stpxBackboneFastInRLQRequestPDUs,
stpxBackboneFastInRLQResponsePDUs,
stpxBackboneFastOutRLQRequestPDUs,
stpxBackboneFastOutRLQResponsePDUs
}
STATUS current
DESCRIPTION
"A collection of objects for managing the BackboneFast
capability."
::= { stpxMIBGroups 5 }
stpxRootGuardGroup OBJECT-GROUP
OBJECTS {
stpxRootGuardConfigEnabled,
stpxRootInconsistencyState
}
STATUS current
DESCRIPTION
"A collection of objects to support root guard
capabilities."
::= { stpxMIBGroups 6 }
stpxRootInconsistencyNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { stpxRootInconsistencyUpdate }
STATUS current
DESCRIPTION
"The notifications which a STP root guard
implementation is required to implement."
::= { stpxMIBGroups 7 }
stpx4kVlanGroup OBJECT-GROUP
OBJECTS {
stpxPreferredVlansMap2k,
stpxPreferredVlansMap3k,
stpxPreferredVlansMap4k
}
STATUS current
DESCRIPTION
"A collection of objects providing information
for VLANS with VlanIndex from 1024 to 4095."
::= { stpxMIBGroups 8 }
stpxSpanningTreeGroup OBJECT-GROUP
OBJECTS { stpxSpanningTreeType }
STATUS current
DESCRIPTION
"An object selecting what kind of spanning tree protocol."
::= { stpxMIBGroups 9 }
stpxMISTPGroup OBJECT-GROUP
OBJECTS {
stpxMISTPInstanceNumber,
stpxMISTPInstanceEnable,
stpxVlanMISTPInstMapInstIndex,
stpxVlanMISTPInstMapEditInstIndex,
stpxPreferredMISTPInstancesMap
}
STATUS current
DESCRIPTION
"A collection objects managing the information of
MISTP feature."
::= { stpxMIBGroups 10 }
stpxLongPathCostModeGroup OBJECT-GROUP
OBJECTS {
stpxSpanningTreePathCostMode,
stpxLongStpPortPathCost
}
STATUS current
DESCRIPTION
"A collection objects managing the information of
spanning tree path cost in 32 bits value."
::= { stpxMIBGroups 11 }
stpxPVSTVlanGroup OBJECT-GROUP
OBJECTS { stpxPVSTVlanEnable }
STATUS current
DESCRIPTION
"A collection of objects managing the information
of Spanning Tree PVST+ protocol VLAN configuration."
::= { stpxMIBGroups 12 }
stpxMISTPGroup2 OBJECT-GROUP
OBJECTS {
stpxMISTPInstanceVlansMapped,
stpxMISTPInstanceVlansMapped2k,
stpxMISTPInstanceVlansMapped3k,
stpxMISTPInstanceVlansMapped4k
}
STATUS current
DESCRIPTION
"A collection objects managing the information of
MISTP instances to VLAN mapping with the range of
VlanIndex up to 4095."
::= { stpxMIBGroups 13 }
stpxLoopGuardGroup OBJECT-GROUP
OBJECTS {
stpxLoopGuardConfigEnabled,
stpxLoopInconsistencyState
}
STATUS deprecated
DESCRIPTION
"A collection of objects to support LoopGuard
capabilities."
::= { stpxMIBGroups 14 }
stpxLoopInconsistencyNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { stpxLoopInconsistencyUpdate }
STATUS current
DESCRIPTION
"The notifications which a STP LoopGuard
implementation is required to implement."
::= { stpxMIBGroups 15 }
stpxFastStartGroup OBJECT-GROUP
OBJECTS {
stpxFastStartBpduGuardEnable,
stpxFastStartBpduFilterEnable,
stpxFastStartPortEnable
}
STATUS deprecated
DESCRIPTION
"A collection of objects to support Spanning Tree Port
Fast Start feature."
::= { stpxMIBGroups 16 }
stpxBpduSkewingGroup OBJECT-GROUP
OBJECTS {
stpxBpduSkewingDetectionEnable,
stpxBpduSkewingLastSkewDuration,
stpxBpduSkewingWorstSkewDuration,
stpxBpduSkewingWorstSkewTime
}
STATUS current
DESCRIPTION
"This is an optional group with a collection of
objects to support Spanning Tree BPDU Skewing feature."
::= { stpxMIBGroups 17 }
stpxFastStartGroup2 OBJECT-GROUP
OBJECTS {
stpxFastStartBpduGuardEnable,
stpxFastStartBpduFilterEnable,
stpxFastStartPortMode,
stpxFastStartGlobalDefaultMode
}
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
support Fast Start global default mode on the device."
::= { stpxMIBGroups 18 }
stpxLoopGuardGroup2 OBJECT-GROUP
OBJECTS {
stpxLoopInconsistencyState,
stpxLoopGuardConfigMode,
stpxLoopGuardGlobalDefaultMode
}
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
support Loop Guard global default mode on the device."
::= { stpxMIBGroups 19 }
stpxMSTGroup OBJECT-GROUP
OBJECTS {
stpxMSTMaxInstanceNumber,
stpxMSTRegionName,
stpxMSTRegionRevision,
stpxMSTInstanceVlansMapped,
stpxMSTInstanceVlansMapped2k,
stpxMSTInstanceVlansMapped3k,
stpxMSTInstanceVlansMapped4k,
stpxMSTInstanceRemainingHopCount,
stpxMSTRegionEditBufferStatus,
stpxMSTRegionEditBufferOperation,
stpxMSTRegionEditName,
stpxMSTRegionEditRevision,
stpxMSTInstanceEditVlansMap,
stpxMSTInstanceEditVlansMap2k,
stpxMSTInstanceEditVlansMap3k,
stpxMSTInstanceEditVlansMap4k,
stpxMSTPortAdminLinkType,
stpxMSTPortOperLinkType,
stpxMSTPortProtocolMigration,
stpxMSTPortStatus,
stpxMSTPortRoleValue,
stpxMSTMaxHopCount
}
STATUS deprecated
DESCRIPTION
"An optional group with a collection of objects to
support Multiple Spanning Tree Protocol on the device."
::= { stpxMIBGroups 20 }
stpxPreferredMSTInstancesGroup OBJECT-GROUP
OBJECTS { stpxPreferredMSTInstancesMap }
STATUS deprecated
DESCRIPTION
"An optional group with a collection of objects to
support Preferred MST Instance Map feature for Multiple
Spanning Tree Protocol on the device."
::= { stpxMIBGroups 21 }
stpxFastStartGroup3 OBJECT-GROUP
OBJECTS {
stpxFastStartPortBpduGuardMode,
stpxFastStartPortBpduFilterMode
}
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
support per port Bpdu Guard and Bpdu Filter mode
configuration on the device."
::= { stpxMIBGroups 22 }
stpxUplinkGroup2 OBJECT-GROUP
OBJECTS { stpxUplinkFastOperEnabled }
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
manage the UplinkFast capability."
::= { stpxMIBGroups 23 }
stpxBackboneGroup2 OBJECT-GROUP
OBJECTS { stpxBackboneFastOperEnabled }
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
manage the BackboneFast capability."
::= { stpxMIBGroups 24 }
stpxMSTGroup2 OBJECT-GROUP
OBJECTS {
stpxMSTMaxInstanceNumber,
stpxMSTRegionName,
stpxMSTRegionRevision,
stpxMSTInstanceVlansMapped,
stpxMSTInstanceVlansMapped2k,
stpxMSTInstanceVlansMapped3k,
stpxMSTInstanceVlansMapped4k,
stpxMSTInstanceRemainingHopCount,
stpxMSTRegionEditBufferStatus,
stpxMSTRegionEditBufferOperation,
stpxMSTRegionEditName,
stpxMSTRegionEditRevision,
stpxMSTInstanceEditVlansMap,
stpxMSTInstanceEditVlansMap2k,
stpxMSTInstanceEditVlansMap3k,
stpxMSTInstanceEditVlansMap4k,
stpxMSTPortStatus,
stpxMSTMaxHopCount
}
STATUS deprecated
DESCRIPTION
"An optional group with a collection of objects to
support Multiple Spanning Tree Protocol on the device."
::= { stpxMIBGroups 25 }
stpxRSTPGroup OBJECT-GROUP
OBJECTS {
stpxRSTPPortAdminLinkType,
stpxRSTPPortOperLinkType,
stpxRSTPPortProtocolMigration,
stpxRSTPPortRoleValue
}
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
support Rapid Spanning Tree Protocol on the device."
::= { stpxMIBGroups 26 }
stpxRPVSTGroup OBJECT-GROUP
OBJECTS { stpxRPVSTPortStatus }
STATUS current
DESCRIPTION
"An optional group with a collection of objects to
support Rapid PVST+ on the device."
::= { stpxMIBGroups 27 }
stpxExtendedSysIDGroup OBJECT-GROUP
OBJECTS {
stpxExtendedSysIDAdminEnabled,
stpxExtendedSysIDOperEnabled
}
STATUS current
DESCRIPTION
"A collection of objects to manage the
Extended System ID capability."
::= { stpxMIBGroups 28 }
stpxNotificationEnableGroup OBJECT-GROUP
OBJECTS { stpxNotificationEnable }
STATUS current
DESCRIPTION
"A collection of objects providing control on the
generation of Spanning Tree notifications."
::= { stpxMIBGroups 29 }
stpxFastStartOperModeGroup OBJECT-GROUP
OBJECTS { stpxFastStartOperMode }
STATUS current
DESCRIPTION
"A collection of objects providing Spanning Tree
Port Fast Start Operatioanl information on a port."
::= { stpxMIBGroups 30 }
stpxMSTGroup3 OBJECT-GROUP
OBJECTS {
stpxMSTRegionName,
stpxMSTRegionEditBufferStatus,
stpxMSTRegionEditBufferOperation,
stpxMSTRegionEditName,
stpxMSTMaxHopCount
}
STATUS deprecated
DESCRIPTION
"A collection of objects providing support
for Multiple Spanning Tree Protocol on the device."
::= { stpxMIBGroups 31 }
stpxSMSTGroup OBJECT-GROUP
OBJECTS {
stpxSMSTMaxInstances,
stpxSMSTMaxInstanceID,
stpxSMSTRegionRevision,
stpxSMSTRegionEditRevision
}
STATUS current
DESCRIPTION
"A collection of objects providing support for
IEEE MST on the device."
::= { stpxMIBGroups 32 }
stpxSMSTInstanceGroup OBJECT-GROUP
OBJECTS {
stpxSMSTInstanceVlansMapped1k2k,
stpxSMSTInstanceVlansMapped3k4k,
stpxSMSTInstanceRemainingHopCount
}
STATUS current
DESCRIPTION
"A collection of objects providing support for
MST instance information for IEEE MST on the device."
::= { stpxMIBGroups 33 }
stpxSMSTInstanceEditGroup OBJECT-GROUP
OBJECTS {
stpxSMSTInstanceEditVlansMap1k2k,
stpxSMSTInstanceEditVlansMap3k4k,
stpxSMSTInstanceEditRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing support for MST
instance edit information for IEEE MST on the device."
::= { stpxMIBGroups 34 }
stpxSMSTPortStatusGroup OBJECT-GROUP
OBJECTS { stpxSMSTPortStatus }
STATUS current
DESCRIPTION
"A collection of objects providing support for
port status information for MST Protocol on the
device."
::= { stpxMIBGroups 35 }
stpxSMSTPortHelloTimeGroup OBJECT-GROUP
OBJECTS {
stpxSMSTPortAdminHelloTime,
stpxSMSTPortConfigedHelloTime,
stpxSMSTPortOperHelloTime
}
STATUS current
DESCRIPTION
"A collection of objects providing support for per
port hello time information for IEEE MST on the device."
::= { stpxMIBGroups 36 }
stpxSMSTInstanceCISTGroup OBJECT-GROUP
OBJECTS {
stpxSMSTInstanceCISTRegionalRoot,
stpxSMSTInstanceCISTIntRootCost
}
STATUS current
DESCRIPTION
"A collection of objects providing information about
Common and Internal Spanning Tree (CIST) for IEEE
MST on the device."
::= { stpxMIBGroups 37 }
stpxPathCostOperModeGroup OBJECT-GROUP
OBJECTS { stpxSpanningTreePathCostOperMode }
STATUS current
DESCRIPTION
"A collection of objects providing information about
operational spanning tree path cost mode."
::= { stpxMIBGroups 38 }
stpxRSTPTransmitHoldCountGroup OBJECT-GROUP
OBJECTS { stpxRSTPTransmitHoldCount }
STATUS current
DESCRIPTION
"A collection of objects providing information for
configuration of transmit hold count for Rapid Spanning
Tree Protocol."
::= { stpxMIBGroups 39 }
stpxSMSTPortMSTModeGroup OBJECT-GROUP
OBJECTS {
stpxSMSTPortAdminMSTMode,
stpxSMSTPortOperMSTMode
}
STATUS current
DESCRIPTION
"A collection of objects providing information for port
MST mode configuration on the device."
::= { stpxMIBGroups 40 }
stpxSMSTMaxHopCountGroup OBJECT-GROUP
OBJECTS { stpxSMSTMaxHopCount }
STATUS current
DESCRIPTION
"A collection of objects providing information for
configuration of IEEE MST maximum hop count."
::= { stpxMIBGroups 41 }
stpxSMSTConfigDigestGroup OBJECT-GROUP
OBJECTS {
stpxSMSTConfigDigest,
stpxSMSTConfigPreStandardDigest
}
STATUS current
DESCRIPTION
"A collection of objects providing information for
MST configuration digests on the device."
::= { stpxMIBGroups 42 }
stpxMSTGroup4 OBJECT-GROUP
OBJECTS {
stpxMSTRegionName,
stpxMSTRegionEditBufferStatus,
stpxMSTRegionEditBufferOperation,
stpxMSTRegionEditName
}
STATUS current
DESCRIPTION
"A collection of objects providing support
for Multiple Spanning Tree Protocol on the device."
::= { stpxMIBGroups 43 }
stpxL2GatewayDomainIdGroup OBJECT-GROUP
OBJECTS { stpxL2GatewayDomainId }
STATUS current
DESCRIPTION
"A collection of objects providing information
for layer2 gateway spanning tree domain identifier on
the device."
::= { stpxMIBGroups 44 }
stpxMSTInconsistencyGroup OBJECT-GROUP
OBJECTS { stpxMstInconsistencyState }
STATUS current
DESCRIPTION
"A collection of objects providing inconsistency information
for Multiple Spanning Tree Protocol on the device."
::= { stpxMIBGroups 45 }
stpxMSTNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { stpxMstInconsistencyUpdate }
STATUS current
DESCRIPTION
"A collection of notifications for Multiple Spanning Tree
Protocol on the device."
::= { stpxMIBGroups 46 }
END
|