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
|
Internet Engineering Task Force (IETF) A. Rijhsinghani
Request for Comments: 6850 Hewlett-Packard
Category: Standards Track K. Zebrose
ISSN: 2070-1721 HW Embedded
January 2013
Definitions of Managed Objects for Routing Bridges (RBridges)
Abstract
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols. In particular, it defines
objects for managing a Routing Bridge (RBridge), also known as a
TRILL Switch, based on the IETF TRILL (Transparent Interconnection of
Lots of Links) protocol.
Status of This Memo
This is an Internet Standards Track document.
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by the
Internet Engineering Steering Group (IESG). Further information on
Internet Standards is available in Section 2 of RFC 5741.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
http://www.rfc-editor.org/info/rfc6850.
Copyright Notice
Copyright (c) 2013 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Rijhsinghani & Zebrose Standards Track [Page 1]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
Table of Contents
1. Introduction ....................................................2
2. The Internet-Standard Management Framework ......................3
3. Overview ........................................................3
4. Conventions .....................................................4
5. Structure of the MIB Module .....................................4
5.1. Textual Conventions ........................................4
5.2. The rbridgeBase Subtree ....................................4
5.3. The rbridgeFdb Subtree .....................................4
5.4. The rbridgeVlan Subtree ....................................4
5.5. The rbridgeEsadi Subtree ...................................4
5.6. The rbridgeCounters Subtree ................................4
5.7. The rbridgeSnooping Subtree ................................5
5.8. The rbridgeDtree Subtree ...................................5
5.9. The rbridgeTrill Subtree ...................................5
5.10. The Notifications Subtree .................................5
6. Relationship to Other MIB Modules ...............................5
6.1. Relationship to IF-MIB .....................................5
6.2. Relationship to BRIDGE-MIB .................................6
6.3. Relationship to P-BRIDGE-MIB ...............................6
6.4. Relationship to Q-BRIDGE-MIB ...............................6
6.5. Relationship to IEEE8021-BRIDGE-MIB ........................7
6.6. Relationship to IEEE8021-Q-BRIDGE-MIB ......................7
6.7. Relationship to ISIS-MIB ...................................8
6.8. MIB Modules Required for IMPORTS ...........................8
7. Definition of the RBridge MIB Module ............................9
8. Security Considerations ........................................55
9. IANA Considerations ............................................56
10. Contributors ..................................................56
11. References ....................................................57
11.1. Normative References .....................................57
11.2. Informative References ...................................58
1. Introduction
This document describes a model for managing Routing Bridges
(RBridges), also known as TRILL Switches, as defined in [RFC6325].
RBridges provide optimal pair-wise forwarding without configuration
using IS-IS routing and encapsulation of traffic. RBridges are
compatible with previous IEEE 802.1 customer bridges as well as IPv4
and IPv6 routers and end nodes. They are as invisible to current IP
routers as bridges are and, like routers, they terminate the bridge
spanning tree protocol. In creating an RBridge management model, the
device is viewed primarily as a customer bridge. For a discussion of
the problem addressed by TRILL (Transparent Interconnection of Lots
of Links), see [RFC5556].
Rijhsinghani & Zebrose Standards Track [Page 2]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
RBridges support features specified for transparent bridges in
IEEE 802.1, and the corresponding MIB modules are used to manage
those features. For IS-IS purposes, the corresponding MIB module is
used to manage the protocol. This MIB module specifies those objects
that are TRILL-specific and hence not available in other MIB modules.
2. The Internet-Standard Management Framework
For a detailed overview of the documents that describe the current
Internet-Standard Management Framework, please refer to section 7 of
RFC 3410 [RFC3410].
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. MIB objects are generally
accessed through the Simple Network Management Protocol (SNMP).
Objects in the MIB are defined using the mechanisms defined in the
Structure of Management Information (SMI). This memo specifies a MIB
module that is compliant to the SMIv2, which is described in STD 58,
RFC 2578 [RFC2578], STD 58, RFC 2579 [RFC2579] and STD 58, RFC 2580
[RFC2580].
3. Overview
The RBridge MIB module is intended as an overall framework for
managing RBridges, also known as TRILL Switches. Where possible, the
MIB references existing MIB definitions in order to maximize reuse.
This results in a considerable emphasis on the relationship with
other MIB modules.
Starting with the physical interfaces, there are requirements for
certain elements of the IF-MIB to be implemented. These elements are
required in order to connect the per-port parameters to higher-level
functions of the physical device.
Transparent bridging, VLANs, traffic classes, and multicast filtering
are supported by the TRILL protocol, and the corresponding management
is expected to conform to the BRIDGE-MIB module [RFC4188] and to the
P-BRIDGE-MIB and Q-BRIDGE-MIB modules [RFC4363].
The IS-IS routing protocol is used in order to determine the optimum
pair-wise forwarding path. This protocol is managed using the IS-IS
MIB module defined in [RFC4444]. Since the TRILL protocol specifies
the use of a single level and a fixed area address of zero, some
IS-IS MIB objects are not applicable. Some IS-IS MIB objects are
used in the TRILL protocol.
Rijhsinghani & Zebrose Standards Track [Page 3]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
4. Conventions
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in
RFC 2119 [RFC2119].
5. Structure of the MIB Module
Objects in this MIB module are arranged into subtrees. Each subtree
is organized as a set of related objects. The various subtrees are
shown below. These are supplemented with required elements of the
IF-MIB, ISIS-MIB, BRIDGE-MIB, P-BRIDGE-MIB, Q-BRIDGE-MIB, and IEEE
Bridge MIB modules.
5.1. Textual Conventions
Textual conventions are defined to represent object types relevant to
TRILL.
5.2. The rbridgeBase Subtree
This subtree contains system- and port-specific objects applicable to
all RBridges.
5.3. The rbridgeFdb Subtree
This subtree contains objects applicable to the forwarding database
used by the RBridge in making packet-forwarding decisions. Because
it contains additional information used by the TRILL protocol not
applicable to 802.1D/Q bridges, it is a superset of the corresponding
subtrees defined in the BRIDGE-MIB and Q-BRIDGE-MIB.
5.4. The rbridgeVlan Subtree
This subtree describes objects applicable to VLANs configured on the
RBridge.
5.5. The rbridgeEsadi Subtree
This subtree describes objects relevant to RBridges that support the
optional End-Station Address Distribution Information (ESADI)
protocol.
5.6. The rbridgeCounters Subtree
This subtree contains statistics maintained by RBridges that can aid
in monitoring and troubleshooting networks connected by them.
Rijhsinghani & Zebrose Standards Track [Page 4]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
5.7. The rbridgeSnooping Subtree
This subtree describes objects applicable to RBridges capable of
snooping IPv4 and/or IPv6 multicast control frames and pruning IP
multicast traffic based on detection of IP multicast routers and
listeners.
5.8. The rbridgeDtree Subtree
This subtree contains objects relevant to distribution trees computed
by RBridges for the forwarding of multi-destination frames.
5.9. The rbridgeTrill Subtree
This subtree contains objects applicable to the TRILL IS-IS protocol,
beyond what is available in the ISIS-MIB.
5.10. The Notifications Subtree
The defined notifications are focused on the TRILL protocol
functionality. Notifications are defined for changes in the
Designated RBridge status and the topology.
6. Relationship to Other MIB Modules
The IF-MIB, BRIDGE-MIB, P-BRIDGE-MIB, Q-BRIDGE-MIB,
IEEE8021-BRIDGE-MIB, IEEE8021-Q-BRIDGE-MIB, and ISIS-MIB modules all
contain objects relevant to the RBridge MIB. Management objects
contained in these modules are not duplicated here, to reduce overlap
to the extent possible.
The Bridge MIB modules were originally written in the IETF and
implemented by many vendors. Per [RFC4663], this has recently been
transferred to the IEEE 802.1 working group. As vendors may have
implemented either the IETF or IEEE Bridge MIB modules, this RBridge
MIB module is designed to work with either one.
6.1. Relationship to IF-MIB
The port identification elements MUST be implemented in order to
allow them to be cross-referenced. The Interfaces MIB [RFC2863]
requires that any MIB module that is an adjunct of the Interfaces MIB
clarify specific areas within the Interfaces MIB module. These areas
were intentionally left vague in the Interfaces MIB module to avoid
over-constraining the MIB, thereby precluding management of certain
media types. Section 4 of [RFC2863] enumerates several areas that a
Rijhsinghani & Zebrose Standards Track [Page 5]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
media-specific MIB module must clarify. The implementor is referred
to [RFC2863] in order to understand the general intent of these
areas.
6.2. Relationship to BRIDGE-MIB
The following subtrees in the BRIDGE-MIB [RFC4188] contain
information relevant to RBridges when the corresponding functionality
is implemented.
o dot1dBase
o dot1dTp
o dot1dStatic
6.3. Relationship to P-BRIDGE-MIB
The following subtrees in the P-BRIDGE-MIB [RFC4363] contain
information relevant to RBridges when the corresponding functionality
is implemented.
o dot1dExtBase
o dot1dPriority
o dot1dGarp
o dot1dGmrp
o dot1dTpHCPortTable
o dot1dTpPortOverflowTable
6.4. Relationship to Q-BRIDGE-MIB
The following groups in the Q-BRIDGE-MIB [RFC4363] contain
information relevant to RBridges when the corresponding functionality
is implemented. This functionality is also contained in the
IEEE8021-Q-BRIDGE-MIB.
o dot1qBase
o dot1qTp
o dot1qStatic
Rijhsinghani & Zebrose Standards Track [Page 6]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
o dot1qVlan
o dot1vProtocol
6.5. Relationship to IEEE8021-BRIDGE-MIB
The following subtrees in the IEEE8021-BRIDGE-MIB contain information
relevant to RBridges when the corresponding functionality is
implemented.
o ieee8021BridgeBase
o ieee8021BridgeTp
o ieee8021BridgePriority
o ieee8021BridgeMrp
o ieee8021BridgeMmrp
o ieee8021BridgeInternalLan
o ieee8021BridgeDot1d
6.6. Relationship to IEEE8021-Q-BRIDGE-MIB
The following subtrees in the IEEE8021-Q-BRIDGE-MIB contain
information relevant to RBridges when the corresponding functionality
is implemented.
o ieee8021QBridgeBase
o ieee8021QBridgeTp
o ieee8021QBridgeStatic
o ieee8021QBridgeVlan
o ieee8021QBridgeProtocol
Rijhsinghani & Zebrose Standards Track [Page 7]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
6.7. Relationship to ISIS-MIB
"Management Information Base for Intermediate System to Intermediate
System (IS-IS)" [RFC4444] defines a MIB module for the IS-IS routing
protocol when it is used to construct routing tables for IP networks.
While most of these objects are applicable to the TRILL layer 2
implementation, note the IS-IS constraints for the current version of
TRILL [RFC6325]:
o The TRILL IS-IS instance uses a single Level 1 IS-IS area.
o The TRILL Level 1 IS-IS area uses the fixed area address zero.
o The TRILL IS-IS instance is not used for IP address advertisement.
o The TRILL IS-IS instance is used for only a single protocol:
TRILL.
Accordingly, tables that report IP address reachability and tables
that allow configuration or reporting of multiple IS-IS areas,
multiple IS-IS levels, or multiple protocols will be empty in the
ISIS-MIB module for the current version of TRILL.
Note also that when more than one instance of the IS-IS protocol is
running on a device, as in the case of a device performing both
RBridge and IS-IS IP router functions, multiple instances of the
ISIS-MIB module can be distinguished by the use of SNMPv3 contexts or
SNMPv1 communities.
6.8. MIB Modules Required for IMPORTS
The following MIB module imports objects from the SNMPv2-SMI
[RFC2578], SNMPv2-TC [RFC2579], SNMPv2-CONF [RFC2580], IF-MIB
[RFC2863], INET-ADDRESS-MIB [RFC4001], BRIDGE-MIB [RFC4188],
and Q-BRIDGE-MIB [RFC4363]. (The IEEE Bridge MIB modules import
similar TCs.)
Rijhsinghani & Zebrose Standards Track [Page 8]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
7. Definition of the RBridge MIB Module
RBRIDGE-MIB DEFINITIONS ::= BEGIN
-- ---------------------------------------------------------- --
-- MIB for RBRIDGE devices, also known as TRILL Switches
-- ---------------------------------------------------------- --
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Counter32, Counter64, Unsigned32, mib-2
FROM SNMPv2-SMI -- RFC2578
TEXTUAL-CONVENTION, TruthValue, MacAddress, RowStatus
FROM SNMPv2-TC -- RFC2579
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF -- RFC2580
VlanId, PortList
FROM Q-BRIDGE-MIB -- RFC4363
InetAddress, InetAddressType
FROM INET-ADDRESS-MIB -- RFC4001
BridgeId
FROM BRIDGE-MIB -- RFC4188
InterfaceIndex
FROM IF-MIB -- RFC2863
;
rbridgeMIB MODULE-IDENTITY
LAST-UPDATED "201301070000Z"
ORGANIZATION "IETF TRILL Working Group"
CONTACT-INFO
"http://datatracker.ietf.org/wg/trill/charter/
Email: trill@ietf.org
Anil Rijhsinghani
Hewlett-Packard
Tel: +1 508 323 1251
Email: anil@charter.net
Kate Zebrose
HW Embedded
Tel: +1 617 840 9673
Email: zebrose@alum.mit.edu"
DESCRIPTION
"The RBridge MIB module for managing switches that support
the TRILL protocol."
REVISION "201301070000Z"
Rijhsinghani & Zebrose Standards Track [Page 9]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
DESCRIPTION
"Initial version, published as RFC 6850.
Copyright (c) 2013 IETF Trust and the persons identified as
authors of the code. All rights reserved.
Redistribution and use in source and binary forms, with or
without modification, is permitted pursuant to, and subject to
the license terms contained in, the Simplified BSD License set
forth in Section 4.c of the IETF Trust's Legal Provisions
Relating to IETF Documents
(http://trustee.ietf.org/license-info)."
::= { mib-2 214 }
-- ---------------------------------------------------------- --
-- Subtrees in the RBridge MIB
-- ---------------------------------------------------------- --
rbridgeNotifications OBJECT IDENTIFIER ::= { rbridgeMIB 0 }
rbridgeObjects OBJECT IDENTIFIER ::= { rbridgeMIB 1 }
rbridgeConformance OBJECT IDENTIFIER ::= { rbridgeMIB 2 }
rbridgeBase OBJECT IDENTIFIER ::= { rbridgeObjects 1 }
rbridgeFdb OBJECT IDENTIFIER ::= { rbridgeObjects 2 }
rbridgeVlan OBJECT IDENTIFIER ::= { rbridgeObjects 3 }
rbridgeEsadi OBJECT IDENTIFIER ::= { rbridgeObjects 4 }
rbridgeCounter OBJECT IDENTIFIER ::= { rbridgeObjects 5 }
rbridgeSnooping OBJECT IDENTIFIER ::= { rbridgeObjects 6 }
rbridgeDtree OBJECT IDENTIFIER ::= { rbridgeObjects 7 }
rbridgeTrill OBJECT IDENTIFIER ::= { rbridgeObjects 8 }
-- ---------------------------------------------------------- --
-- Type Definitions
-- ---------------------------------------------------------- --
RbridgeAddress ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1x:"
STATUS current
DESCRIPTION
"The Media Access Control (MAC) address used by an RBridge
port. This may match the RBridge IS-IS SystemID."
SYNTAX OCTET STRING (SIZE (6))
Rijhsinghani & Zebrose Standards Track [Page 10]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
RbridgeNickname ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The 16-bit identifier used in TRILL as an
abbreviation for the RBridge's 48-bit IS-IS System ID.
The value 0 means a nickname is not specified, the values
0xFFC0 through 0xFFFE are reserved for future allocation,
and the value 0xFFFF is permanently reserved."
REFERENCE
"RFC 6325, Section 3.7"
SYNTAX Unsigned32 (0..65471)
--
-- the rbridgeBase subtree
--
-- Implementation of the rbridgeBase subtree is mandatory for all
-- RBridges.
--
rbridgeBaseTrillVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum TRILL version number that this RBridge
supports."
REFERENCE
"RFC 6325, Section 3.2"
::= { rbridgeBase 1 }
rbridgeBaseNumPorts OBJECT-TYPE
SYNTAX Unsigned32
UNITS "ports"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of ports controlled by this RBridge."
REFERENCE
"RFC 6325, Section 2.6.1"
::= { rbridgeBase 2 }
rbridgeBaseForwardDelay OBJECT-TYPE
SYNTAX Unsigned32 (4..30)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
Rijhsinghani & Zebrose Standards Track [Page 11]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
DESCRIPTION
"Modified aging time for address entries after an appointed
forwarder change.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.8.3"
::= { rbridgeBase 3 }
rbridgeBaseUniMultipathEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The enabled status of unicast TRILL multipathing.
It is enabled when true.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Appendix C"
::= { rbridgeBase 4 }
rbridgeBaseMultiMultipathEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The enabled status of multi-destination TRILL multipathing.
It is enabled when true.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Appendix C"
::= { rbridgeBase 5 }
rbridgeBaseAcceptEncapNonadj OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Accept TRILL-encapsulated frames from a neighbor with which
this RBridge does not have an IS-IS adjacency, when the value
of this object is 'true'.
Rijhsinghani & Zebrose Standards Track [Page 12]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.6.2"
::= { rbridgeBase 6 }
rbridgeBaseNicknameNumber OBJECT-TYPE
SYNTAX Unsigned32 (1..256)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of nicknames this RBridge should acquire.
These can be acquired dynamically or configured
statically. This value represents the maximum
number of entries in rbridgeBaseNicknameTable.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 3.7.3"
::= { rbridgeBase 7 }
-- ---------------------------------------------------------- --
-- The RBridge Base Nickname Table
-- ---------------------------------------------------------- --
rbridgeBaseNicknameTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeBaseNicknameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about nicknames
configured by an operator or learned dynamically
by this RBridge."
REFERENCE
"RFC 6325, Section 3.7"
::= { rbridgeBase 8 }
rbridgeBaseNicknameEntry OBJECT-TYPE
SYNTAX RbridgeBaseNicknameEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information for each nickname of the RBridge."
REFERENCE
"RFC 6325, Section 3.7"
INDEX { rbridgeBaseNicknameName }
::= { rbridgeBaseNicknameTable 1 }
Rijhsinghani & Zebrose Standards Track [Page 13]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
RbridgeBaseNicknameEntry ::=
SEQUENCE {
rbridgeBaseNicknameName
RbridgeNickname,
rbridgeBaseNicknamePriority
Unsigned32,
rbridgeBaseNicknameDtrPriority
Unsigned32,
rbridgeBaseNicknameType
INTEGER,
rbridgeBaseNicknameRowStatus
RowStatus
}
rbridgeBaseNicknameName OBJECT-TYPE
SYNTAX RbridgeNickname
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Nicknames are 16-bit quantities that act as
abbreviations for RBridge's 48-bit IS-IS System ID to
achieve a more compact encoding."
REFERENCE
"RFC 6325, Section 3.7"
::= { rbridgeBaseNicknameEntry 1 }
rbridgeBaseNicknamePriority OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This RBridge's priority to hold this nickname. When
the nickname is configured, the default value of this
object is 192. When the nickname is configured, the most
significant bit (0x80) must be set and the bottom 7 bits
have the default value of 0x40, so 0x80 + 0x40 == 0xC0,
which is 192 decimal. Additionally, the bottom 7 bits
could be configured to a value other than 0x40.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 3.7"
DEFVAL { 192 }
::= { rbridgeBaseNicknameEntry 2 }
Rijhsinghani & Zebrose Standards Track [Page 14]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeBaseNicknameDtrPriority OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The distribution tree root priority for this nickname.
The default value of this object is 32768.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.5"
DEFVAL { 32768 }
::= { rbridgeBaseNicknameEntry 3 }
rbridgeBaseNicknameType OBJECT-TYPE
SYNTAX INTEGER {
static(1),
dynamic(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of the entry. The
default value is static(1).
static(1) - this entry has been configured and
will remain after the next reset of the RBridge.
dynamic(2) - this entry has been acquired by the
RBridge nickname acquisition protocol."
REFERENCE
"RFC 6325, Section 3.7"
DEFVAL { static }
::= { rbridgeBaseNicknameEntry 4 }
rbridgeBaseNicknameRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the status of the entry."
::= { rbridgeBaseNicknameEntry 5 }
Rijhsinghani & Zebrose Standards Track [Page 15]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
-- ---------------------------------------------------------- --
-- The RBridge Port Table
-- ---------------------------------------------------------- --
rbridgeBasePortTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeBasePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains generic information about every
port that is associated with this RBridge."
REFERENCE
"RFC 6325, Section 5.3"
::= { rbridgeBase 9 }
rbridgeBasePortEntry OBJECT-TYPE
SYNTAX RbridgeBasePortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information for each port of the bridge."
REFERENCE
"RFC 6325, Section 5.3"
INDEX { rbridgeBasePort }
::= { rbridgeBasePortTable 1 }
RbridgeBasePortEntry ::=
SEQUENCE {
rbridgeBasePort
Unsigned32,
rbridgeBasePortIfIndex
InterfaceIndex,
rbridgeBasePortDisable
TruthValue,
rbridgeBasePortTrunkPort
TruthValue,
rbridgeBasePortAccessPort
TruthValue,
rbridgeBasePortP2pHellos
TruthValue,
rbridgeBasePortState
INTEGER,
rbridgeBasePortInhibitionTime
Unsigned32,
rbridgeBasePortDisableLearning
TruthValue,
rbridgeBasePortDesiredDesigVlan
VlanId,
Rijhsinghani & Zebrose Standards Track [Page 16]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeBasePortDesigVlan
VlanId,
rbridgeBasePortStpRoot
BridgeId,
rbridgeBasePortStpRootChanges
Counter32,
rbridgeBasePortStpWiringCloset
BridgeId
}
rbridgeBasePort OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The port number of the port for which this entry
contains RBridge management information."
REFERENCE
"RFC 6325, Section 5.3"
::= { rbridgeBasePortEntry 1 }
rbridgeBasePortIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the instance of the ifIndex object,
defined in the IF-MIB, for the interface corresponding
to this port. The RBridge port sits on top of
this interface."
::= { rbridgeBasePortEntry 2 }
rbridgeBasePortDisable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Disable port bit. When this bit is set (true), all frames
received or to be transmitted are discarded, with the
possible exception of some layer 2 control frames that may
be generated and transmitted or received and processed
locally. Default value is 'false'.
The value of this object MUST be retained across
re-initializations of the management system."
Rijhsinghani & Zebrose Standards Track [Page 17]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
REFERENCE
"RFC 6325, Section 4.9.1"
DEFVAL { false }
::= { rbridgeBasePortEntry 3 }
rbridgeBasePortTrunkPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"End-station service disable (trunk port) bit. When this bit
is set (true), all native frames received on the port and all
native frames that would have been sent on the port are
discarded. Default value is 'false'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.9.1"
DEFVAL { false }
::= { rbridgeBasePortEntry 4 }
rbridgeBasePortAccessPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRILL traffic disable (access port) bit. If this bit is
set, the goal is to avoid sending any TRILL frames, except
TRILL-Hello frames, on the port, since it is intended only
for native end-station traffic. This ensures that the link
is not on the shortest path for any destination. Default
value is 'false'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.9.1"
DEFVAL { false }
::= { rbridgeBasePortEntry 5 }
rbridgeBasePortP2pHellos OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Use point-to-point (P2P) Hellos bit. If this bit is set,
Hellos sent on this port are IS-IS P2P Hellos, not the
Rijhsinghani & Zebrose Standards Track [Page 18]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
default TRILL-Hellos. In addition, the IS-IS P2P three-way
handshake is used on P2P RBridge links. Default value is
'false'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.9.1"
DEFVAL { false }
::= { rbridgeBasePortEntry 6 }
rbridgeBasePortState OBJECT-TYPE
SYNTAX INTEGER {
uninhibited(1),
portInhibited(2),
vlanInhibited(3),
disabled(4),
broken(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The port's current state. If the entire port is
inhibited, its state is portInhibited(2). If specific VLANs
are inhibited, the state is vlanInhibited(3), and
rbridgeVlanPortTable will tell which VLANs are inhibited.
For ports that are disabled (see rbridgeBasePortDisable),
this object will have a value of disabled(4). If the
RBridge has detected a port that is malfunctioning, it will
place that port into the broken(5) state."
REFERENCE
"RFC 6325, Section 4.2.4.3"
::= { rbridgeBasePortEntry 7 }
rbridgeBasePortInhibitionTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time in seconds that this RBridge will inhibit forwarding
on this port after it observes a spanning tree root bridge
change on a link or receives conflicting VLAN forwarder
information. The default value is 30.
The value of this object MUST be retained across
re-initializations of the management system."
Rijhsinghani & Zebrose Standards Track [Page 19]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
REFERENCE
"RFC 6325, Section 4.2.4.3"
DEFVAL { 30 }
::= { rbridgeBasePortEntry 8 }
rbridgeBasePortDisableLearning OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Disable learning of MAC addresses seen on this port.
To disable learning, the value of this object must be
set to 'true'. The default is 'false'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.8"
DEFVAL { false }
::= { rbridgeBasePortEntry 9 }
rbridgeBasePortDesiredDesigVlan OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VLAN that a Designated RBridge (DRB) will specify in
its TRILL-Hellos as the VLAN to be used by all RBridges on
the link for TRILL frames. This VLAN must be enabled on
this port.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.4.3"
::= { rbridgeBasePortEntry 10 }
rbridgeBasePortDesigVlan OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN being used on this link for TRILL frames."
REFERENCE
"RFC 6325, Section 4.4.3"
::= { rbridgeBasePortEntry 11 }
Rijhsinghani & Zebrose Standards Track [Page 20]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeBasePortStpRoot OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bridge identifier of the root of the spanning tree,
as learned from a Bridge PDU (BPDU) received on this port.
For the Multiple Spanning Tree Protocol (MSTP), this is
the root bridge of the Common and Internal Spanning Tree
(CIST). If no BPDU has been heard, the value returned
is a string of zeros."
REFERENCE
"RFC 6325, Section 4.2.4.3"
::= { rbridgeBasePortEntry 12 }
rbridgeBasePortStpRootChanges OBJECT-TYPE
SYNTAX Counter32
UNITS "changes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a change in the root bridge is seen from
spanning tree BPDUs received on this port, indicating a
change in bridged LAN topology. Each such change may cause
the port to be inhibited for a period of time. This counter
should be synchronized with ifCounterDiscontinuityTime.
Discontinuities in the value of this counter can occur
at re-initialization of the management system."
REFERENCE
"RFC 6325, Section 4.9.3.2"
::= { rbridgeBasePortEntry 13 }
rbridgeBasePortStpWiringCloset OBJECT-TYPE
SYNTAX BridgeId
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Bridge ID to be used as the spanning tree root in BPDUs
sent for the Wiring Closet topology solution described in
[RFC6325]. Note that the same value of this object must be
set on all RBridge ports participating in this solution.
The default value is all 0s. A non-zero value configured
into this object indicates that this solution is in use.
The value of this object MUST be retained across
re-initializations of the management system."
Rijhsinghani & Zebrose Standards Track [Page 21]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
REFERENCE
"RFC 6325, Appendix A.3.3"
::= { rbridgeBasePortEntry 14 }
-- -------------------------------------------------------------
-- RBridge Forwarding Database
-- -------------------------------------------------------------
rbridgeConfidenceNative OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The confidence level associated with MAC addresses
learned from native frames. This is applicable to
all RBridge ports.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.8.1"
::= { rbridgeFdb 1 }
rbridgeConfidenceDecap OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The confidence level associated with inner MAC addresses
learned after decapsulation of a TRILL data frame.
This is applicable to all RBridge ports.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.8.1"
::= { rbridgeFdb 2 }
rbridgeConfidenceStatic OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The confidence level associated with MAC addresses that
are statically configured. The default value is 255.
The value of this object MUST be retained across
re-initializations of the management system."
Rijhsinghani & Zebrose Standards Track [Page 22]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
REFERENCE
"RFC 6325, Section 4.8.2"
DEFVAL { 255 }
::= { rbridgeFdb 3 }
-- -------------------------------------------------------------
-- Multiple Forwarding Databases for RBridges
--
-- This allows for an instance per FdbId, as defined in the
-- Bridge MIB.
--
-- Each VLAN may have an independent FDB, or multiple VLANs may
-- share one.
-- -------------------------------------------------------------
rbridgeUniFdbTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeUniFdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about unicast entries
for which the device has forwarding and/or filtering
information. This information is used by the
transparent bridging function in determining how to
propagate a received frame."
REFERENCE
"RFC 6325, Section 4.8"
::= { rbridgeFdb 4 }
rbridgeUniFdbEntry OBJECT-TYPE
SYNTAX RbridgeUniFdbEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a specific unicast MAC address for
which the RBridge has some forwarding and/or filtering
information."
INDEX { rbridgeFdbId, rbridgeUniFdbAddr }
::= { rbridgeUniFdbTable 1 }
RbridgeUniFdbEntry ::=
SEQUENCE {
rbridgeFdbId
Unsigned32,
rbridgeUniFdbAddr
MacAddress,
Rijhsinghani & Zebrose Standards Track [Page 23]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeUniFdbPort
Unsigned32,
rbridgeUniFdbNickname
RbridgeNickname,
rbridgeUniFdbConfidence
Unsigned32,
rbridgeUniFdbStatus
INTEGER
}
rbridgeFdbId OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The identity of this Filtering Database."
::= { rbridgeUniFdbEntry 1 }
rbridgeUniFdbAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unicast MAC address for which the device has
forwarding information."
::= { rbridgeUniFdbEntry 2 }
rbridgeUniFdbPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Either the value '0', or the RBridge port number of the
port on which a frame having a source address equal to the
value of the corresponding instance of rbridgeUniFdbAddr
has been seen. A value of '0' indicates that the port
number has not been learned but that the device does have
some information about this MAC address.
Implementors are encouraged to assign the port value to
this object whenever it is available, even for addresses
for which the corresponding value of rbridgeUniFdbStatus is
not learned(3)."
::= { rbridgeUniFdbEntry 3 }
rbridgeUniFdbNickname OBJECT-TYPE
SYNTAX RbridgeNickname
MAX-ACCESS read-only
Rijhsinghani & Zebrose Standards Track [Page 24]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
STATUS current
DESCRIPTION
"The RBridge nickname that is placed in the egress
nickname field of a TRILL frame sent to this
rbridgeFdbAddress in this rbridgeFdbId."
REFERENCE
"RFC 6325, Section 4.8.1"
::= { rbridgeUniFdbEntry 4 }
rbridgeUniFdbConfidence OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The confidence level associated with this entry."
REFERENCE
"RFC 6325, Section 4.8.1"
::= { rbridgeUniFdbEntry 5 }
rbridgeUniFdbStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
learned(3),
self(4),
mgmt(5),
esadi(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this entry. The meanings of the values
are:
other(1) - none of the following.
invalid(2) - this entry is no longer valid (e.g., it
was learned but has since aged out) but has not
yet been flushed from the table.
learned(3) - the information in this entry was learned
and is being used.
self(4) - the value of the corresponding instance of
rbridgeFdbAddress represents one of the device's
addresses. The corresponding instance of
rbridgeFdbPort indicates which of the device's
ports has this address.
Rijhsinghani & Zebrose Standards Track [Page 25]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
mgmt(5) - the value of the corresponding instance of
rbridgeFdbAddress was configured by management.
esadi(6) - the value of the corresponding instance of
rbridgeFdbAddress was learned from ESADI."
::= { rbridgeUniFdbEntry 6 }
-- -------------------------------------------------------------
-- RBridge Forwarding Information Base (FIB)
-- -------------------------------------------------------------
rbridgeUniFibTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeUniFibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about nicknames known by
the RBridge. If Equal-Cost Multipath (ECMP) is implemented,
there are as many entries for a nickname as there are ECMP
paths available for it."
::= { rbridgeFdb 5 }
rbridgeUniFibEntry OBJECT-TYPE
SYNTAX RbridgeUniFibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about nicknames known by the RBridge.
If ECMP is implemented, there are as many entries as there
are ECMP paths available for a given nickname."
INDEX { rbridgeUniFibNickname, rbridgeUniFibPort,
rbridgeUniFibNextHop }
::= { rbridgeUniFibTable 1 }
RbridgeUniFibEntry ::=
SEQUENCE {
rbridgeUniFibNickname
RbridgeNickname,
rbridgeUniFibPort
Unsigned32,
rbridgeUniFibNextHop
RbridgeNickname,
rbridgeUniFibHopCount
Unsigned32
}
rbridgeUniFibNickname OBJECT-TYPE
SYNTAX RbridgeNickname
MAX-ACCESS not-accessible
Rijhsinghani & Zebrose Standards Track [Page 26]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
STATUS current
DESCRIPTION
"An RBridge nickname for which this RBridge has
forwarding information."
::= { rbridgeUniFibEntry 1 }
rbridgeUniFibPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The RBridge port number of the port attached to the
next-hop RBridge for the path towards the RBridge whose
nickname is specified in this entry."
::= { rbridgeUniFibEntry 2 }
rbridgeUniFibNextHop OBJECT-TYPE
SYNTAX RbridgeNickname
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The nickname of the next-hop RBridge for the path
towards the RBridge whose nickname is specified in this
entry."
::= { rbridgeUniFibEntry 3 }
rbridgeUniFibHopCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hop count from this ingress RBridge to the egress
RBridge whose nickname is specified in
rbridgeUniFibNickname."
::= { rbridgeUniFibEntry 4 }
rbridgeMultiFibTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeMultiFibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about egress nicknames
used for multi-destination frame forwarding by this
RBridge."
::= { rbridgeFdb 6 }
Rijhsinghani & Zebrose Standards Track [Page 27]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeMultiFibEntry OBJECT-TYPE
SYNTAX RbridgeMultiFibEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about egress nicknames used for
multi-destination frame forwarding by this RBridge."
INDEX { rbridgeMultiFibNickname }
::= { rbridgeMultiFibTable 1 }
RbridgeMultiFibEntry ::=
SEQUENCE {
rbridgeMultiFibNickname
RbridgeNickname,
rbridgeMultiFibPorts
PortList
}
rbridgeMultiFibNickname OBJECT-TYPE
SYNTAX RbridgeNickname
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The nickname of the multicast distribution tree."
::= { rbridgeMultiFibEntry 1 }
rbridgeMultiFibPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The list of ports to which a frame destined to this
multicast distribution tree is flooded. This may be pruned
further based on other forwarding information."
::= { rbridgeMultiFibEntry 2 }
Rijhsinghani & Zebrose Standards Track [Page 28]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
-- ---------------------------------------------------------- --
-- The RBridge VLAN Table
-- ---------------------------------------------------------- --
rbridgeVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about VLANs on the
RBridge."
::= { rbridgeVlan 1 }
rbridgeVlanEntry OBJECT-TYPE
SYNTAX RbridgeVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about VLANs on the RBridge."
INDEX { rbridgeVlanIndex }
::= { rbridgeVlanTable 1 }
RbridgeVlanEntry ::=
SEQUENCE {
rbridgeVlanIndex
Unsigned32,
rbridgeVlanForwarderLosts
Counter32,
rbridgeVlanDisableLearning
TruthValue,
rbridgeVlanSnooping
INTEGER
}
rbridgeVlanIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..4094|4096..4294967295)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN-ID referring to this VLAN."
::= { rbridgeVlanEntry 1 }
rbridgeVlanForwarderLosts OBJECT-TYPE
SYNTAX Counter32
UNITS "times"
MAX-ACCESS read-only
STATUS current
Rijhsinghani & Zebrose Standards Track [Page 29]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
DESCRIPTION
"The number of times this RBridge has lost appointed
forwarder status for this VLAN on any of its ports.
Discontinuities in the value of this counter can occur
at re-initialization of the management system."
REFERENCE
"RFC 6325, Section 4.8.3"
::= { rbridgeVlanEntry 2 }
rbridgeVlanDisableLearning OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Disable learning of MAC addresses seen in this VLAN.
One application of this may be to restrict learning to
ESADI. To disable learning, the value of this object
should be set to 'true'. The default is 'false'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.8"
DEFVAL { false }
::= { rbridgeVlanEntry 3 }
rbridgeVlanSnooping OBJECT-TYPE
SYNTAX INTEGER {
notSupported(1),
ipv4(2),
ipv6(3),
ipv4v6(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP Multicast Snooping on this VLAN. For RBridges
performing both IPv4 and IPv6 IP Multicast Snooping, the
value returned is ipv4v6(4)."
REFERENCE
"RFC 6325, Section 4.7"
::= { rbridgeVlanEntry 4 }
Rijhsinghani & Zebrose Standards Track [Page 30]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
-- ---------------------------------------------------------- --
-- The RBridge VLAN Port Table
-- ---------------------------------------------------------- --
rbridgeVlanPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeVlanPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about VLANs on an RBridge
port."
::= { rbridgeVlan 2 }
rbridgeVlanPortEntry OBJECT-TYPE
SYNTAX RbridgeVlanPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of information about VLANs on the RBridge port."
INDEX { rbridgeBasePort, rbridgeVlanIndex }
::= { rbridgeVlanPortTable 1 }
RbridgeVlanPortEntry ::=
SEQUENCE {
rbridgeVlanPortInhibited
TruthValue,
rbridgeVlanPortForwarder
TruthValue,
rbridgeVlanPortAnnouncing
TruthValue,
rbridgeVlanPortDetectedVlanMapping
TruthValue
}
rbridgeVlanPortInhibited OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This VLAN has been inhibited by the RBridge due to
conflicting forwarder information received from another
RBridge, when the value of this object is 'true'."
REFERENCE
"RFC 6325, Section 4.2.4.3"
::= { rbridgeVlanPortEntry 1 }
rbridgeVlanPortForwarder OBJECT-TYPE
SYNTAX TruthValue
Rijhsinghani & Zebrose Standards Track [Page 31]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This RBridge is an appointed forwarder for this VLAN
on this port, when the value of this object is 'true'."
REFERENCE
"RFC 6325, Section 4.2.4.3"
::= { rbridgeVlanPortEntry 2 }
rbridgeVlanPortAnnouncing OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"TRILL-Hellos tagged with this VLAN can be sent by this
RBridge on this port, when the value of this object
is 'true'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.4.3"
DEFVAL { true }
::= { rbridgeVlanPortEntry 3 }
rbridgeVlanPortDetectedVlanMapping OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VLAN mapping has been detected on the link attached
to this port, when the value of this object is 'true'."
REFERENCE
"RFC 6325, Section 4.4.5"
::= { rbridgeVlanPortEntry 4 }
-- ---------------------------------------------------------- --
-- The RBridge Port Counter Table
--
-- These counters supplement counters in the Bridge MIB.
--
-- For example, total frames received by a bridge port and total
-- frames transmitted by a bridge port are reported in the
-- Port In Frames and Port Out Frames counters of the Bridge MIB.
-- These total bridge frame counters include native as well as
-- encapsulated frames.
--
Rijhsinghani & Zebrose Standards Track [Page 32]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
-- As another example, frames discarded due to excessive frame
-- size are reported in the port counter MTU Exceeded Discards
-- in the Bridge MIB.
-- ---------------------------------------------------------- --
rbridgePortCounterTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgePortCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains per-port counters for this RBridge."
::= { rbridgeCounter 1 }
rbridgePortCounterEntry OBJECT-TYPE
SYNTAX RbridgePortCounterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Counters for a port on this RBridge."
INDEX { rbridgeBasePort }
::= { rbridgePortCounterTable 1 }
RbridgePortCounterEntry ::=
SEQUENCE {
rbridgePortRpfCheckFails
Counter32,
rbridgePortHopCountExceeds
Counter32,
rbridgePortOptionDrops
Counter32,
rbridgePortTrillInFrames
Counter64,
rbridgePortTrillOutFrames
Counter64
}
rbridgePortRpfCheckFails OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a multi-destination frame was
dropped on this port because the Reverse Path Forwarding
(RPF) check failed.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
Rijhsinghani & Zebrose Standards Track [Page 33]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
other times as indicated by the value of the
ifCounterDiscontinuityTime object of the associated
interface."
REFERENCE
"RFC 6325, Section 4.5.2"
::= { rbridgePortCounterEntry 1 }
rbridgePortHopCountExceeds OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a frame was dropped on this port
because its hop count was zero.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
other times as indicated by the value of the
ifCounterDiscontinuityTime object of the associated
interface."
REFERENCE
"RFC 6325, Section 3.6"
::= { rbridgePortCounterEntry 2 }
rbridgePortOptionDrops OBJECT-TYPE
SYNTAX Counter32
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times a frame was dropped on this port
because it contained unsupported options.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
other times as indicated by the value of the
ifCounterDiscontinuityTime object of the associated
interface."
REFERENCE
"RFC 6325, Section 3.5"
::= { rbridgePortCounterEntry 3 }
rbridgePortTrillInFrames OBJECT-TYPE
SYNTAX Counter64
UNITS "frames"
MAX-ACCESS read-only
STATUS current
Rijhsinghani & Zebrose Standards Track [Page 34]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
DESCRIPTION
"The number of TRILL-encapsulated frames that have been
received by this port from its attached link, including
management frames.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
other times as indicated by the value of the
ifCounterDiscontinuityTime object of the associated
interface."
REFERENCE
"RFC 6325, Section 2.3"
::= { rbridgePortCounterEntry 4 }
rbridgePortTrillOutFrames OBJECT-TYPE
SYNTAX Counter64
UNITS "frames"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of TRILL-encapsulated frames that have been
transmitted by this port to its attached link, including
management frames.
Discontinuities in the value of this counter can occur
at re-initialization of the management system, and at
other times as indicated by the value of the
ifCounterDiscontinuityTime object of the associated
interface."
REFERENCE
"RFC 6325, Section 2.3"
::= { rbridgePortCounterEntry 5 }
-- ---------------------------------------------------------- --
-- The RBridge VLAN ESADI Table
-- ---------------------------------------------------------- --
rbridgeEsadiTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeEsadiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table that contains information about ESADI instances on
VLANs, if available."
REFERENCE
"RFC 6325, Section 4.2.5"
::= { rbridgeEsadi 1 }
Rijhsinghani & Zebrose Standards Track [Page 35]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeEsadiEntry OBJECT-TYPE
SYNTAX RbridgeEsadiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about an ESADI instance on a VLAN."
INDEX { rbridgeVlanIndex }
::= { rbridgeEsadiTable 1 }
RbridgeEsadiEntry ::=
SEQUENCE {
rbridgeEsadiEnable
TruthValue,
rbridgeEsadiConfidence
Unsigned32,
rbridgeEsadiDrbPriority
Unsigned32,
rbridgeEsadiDrb
RbridgeAddress,
rbridgeEsadiDrbHoldingTime
Unsigned32,
rbridgeEsadiRowStatus
RowStatus
}
rbridgeEsadiEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the RBridge is participating in an ESADI instance for
this VLAN, the value of this object is 'true'. To disable
participation, set it to 'false'.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.2.5"
DEFVAL { true }
::= { rbridgeEsadiEntry 1 }
rbridgeEsadiConfidence OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Confidence level of address entries sent by this
ESADI instance. The default is 16.
Rijhsinghani & Zebrose Standards Track [Page 36]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.2.5"
DEFVAL { 16 }
::= { rbridgeEsadiEntry 2 }
rbridgeEsadiDrbPriority OBJECT-TYPE
SYNTAX Unsigned32 (0..127)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The priority of this RBridge for being selected as the
DRB for this ESADI instance.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.2.5"
::= { rbridgeEsadiEntry 3 }
rbridgeEsadiDrb OBJECT-TYPE
SYNTAX RbridgeAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The DRB on this ESADI instance's virtual link."
REFERENCE
"RFC 6325, Section 4.2.5"
::= { rbridgeEsadiEntry 4 }
rbridgeEsadiDrbHoldingTime OBJECT-TYPE
SYNTAX Unsigned32 (0..127)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The holding time for this ESADI instance.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.2.5"
::= { rbridgeEsadiEntry 5 }
rbridgeEsadiRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
Rijhsinghani & Zebrose Standards Track [Page 37]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
DESCRIPTION
"This object indicates the status of the entry."
::= { rbridgeEsadiEntry 6 }
-- ---------------------------------------------------------- --
-- The RBridge IP Multicast Snooping Port Table
-- ---------------------------------------------------------- --
rbridgeSnoopingPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeSnoopingPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For RBridges implementing IP Multicast Snooping,
information about ports on which the presence of IPv4
or IPv6 multicast routers has been detected."
REFERENCE
"RFC 6325, Section 4.7"
::= { rbridgeSnooping 1 }
rbridgeSnoopingPortEntry OBJECT-TYPE
SYNTAX RbridgeSnoopingPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about ports on which the presence of IPv4
or IPv6 multicast routers has been detected for a
VLAN."
INDEX { rbridgeBasePort, rbridgeVlanIndex }
::= { rbridgeSnoopingPortTable 1 }
RbridgeSnoopingPortEntry ::=
SEQUENCE {
rbridgeSnoopingPortAddrType
INTEGER
}
rbridgeSnoopingPortAddrType OBJECT-TYPE
SYNTAX INTEGER {
ipv4(1),
ipv6(2),
ipv4v6(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address type of an IP multicast router detected
Rijhsinghani & Zebrose Standards Track [Page 38]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
on this port and VLAN. If only IPv4 router(s)
are detected, the value returned is 'ipv4'. If only
IPv6 routers are detected, the value returned is
'ipv6'. If both IPv4 and IPv6 routers are detected on
this port and VLAN, the value returned is 'ipv4v6'."
REFERENCE
"RFC 6325, Section 4.7"
::= { rbridgeSnoopingPortEntry 1 }
-- ---------------------------------------------------------- --
-- The RBridge IP Multicast Snooping Address Table
-- ---------------------------------------------------------- --
rbridgeSnoopingAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeSnoopingAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"For RBridges implementing IP Multicast Snooping,
information about IP multicast addresses being
snooped."
REFERENCE
"RFC 6325, Section 4.8"
::= { rbridgeSnooping 2 }
rbridgeSnoopingAddrEntry OBJECT-TYPE
SYNTAX RbridgeSnoopingAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about IP multicast addresses being
snooped."
INDEX { rbridgeVlanIndex, rbridgeSnoopingAddrType,
rbridgeSnoopingAddr }
::= { rbridgeSnoopingAddrTable 1 }
RbridgeSnoopingAddrEntry ::=
SEQUENCE {
rbridgeSnoopingAddrType
InetAddressType,
rbridgeSnoopingAddr
InetAddress,
rbridgeSnoopingAddrPorts
PortList
}
rbridgeSnoopingAddrType OBJECT-TYPE
SYNTAX InetAddressType
Rijhsinghani & Zebrose Standards Track [Page 39]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast address type for which a listener has been
detected by this RBridge. This MIB requires support for only
IPv4 and IPv6 address types."
REFERENCE
"RFC 6325, Section 4.7"
::= { rbridgeSnoopingAddrEntry 1 }
rbridgeSnoopingAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP multicast address for which a listener has been
detected by this RBridge. The address type of this object
is specified in rbridgeSnoopingAddrType. This MIB requires
support for only global IPv4 and IPv6 addresses, so the
length of the object can be either 4 or 16 bytes. Hence,
the index will not exceed the OID size limit."
REFERENCE
"RFC 6325, Section 4.7"
::= { rbridgeSnoopingAddrEntry 2 }
rbridgeSnoopingAddrPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The set of ports on which a listener has been detected
for this IP multicast address."
REFERENCE
"RFC 6325, Section 4.7"
::= { rbridgeSnoopingAddrEntry 3 }
-- ---------------------------------------------------------- --
-- Distribution Trees
-- ---------------------------------------------------------- --
rbridgeDtreePriority OBJECT-TYPE
SYNTAX Unsigned32 (1..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The distribution tree root priority for this RBridge.
Rijhsinghani & Zebrose Standards Track [Page 40]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
The default value of this object is 32768.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtree 1 }
rbridgeDtreeActiveTrees OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of trees being computed by all RBridges
in the campus."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtree 2 }
rbridgeDtreeMaxTrees OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of trees this RBridge can compute."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtree 3 }
rbridgeDtreeDesiredUseTrees OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of trees this RBridge would like to
use for transmission of ingress multi-destination frames."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtree 4 }
rbridgeDtreeTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeDtreeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about distribution trees being computed
by this RBridge."
Rijhsinghani & Zebrose Standards Track [Page 41]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtree 5 }
rbridgeDtreeEntry OBJECT-TYPE
SYNTAX RbridgeDtreeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of information about distribution trees being computed
by this RBridge."
INDEX { rbridgeDtreeNumber }
::= { rbridgeDtreeTable 1 }
RbridgeDtreeEntry ::=
SEQUENCE {
rbridgeDtreeNumber
Unsigned32,
rbridgeDtreeNickname
RbridgeNickname,
rbridgeDtreeIngress
TruthValue
}
rbridgeDtreeNumber OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The tree number of a distribution tree being computed by
this RBridge."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtreeEntry 1 }
rbridgeDtreeNickname OBJECT-TYPE
SYNTAX RbridgeNickname
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nickname of the distribution tree."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtreeEntry 2 }
rbridgeDtreeIngress OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
Rijhsinghani & Zebrose Standards Track [Page 42]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
STATUS current
DESCRIPTION
"Indicates whether this RBridge might choose this
distribution tree to ingress a multi-destination frame."
REFERENCE
"RFC 6325, Section 4.5"
::= { rbridgeDtreeEntry 3 }
-- ---------------------------------------------------------- --
-- TRILL Neighbor List
-- ---------------------------------------------------------- --
rbridgeTrillMinMtuDesired OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired minimum acceptable inter-RBridge link MTU for
the campus, that is, originatingLSPBufferSize.
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.3"
::= { rbridgeTrill 1 }
rbridgeTrillSz OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum acceptable inter-RBridge link size for the
campus for the proper operation of TRILL IS-IS."
REFERENCE
"RFC 6325, Section 4.3"
::= { rbridgeTrill 2 }
rbridgeTrillMaxMtuProbes OBJECT-TYPE
SYNTAX Unsigned32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of failed MTU-probes before the RBridge
concludes that a particular MTU is not supported by
a neighbor.
Rijhsinghani & Zebrose Standards Track [Page 43]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
The value of this object MUST be retained across
re-initializations of the management system."
REFERENCE
"RFC 6325, Section 4.3"
::= { rbridgeTrill 3 }
rbridgeTrillNbrTable OBJECT-TYPE
SYNTAX SEQUENCE OF RbridgeTrillNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about this RBridge's TRILL neighbors."
REFERENCE
"RFC 6325, Section 4.4.2.1"
::= { rbridgeTrill 4 }
rbridgeTrillNbrEntry OBJECT-TYPE
SYNTAX RbridgeTrillNbrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of information about this RBridge's TRILL neighbors."
INDEX { rbridgeTrillNbrMacAddr }
::= { rbridgeTrillNbrTable 1 }
RbridgeTrillNbrEntry ::=
SEQUENCE {
rbridgeTrillNbrMacAddr
MacAddress,
rbridgeTrillNbrMtu
Unsigned32,
rbridgeTrillNbrFailedMtuTest
TruthValue
}
rbridgeTrillNbrMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The MAC address of a neighbor of this RBridge."
REFERENCE
"RFC 6325, Section 4.4.2.1"
::= { rbridgeTrillNbrEntry 1 }
rbridgeTrillNbrMtu OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
Rijhsinghani & Zebrose Standards Track [Page 44]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
STATUS current
DESCRIPTION
"MTU size for this neighbor for IS-IS communication
purposes."
REFERENCE
"RFC 6325, Section 4.3.2"
::= { rbridgeTrillNbrEntry 2 }
rbridgeTrillNbrFailedMtuTest OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If true, indicates that the neighbor's tested MTU is less
than the minimum acceptable inter-bridge link MTU for the
campus (1470)."
REFERENCE
"RFC 6325, Section 4.3.1"
::= { rbridgeTrillNbrEntry 3 }
-- ---------------------------------------------------------- --
-- Notifications for use by RBridges
-- ---------------------------------------------------------- --
rbridgeBaseNewDrb NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"The rbridgeBaseNewDrb notification indicates that the
sending agent has become the new Designated RBridge; the
notification is sent by an RBridge soon after its election
as the new DRB root, e.g., upon expiration of the Topology
Change Timer, immediately subsequent to its election."
::= { rbridgeNotifications 1 }
rbridgeBaseTopologyChange NOTIFICATION-TYPE
-- OBJECTS { }
STATUS current
DESCRIPTION
"The rbridgeBaseTopologyChange notification is sent by an
RBridge when any of its configured ports transition to/from
the VLAN-x designated forwarder. The notification is not
sent if an rbridgeBaseNewDrb notification is sent for the
same transition."
::= { rbridgeNotifications 2 }
Rijhsinghani & Zebrose Standards Track [Page 45]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
-- Compliance and Group sections
rbridgeCompliances OBJECT IDENTIFIER ::= { rbridgeConformance 1 }
rbridgeGroup OBJECT IDENTIFIER ::= { rbridgeConformance 2 }
-- ---------------------------------------------------------- --
-- Units of Conformance
-- ---------------------------------------------------------- --
rbridgeBaseGroup OBJECT-GROUP
OBJECTS {
rbridgeBaseTrillVersion,
rbridgeBaseNumPorts,
rbridgeBaseForwardDelay,
rbridgeBaseUniMultipathEnable,
rbridgeBaseMultiMultipathEnable,
rbridgeBaseAcceptEncapNonadj,
rbridgeBaseNicknameNumber
}
STATUS current
DESCRIPTION
"A collection of objects providing basic control
and status information for the RBridge."
::= { rbridgeGroup 1 }
rbridgeBaseNicknameGroup OBJECT-GROUP
OBJECTS {
rbridgeBaseNicknamePriority,
rbridgeBaseNicknameDtrPriority,
rbridgeBaseNicknameType,
rbridgeBaseNicknameRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing basic control
and status information for RBridge nicknames."
::= { rbridgeGroup 2 }
rbridgeBasePortGroup OBJECT-GROUP
OBJECTS {
rbridgeBasePortIfIndex,
rbridgeBasePortDisable,
rbridgeBasePortTrunkPort,
rbridgeBasePortAccessPort,
rbridgeBasePortP2pHellos,
rbridgeBasePortState,
Rijhsinghani & Zebrose Standards Track [Page 46]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeBasePortDesiredDesigVlan,
rbridgeBasePortDesigVlan,
rbridgeBasePortInhibitionTime,
rbridgeBasePortDisableLearning,
rbridgeBasePortStpRoot,
rbridgeBasePortStpRootChanges,
rbridgeBasePortStpWiringCloset
}
STATUS current
DESCRIPTION
"A collection of objects providing basic control
and status information for RBridge ports."
::= { rbridgeGroup 3 }
rbridgeFdbGroup OBJECT-GROUP
OBJECTS {
rbridgeConfidenceNative,
rbridgeConfidenceDecap,
rbridgeConfidenceStatic,
rbridgeUniFdbPort,
rbridgeUniFdbNickname,
rbridgeUniFdbConfidence,
rbridgeUniFdbStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing information
about the Unicast Address Database."
::= { rbridgeGroup 4 }
rbridgeFibGroup OBJECT-GROUP
OBJECTS {
rbridgeUniFibHopCount,
rbridgeMultiFibPorts
}
STATUS current
DESCRIPTION
"A collection of objects providing information
about the Unicast and Multicast FIBs."
::= { rbridgeGroup 5 }
rbridgeVlanGroup OBJECT-GROUP
OBJECTS {
rbridgeVlanForwarderLosts,
rbridgeVlanDisableLearning,
rbridgeVlanSnooping,
rbridgeVlanPortInhibited,
rbridgeVlanPortForwarder,
Rijhsinghani & Zebrose Standards Track [Page 47]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeVlanPortAnnouncing,
rbridgeVlanPortDetectedVlanMapping
}
STATUS current
DESCRIPTION
"A collection of objects providing information
about VLANs on the RBridge."
::= { rbridgeGroup 6 }
rbridgePortCounterGroup OBJECT-GROUP
OBJECTS {
rbridgePortRpfCheckFails,
rbridgePortHopCountExceeds,
rbridgePortOptionDrops,
rbridgePortTrillInFrames,
rbridgePortTrillOutFrames
}
STATUS current
DESCRIPTION
"A collection of objects providing per-port
counters for the RBridge."
::= { rbridgeGroup 7 }
rbridgeEsadiGroup OBJECT-GROUP
OBJECTS {
rbridgeEsadiEnable,
rbridgeEsadiConfidence,
rbridgeEsadiDrbPriority,
rbridgeEsadiDrb,
rbridgeEsadiDrbHoldingTime,
rbridgeEsadiRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing information
about ESADI instances on the RBridge."
::= { rbridgeGroup 8 }
rbridgeSnoopingGroup OBJECT-GROUP
OBJECTS {
rbridgeSnoopingPortAddrType,
rbridgeSnoopingAddrPorts
}
STATUS current
DESCRIPTION
"A collection of objects providing information about
IP Multicast Snooping. This MIB requires support for
only global IPv4 and IPv6 address types in
Rijhsinghani & Zebrose Standards Track [Page 48]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
rbridgeSnoopingPortAddrType and rbridgeSnoopingAddrType,
so the length of rbridgeSnoopingAddr can be either 4 or
16 bytes."
::= { rbridgeGroup 9 }
rbridgeDtreeGroup OBJECT-GROUP
OBJECTS {
rbridgeDtreePriority,
rbridgeDtreeActiveTrees,
rbridgeDtreeMaxTrees,
rbridgeDtreeDesiredUseTrees,
rbridgeDtreeNickname,
rbridgeDtreeIngress
}
STATUS current
DESCRIPTION
"A collection of objects providing information
about distribution trees."
::= { rbridgeGroup 10 }
rbridgeTrillGroup OBJECT-GROUP
OBJECTS {
rbridgeTrillMinMtuDesired,
rbridgeTrillSz,
rbridgeTrillMaxMtuProbes,
rbridgeTrillNbrMtu,
rbridgeTrillNbrFailedMtuTest
}
STATUS current
DESCRIPTION
"A collection of objects providing information
about TRILL neighbors."
::= { rbridgeGroup 11 }
rbridgeNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
rbridgeBaseNewDrb,
rbridgeBaseTopologyChange
}
STATUS current
DESCRIPTION
"A collection of objects describing notifications (traps)."
::= { rbridgeGroup 12 }
Rijhsinghani & Zebrose Standards Track [Page 49]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
-- ---------------------------------------------------------- --
-- Compliance Statement
-- ---------------------------------------------------------- --
rbridgeCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for support of RBridge
services."
MODULE
MANDATORY-GROUPS {
rbridgeBaseGroup,
rbridgeBaseNicknameGroup,
rbridgeBasePortGroup,
rbridgeFdbGroup,
rbridgeFibGroup,
rbridgeVlanGroup,
rbridgeDtreeGroup,
rbridgeTrillGroup,
rbridgeNotificationGroup
}
GROUP rbridgePortCounterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP rbridgeEsadiGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP rbridgeSnoopingGroup
DESCRIPTION
"Implementation of this group is optional."
::= { rbridgeCompliances 1 }
rbridgeReadOnlyCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"When this MIB is implemented in read-only mode, then
the implementation can claim read-only compliance.
In that case, RBridge objects can be monitored but
cannot be configured with this implementation."
Rijhsinghani & Zebrose Standards Track [Page 50]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
MODULE
MANDATORY-GROUPS {
rbridgeBaseGroup,
rbridgeBaseNicknameGroup,
rbridgeBasePortGroup,
rbridgeFdbGroup,
rbridgeFibGroup,
rbridgeVlanGroup,
rbridgeDtreeGroup,
rbridgeTrillGroup,
rbridgeNotificationGroup
}
OBJECT rbridgeBaseForwardDelay
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBaseUniMultipathEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBaseMultiMultipathEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBaseAcceptEncapNonadj
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBaseNicknameNumber
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBaseNicknamePriority
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBaseNicknameDtrPriority
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
Rijhsinghani & Zebrose Standards Track [Page 51]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
OBJECT rbridgeBaseNicknameRowStatus
SYNTAX INTEGER { active(1) }
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required, and 'active' is the only
status that needs to be supported."
OBJECT rbridgeBasePortDisable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortTrunkPort
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortAccessPort
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortP2pHellos
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortInhibitionTime
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortDisableLearning
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortDesiredDesigVlan
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeBasePortStpWiringCloset
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
Rijhsinghani & Zebrose Standards Track [Page 52]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
OBJECT rbridgeConfidenceNative
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeConfidenceDecap
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeConfidenceStatic
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeVlanDisableLearning
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeVlanPortAnnouncing
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeEsadiEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeEsadiConfidence
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeEsadiDrbPriority
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeEsadiDrbHoldingTime
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeEsadiRowStatus
SYNTAX INTEGER { active(1) }
MIN-ACCESS read-only
Rijhsinghani & Zebrose Standards Track [Page 53]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
DESCRIPTION
"Write access is not required, and 'active' is the only
status that needs to be supported."
OBJECT rbridgeDtreePriority
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeTrillMinMtuDesired
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT rbridgeTrillMaxMtuProbes
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
GROUP rbridgePortCounterGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP rbridgeEsadiGroup
DESCRIPTION
"Implementation of this group is optional."
GROUP rbridgeSnoopingGroup
DESCRIPTION
"Implementation of this group is optional."
::= { rbridgeCompliances 2 }
END
Rijhsinghani & Zebrose Standards Track [Page 54]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
8. Security Considerations
This MIB relates to a system that will provide network connectivity
and packet-forwarding services. As such, improper manipulation of
the objects represented by this MIB may result in denial of service
to a large number of end-users.
There are a number of management objects defined in this MIB module
with a MAX-ACCESS clause of read-write and/or read-create. Such
objects may be considered sensitive or vulnerable in some network
environments. The support for SET operations in a non-secure
environment without proper protection can have a negative effect on
network operations. These are the tables and objects and their
sensitivity/vulnerability:
The following tables and objects in the RBRIDGE-MIB can be
manipulated to interfere with the operation of RBridges:
o rbridgeBaseUniMultipathEnable affects the ability of the RBridge
to route unicast traffic over multiple paths, and
rbridgeBaseMultiMultipathEnable affects the ability of the RBridge
to route multi-destination traffic over multiple paths.
o rbridgeBasePortTable contains a number of objects that may affect
network connectivity. Actions that may be triggered by
manipulating objects in this table include disabling of an RBridge
port, discarding of native packets, disabling learning, and
others.
o rbridgeEsadiTable contains objects that affect the operation of
the ESADI protocol used for learning, and manipulation of the
objects contained therein can be used to confuse the learning
ability of RBridges.
o rbridgeDtreePriority can affect computation of distribution trees
within an RBridge campus, thereby affecting the forwarding of
multi-destination traffic.
o rbridgeTrillMinMtuDesired can affect the size of packets being
used to exchange information between RBridges.
Some of the readable objects in this MIB module (i.e., objects with a
MAX-ACCESS other than not-accessible) may be considered sensitive or
vulnerable in some network environments. It is thus important to
control even GET and/or NOTIFY access to these objects and possibly
to even encrypt the values of these objects when sending them over
Rijhsinghani & Zebrose Standards Track [Page 55]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
the network via SNMP. For example, access to network topology and
RBridge attributes can reveal information that should not be
available to all users of the network.
SNMP versions prior to SNMPv3 did not include adequate security.
Even if the network itself is secure (for example by using IPsec),
there is no control as to who on the secure network is allowed to
access and GET/SET (read/change/create/delete) the objects in this
MIB module.
Implementations SHOULD provide the security features described by the
SNMPv3 framework (see [RFC3410]), and implementations claiming
compliance to the SNMPv3 standard MUST include full support for
authentication and privacy via the User-based Security Model (USM)
[RFC3414] with the AES cipher algorithm [RFC3826]. Implementations
MAY also provide support for the Transport Security Model (TSM)
[RFC5591] in combination with a secure transport such as SSH
[RFC5592] or TLS/DTLS [RFC6353].
Further, deployment of SNMP versions prior to SNMPv3 is NOT
RECOMMENDED. Instead, it is RECOMMENDED to deploy SNMPv3 and to
enable cryptographic security. It is then a customer/operator
responsibility to ensure that the SNMP entity giving access to an
instance of this MIB module is properly configured to give access to
the objects only to those principals (users) that have legitimate
rights to indeed GET or SET (change/create/delete) them.
For other RBridge security considerations, see [RFC6325].
9. IANA Considerations
The MIB module in this document uses the following IANA-assigned
OBJECT IDENTIFIER value recorded in the SMI Numbers registry:
Descriptor OBJECT IDENTIFIER value
---------- -----------------------
rbridgeMIB { mib-2 214 }
10. Contributors
The authors would like to acknowledge the contributions of Donald
Eastlake, Radia Perlman, Anoop Ghanwani, Dan Romascanu, Mahesh Akula,
Sue Hares, and Joan Cucchiara.
Rijhsinghani & Zebrose Standards Track [Page 56]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
11. References
11.1. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
[RFC2578] McCloghrie, K., Ed., Perkins, D., Ed., and J.
Schoenwaelder, Ed., "Structure of Management Information
Version 2 (SMIv2)", STD 58, RFC 2578, April 1999.
[RFC2579] McCloghrie, K., Ed., Perkins, D., Ed., and J.
Schoenwaelder, Ed., "Textual Conventions for SMIv2",
STD 58, RFC 2579, April 1999.
[RFC2580] McCloghrie, K., Ed., Perkins, D., Ed., and J.
Schoenwaelder, Ed., "Conformance Statements for SMIv2",
STD 58, RFC 2580, April 1999.
[RFC2863] McCloghrie, K. and F. Kastenholz, "The Interfaces Group
MIB", RFC 2863, June 2000.
[RFC3414] Blumenthal, U. and B. Wijnen, "User-based Security Model
(USM) for version 3 of the Simple Network Management
Protocol (SNMPv3)", STD 62, RFC 3414, December 2002.
[RFC3826] Blumenthal, U., Maino, F., and K. McCloghrie, "The
Advanced Encryption Standard (AES) Cipher Algorithm in
the SNMP User-based Security Model", RFC 3826, June 2004.
[RFC4001] Daniele, M., Haberman, B., Routhier, S., and J.
Schoenwaelder, "Textual Conventions for Internet Network
Addresses", RFC 4001, February 2005.
[RFC4188] Norseth, K., Ed., and E. Bell, Ed., "Definitions of
Managed Objects for Bridges", RFC 4188, September 2005.
[RFC4363] Levi, D. and D. Harrington, "Definitions of Managed
Objects for Bridges with Traffic Classes, Multicast
Filtering, and Virtual LAN Extensions", RFC 4363,
January 2006.
[RFC4444] Parker, J., Ed., "Management Information Base for
Intermediate System to Intermediate System (IS-IS)",
RFC 4444, April 2006.
Rijhsinghani & Zebrose Standards Track [Page 57]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
[RFC5591] Harrington, D. and W. Hardaker, "Transport Security Model
for the Simple Network Management Protocol (SNMP)",
RFC 5591, June 2009.
[RFC5592] Harrington, D., Salowey, J., and W. Hardaker, "Secure
Shell Transport Model for the Simple Network Management
Protocol (SNMP)", RFC 5592, June 2009.
[RFC6325] Perlman, R., Eastlake 3rd, D., Dutt, D., Gai, S., and A.
Ghanwani, "Routing Bridges (RBridges): Base Protocol
Specification", RFC 6325, July 2011.
[RFC6353] Hardaker, W., "Transport Layer Security (TLS) Transport
Model for the Simple Network Management Protocol (SNMP)",
RFC 6353, July 2011.
11.2. Informative References
[RFC3410] Case, J., Mundy, R., Partain, D., and B. Stewart,
"Introduction and Applicability Statements for Internet-
Standard Management Framework", RFC 3410, December 2002.
[RFC4663] Harrington, D., "Transferring MIB Work from IETF Bridge
MIB WG to IEEE 802.1 WG", RFC 4663, September 2006.
[RFC5556] Touch, J. and R. Perlman, "Transparent Interconnection of
Lots of Links (TRILL): Problem and Applicability
Statement", RFC 5556, May 2009.
Rijhsinghani & Zebrose Standards Track [Page 58]
^L
RFC 6850 RBridges: TRILL Base MIB January 2013
Authors' Addresses
Anil Rijhsinghani
Hewlett-Packard
153 Taylor St.
Littleton, MA
USA
Phone: +1 508 323 1251
EMail: anil@charter.net
Kate Zebrose
HW Embedded
26 Josephine Ave.
Somerville, MA
USA
Phone: +1 617 840 9673
EMail: zebrose@alum.mit.edu
Rijhsinghani & Zebrose Standards Track [Page 59]
^L
|