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
|
Internet Engineering Task Force (IETF) E. Beili
Request for Comments: 6766 Actelis Networks
Category: Standards Track February 2013
ISSN: 2070-1721
xDSL Multi-Pair Bonding
Using Time-Division Inverse Multiplexing (G.Bond/TDIM) MIB
Abstract
This document defines a Management Information Base (MIB) module for
use with network management protocols in TCP/IP-based internets.
This document proposes an extension to the GBOND-MIB module with a
set of objects for managing multi-pair bonded xDSL interfaces using
Time-Division Inverse Multiplexing (TDIM), as defined in ITU-T
Recommendation G.998.3.
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/rfc6766.
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.
Beili Standards Track [Page 1]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Table of Contents
1. Introduction ....................................................2
2. The Internet-Standard Management Framework ......................3
3. The Broadband Forum Management Framework for xDSL Bonding .......3
4. Relationship to Other MIB Modules ...............................3
4.1. Relationship to the Interfaces Group MIB Module ............3
4.2. Relationship to the G.Bond MIB Module ......................3
5. MIB Structure ...................................................4
5.1. Overview ...................................................4
5.2. Link Protection Configuration ..............................4
5.3. Service Configuration ......................................5
5.3.1. Management of TDM Services and Service Drop
Priority during Bandwidth Degradation ...............6
5.3.2. Service Notifications ...............................6
5.4. Performance Monitoring .....................................7
5.5. Mapping of Broadband Forum TR-159 and ITU-T G.998.3
Managed Objects ............................................7
6. G.Bond/TDIM MIB Definitions ....................................10
7. Security Considerations ........................................51
8. IANA Considerations ............................................53
9. Acknowledgments ................................................53
10. References ....................................................53
10.1. Normative References .....................................53
10.2. Informative References ...................................54
1. Introduction
Multi-pair bonding using Time-Division Inverse Multiplexing (TDIM),
a.k.a. G.Bond/TDIM, is specified in ITU-T Recommendation G.998.3
[G.998.3], which defines a method for bonding (or aggregating)
multiple xDSL lines (or individual bearer channels in multiple xDSL
lines) into a single bidirectional logical link carrying a mix of
various traffic streams, e.g., Ethernet, Asynchronous Transfer Mode
(ATM), Time-Division Multiplexing (TDM).
The MIB module defined in this document provides G.Bond/TDIM-specific
objects for the management of G.998.3 bonded interfaces, extending
the common bonding objects specified in the GBOND-MIB [RFC6765]
module.
Beili Standards Track [Page 2]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
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].
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
BCP 14, RFC 2119 [RFC2119].
3. The Broadband Forum Management Framework for xDSL Bonding
This document makes use of the Broadband Forum technical report
"Management Framework for xDSL Bonding" [TR-159], defining a
management model and a hierarchy of management objects for the bonded
xDSL interfaces.
4. Relationship to Other MIB Modules
This section outlines the relationship of the MIB modules defined in
this document with other MIB modules described in the relevant RFCs.
Specifically, the following MIB modules are discussed: the Interfaces
Group MIB (IF-MIB) and the G.Bond MIB (GBOND-MIB).
4.1. Relationship to the Interfaces Group MIB Module
A G.Bond/TDIM port is a private case of a bonded multi-pair xDSL
interface and as such is managed using generic interface management
objects defined in the IF-MIB [RFC2863]. In particular, an interface
index (ifIndex) is used to index instances of G.Bond/TDIM ports, as
well as xDSL lines/channels, in a managed system.
4.2. Relationship to the G.Bond MIB Module
The GBOND-MIB module [RFC6765] defines management objects common for
all bonded multi-pair xDSL interfaces. In particular, it describes
the bonding management, bonded port and channel configuration,
initialization sequence, etc.
Beili Standards Track [Page 3]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Both the GBOND-MIB and G9983-MIB modules are REQUIRED to manage a
G.Bond/TDIM port.
5. MIB Structure
5.1. Overview
All management objects defined in the G9983-MIB module are contained
in a single group g9983Port. This group is further split into 6
sub-groups, structured as recommended by RFC 4181 [RFC4181]:
o g9983PortNotifications - containing notifications (TDIM Service
'down'/'up').
o g9983PortConfTable - containing objects for configuration of a
G.Bond/TDIM port.
o g9983PortCapTable - containing objects reflecting capabilities of
a G.Bond/TDIM port.
o g9983PortStatTable - containing objects providing overall status
information of a G.Bond/TDIM port, complementing the generic
status information from the ifTable of the IF-MIB and the
gBondPortStatFltStatus of GBOND-MIB.
o g9983SvcTable - containing objects for configuration and status of
the services in a G.Bond/TDIM port.
o g9983PM - containing objects for OPTIONAL historical Performance
Monitoring (PM) of a G.Bond/TDIM port.
5.2. Link Protection Configuration
The G.Bond/TDIM specification allows an optional Forward Error
Correction (FEC) and Interleaver block, which if supported and
enabled provides a degree of protection against micro-interruptions,
alien noise, and even individual Bonding Channel Entity (BCE)
failures, a.k.a. cut-line protection.
Management objects in the g9983PortConfTable can be used to configure
and query the FEC and Interleaver function of the G.Bond/TDIM port.
Beili Standards Track [Page 4]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
5.3. Service Configuration
Unlike the other two xDSL Multi-Pair Bonding schemes (G.Bond/ATM and
G.Bond/Ethernet), which send the information required for reassembly
of the fragmented data along with the data, G.Bond/TDIM is a
synchronous scheme, requiring both ends to know the data distribution
tables before any actual data transfer can happen.
Management objects in the g9983PortConfTable
(g9983PortConfAdminServices), g9983SvcTable, and g9983OperSvcTable
can be used to configure and query the configuration of services
transported via the G.Bond/TDIM link. The services may be configured
independently of the link state (i.e., in-service and out-of-
service), as G.998.3 communicates changes in the service
configuration via specific Bonding Communication Channel (BCC)
messages, switching both ends of the link to the new configuration
synchronously.
There can be up to 60 active services defined on a G.Bond/TDIM link.
This MIB module provides an ability to define up to 255 services via
the g9983SvcTable, with each row representing a possible service, and
then set the actual service configuration using the
g9983PortConfAdminServices object (a byte-vector of service indices),
listing the active services in the order of their position in the
G.Bond/TDIM frame. This design allows one to easily modify service
drop priority, which directly corresponds to the service position.
The actual list of services is provided via the read-only
g9983OperSvcTable, where each entry's index corresponds to the
service position, starting from index 1 for the first entry, 2 for
the second entry, etc., providing an easy service navigation for a
management application using GET-NEXT (instead of counting bytes in
the g9983PortConfAdminServices object).
The service configuration can only be changed on a Bonding
Terminating Unit at the Central Office (BTU-C).
When configuring the services, please bear in mind that the sum of
all the services' bandwidth SHOULD be less than or equal to the
target data rate of the bonded link. Note that G.Bond/TDIM links are
symmetrical; i.e., their upstream data rate equals the downstream
data rate.
Beili Standards Track [Page 5]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
5.3.1. Management of TDM Services and Service Drop Priority during
Bandwidth Degradation
The G.Bond/TDIM protocol provides an ability to map TDM services into
the TDIM bonded link directly, without any additional overhead. It
addresses only structure-agnostic TDM transport, disregarding any
structure that may be imposed on these streams, in particular, the
structure imposed by the standard TDM framing [G.704].
During bandwidth degradation, services with a lower priority are
impaired or dropped first. Synchronous services (fractional DS1/E1,
clear channel E1/T1, T3/E3, clock) that are positioned in the
beginning of the G.Bond/TDIM frame have higher priority than
asynchronous services (Ethernet, ATM, Generic Framing Procedure (GFP)
encapsulated) that are positioned farther away. Within the services
of the same type, those with a lower position (index) have higher
priority.
5.3.2. Service Notifications
This MIB module provides specific 'up'/'down' notifications
(g9983SvcUp/g9983SvcDown) for each of the configured services.
During bandwidth degradation, a number of services may be suspended
(dropped) simultaneously, according to their drop priority (position
in the service list). Please note that it is possible for a higher-
priority service to be dropped before a lower-priority one. For
example, suppose there are two services configured on a 2-Mbps
G.Bond/TDIM link: a T1 service (g9983SvcType with a value of ds1,
with a bandwidth requirement of 1.5 Mbps), and an Ethernet service
with a size of 0.5 Mbps. When the actual link bandwidth is reduced
to 1.4 Mbps, the T1 service with a g9983OperSvcPosition value of 1
would be dropped, while the Ethernet service with a
g9983OperSvcPosition value of 2 would remain up.
Notifications SHOULD be rate-limited (throttled) such that there is
an implementation-specific gap between the generation of consecutive
notifications of the same event. This mechanism prevents
"notification flooding" in cases where g9983OperSvcState oscillates
between the 'up' and 'down' states. When notifications are rate-
limited, they are dropped and not queued for sending at a future
time. This is intended to be a general rate-limiting statement for
notifications that otherwise have no explicit rate-limiting
assertions in this document.
Beili Standards Track [Page 6]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
5.4. Performance Monitoring
The OPTIONAL Performance Monitoring counters, thresholds, and history
buckets (interval-counters), similar to those defined in [TR-159],
are implemented using the textual conventions defined in the
HC-PerfHist-TC-MIB [RFC3705]. The HC-PerfHist-TC-MIB defines 64-bit
versions of the textual conventions found in the PerfHist-TC-MIB
[RFC3593].
The agent SHOULD align the beginning of each interval to a fifteen-
minute boundary of a wall clock. Likewise, the beginning of each
one-day interval SHOULD be aligned with the start of a day.
Counters are not reset when a G.Bond TDIM port is re-initialized, but
rather only when the agent is reset or re-initialized.
Note that the accumulation of certain performance events for a
monitored entity is inhibited (counting stops) during periods of
service unavailability on that entity. The DESCRIPTION clause of
Performance Monitoring counters in this MIB module specifies which of
the counters are inhibited during periods of service unavailability.
5.5. Mapping of Broadband Forum TR-159 and ITU-T G.998.3 Managed
Objects
This section contains the mapping between relevant managed objects
(attributes) defined in [TR-159] and the managed objects defined in
this document. Note that all management objects defined in [G.998.3]
have corresponding objects in [TR-159].
+------------------------------+---------------------------------------+
| TR-159 Managed Object | Corresponding SNMP Object |
+------------------------------+---------------------------------------+
| oBondTDIM - Basic Package | |
| (Mandatory) | |
+------------------------------+---------------------------------------+
| aCRC4Errors | g9983PortStatCrc4Errors |
+------------------------------+---------------------------------------+
| aCRC6Errors | g9983PortStatCrc6Errors |
+------------------------------+---------------------------------------+
| aCRC8Errors | g9983PortStatCrc8Errors |
+------------------------------+---------------------------------------+
| aFECSupported | g9983PortCapFecSupported |
+------------------------------+---------------------------------------+
Beili Standards Track [Page 7]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
+------------------------------+---------------------------------------+
| oBondTDIM - FEC Package | |
| (Optional) | |
+------------------------------+---------------------------------------+
| aFECAdminState | g9983PortConfFecAdminState |
+------------------------------+---------------------------------------+
| aFECOperState | g9983PortStatFecOperState |
+------------------------------+---------------------------------------+
| aFECWordSize | g9983PortConfFecWordSize |
+------------------------------+---------------------------------------+
| aFECRedundancySize | g9983PortConfFecRedundancySize |
+------------------------------+---------------------------------------+
| aFECInterleaverType | g9983PortConfFecInterleaverType |
+------------------------------+---------------------------------------+
| aFECInterleaverDepth | g9983PortConfFecInterleaverDepth |
+------------------------------+---------------------------------------+
| aFECMaxWordSize | g9983PortCapFecMaxWordSize |
+------------------------------+---------------------------------------+
| aFECMaxRedundancySize | g9983PortCapFecMaxRedundancySize |
+------------------------------+---------------------------------------+
| aFECInterleaverTypesSupported|g9983PortCapFecInterleaverTypeSupported|
+------------------------------+---------------------------------------+
| aFECMaxInterleaverDepth | g9983PortCapFecMaxInterleaverDepth |
+------------------------------+---------------------------------------+
| oTDIMService - Basic | |
| Package (Mandatory) | |
+------------------------------+---------------------------------------+
| aServiceID | g9983OperSvcPosition |
+------------------------------+---------------------------------------+
| aServiceIfIdx | g9983SvcIfIdx |
+------------------------------+---------------------------------------+
| aServiceType | g9983SvcType |
+------------------------------+---------------------------------------+
| aServiceSize | g9983SvcSize |
+------------------------------+---------------------------------------+
| aServiceOperState | g9983OperSvcState |
+------------------------------+---------------------------------------+
| aServiceUpDownEnable | g9983PortConfSvcUpDownEnable |
+------------------------------+---------------------------------------+
| nServiceUp | g9983SvcUp |
+------------------------------+---------------------------------------+
| nServiceDown | g9983SvcDown |
+------------------------------+---------------------------------------+
Table 1: Mapping of TR-159 Managed Objects
Beili Standards Track [Page 8]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Note that some of the mapping between the objects defined in TR-159
and the ones defined in this MIB module is not one-to-one; for
example, while TR-159 PM attributes aGroupPerf* map to the
corresponding gBondPortPm* objects of the GBOND-MIB module, there are
no dedicated PM attributes for the g9983PortPm* and g9983SvcPm*
objects introduced in this MIB module. However, since their
definition is identical to the definition of gBondPortPm* objects of
the GBOND-MIB module, we can map g9983PortPm* and g9983SvcPm* to the
relevant aGroupPerf* attributes of TR-159 and use the term 'partial
mapping' to denote the fact that this mapping is not one-to-one.
Beili Standards Track [Page 9]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
6. G.Bond/TDIM MIB Definitions
The G9983-MIB module IMPORTS objects from SNMPv2-SMI [RFC2578],
SNMPv2-TC [RFC2579], SNMPv2-CONF [RFC2580], IF-MIB [RFC2863], and
HC-PerfHist-TC-MIB [RFC3705]. The module has been structured as
recommended by [RFC4181].
G9983-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
mib-2,
Unsigned32,
Counter32
FROM SNMPv2-SMI -- RFC 2578
TEXTUAL-CONVENTION,
RowStatus,
TruthValue
FROM SNMPv2-TC -- RFC 2579
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP
FROM SNMPv2-CONF -- RFC 2580
ifIndex,
InterfaceIndex
FROM IF-MIB -- RFC 2863
HCPerfCurrentCount,
HCPerfIntervalCount,
HCPerfValidIntervals,
HCPerfInvalidIntervals,
HCPerfTimeElapsed
FROM HC-PerfHist-TC-MIB -- RFC 3705
;
------------------------------------------------------------------------
g9983MIB MODULE-IDENTITY
LAST-UPDATED "201302200000Z" -- 20 February 2013
ORGANIZATION "IETF ADSL MIB Working Group"
CONTACT-INFO
"WG charter:
http://datatracker.ietf.org/wg/adslmib/charter/
Mailing Lists:
General Discussion: adslmib@ietf.org
To Subscribe: adslmib-request@ietf.org
In Body: subscribe your_email_address
Beili Standards Track [Page 10]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Chair: Menachem Dodge
Postal: ECI Telecom, Ltd.
30 Hasivim St.
Petach-Tikva 4951169
Israel
Phone: +972-3-926-8421
EMail: menachemdodge1@gmail.com
Editor: Edward Beili
Postal: Actelis Networks, Inc.
25 Bazel St., P.O.B. 10173
Petach-Tikva 49103
Israel
Phone: +972-3-924-3491
EMail: edward.beili@actelis.com"
DESCRIPTION
"The objects in this MIB module are used to manage the
multi-pair bonded xDSL interfaces using time-division inverse
multiplexing (TDIM), as defined in ITU-T Recommendation G.998.3
(G.Bond/TDIM).
This MIB module MUST be used in conjunction with the GBOND-MIB
module, common to all G.Bond technologies.
The following references are used throughout this MIB module:
[G.998.3] refers to:
ITU-T Recommendation G.998.3: 'Multi-pair bonding using
time-division inverse multiplexing', January 2005.
[TR-159] refers to:
Broadband Forum Technical Report: 'Management Framework for
xDSL Bonding', December 2008.
Naming Conventions:
BCE - Bonding Channel Entity
BTU - Bonding Terminating Unit
BTU-C - Bonding Terminating Unit, CO side
BTU-R - Bonding Terminating Unit, Remote Terminal (CPE) side
CO - Central Office
CPE - Customer Premises Equipment
GBS - Generic Bonding Sub-layer
GBS-C - Generic Bonding Sub-layer, CO side
GBS-R - Generic Bonding Sub-layer, Remote Terminal (CPE) side
SNR - Signal to Noise Ratio
Beili Standards Track [Page 11]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
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)."
REVISION "201302200000Z" -- 20 February 2013
DESCRIPTION "Initial version, published as RFC 6766."
::= { mib-2 210 }
-- Sections of the module
-- Structured as recommended by RFC 4181, Appendix D
g9983Objects OBJECT IDENTIFIER ::= { g9983MIB 1 }
g9983Conformance OBJECT IDENTIFIER ::= { g9983MIB 2 }
-- Groups in the module
g9983Port OBJECT IDENTIFIER ::= { g9983Objects 1 }
-- Textual Conventions
G9983SvcIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each service defined
in the managed G.Bond/TDIM port.
It is RECOMMENDED that values be assigned contiguously
starting from 1. The value for each service MUST remain
constant at least from one re-initialization of the local
management subsystem to the next re-initialization."
SYNTAX Unsigned32 (1..255)
G9983SvcIndexList ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1d:"
STATUS current
DESCRIPTION
"This textual convention represents a continuous ordered list of
all the services defined for the managed G.Bond/TDIM port.
The value of this object is a concatenation of zero or more (up
to 60) octets, where each octet contains an 8-bit
G9983SvcIndex value, identifying a particular service.
Beili Standards Track [Page 12]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
An octet's position reflects the associated service position
and its priority in the G.Bond/TDIM frame, with the first octet
being the first service of highest priority.
A zero-length octet string is object-specific and MUST
therefore be defined as part of the description of any object
that uses this syntax. Examples of the usage of a zero-length
value might include situations where an object using this
textual convention is irrelevant for a specific G.Bond/TDIM port
type or where no services have been defined for this port."
SYNTAX OCTET STRING (SIZE (0..60))
G9983SvcOrderIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each service defined
in the managed G.Bond/TDIM port, showing its relative position
inside the G.Bond/TDIM frame."
SYNTAX Unsigned32 (1..60)
-- Port Notifications group
g9983PortNotifications OBJECT IDENTIFIER
::= { g9983Port 0 }
g9983SvcUp NOTIFICATION-TYPE
OBJECTS {
-- ifIndex and g9983OperSvcPosition would be part of the trap OID
g9983OperSvcIdx,
g9983SvcIfIdx
}
STATUS current
DESCRIPTION
"This notification indicates that a service, indicated by the
g9983OperSvcIdx (mapped to a particular interface
indicated by the g9983SvcIfIdx), in a particular
G.Bond/TDIM port is passing traffic.
This notification is generated (unless disabled or dropped by
the rate-limiting mechanism) when the g9983OperSvcState
object has left the 'down' state, while the G.Bond/TDIM port
state (the ifOperStatus of the IF-MIB) is 'up'.
Generation of this notification is controlled by the
g9983PortConfSvcUpDownEnable object.
This object maps to the TR-159 notification nServiceUp."
Beili Standards Track [Page 13]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
REFERENCE
"[TR-159], Section 5.5.5.7"
::= { g9983PortNotifications 1 }
g9983SvcDown NOTIFICATION-TYPE
OBJECTS {
-- ifIndex and g9983OperSvcPosition would be part of the trap OID
g9983OperSvcIdx,
g9983SvcIfIdx
}
STATUS current
DESCRIPTION
"This notification indicates that a service indicated by the
g9983OperSvcIdx (mapped to a particular interface
indicated by the g9983SvcIfIdx) in a particular
G.Bond/TDIM port has stopped passing traffic.
This notification is generated (unless disabled or dropped by
the rate-limiting mechanism), when the g9983OperSvcState
object has entered the 'down' state, while the G.Bond/TDIM port
state (the ifOperStatus of the IF-MIB) is 'up'.
Generation of this notification is controlled by the
g9983PortConfSvcUpDownEnable object.
This object maps to the TR-159 notification nServiceDown."
REFERENCE
"[TR-159], Section 5.5.5.8"
::= { g9983PortNotifications 2 }
-- G.Bond/TDIM Port group
g9983PortConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983PortConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for configuration of G.Bond/TDIM ports. Entries in
this table MUST be maintained in a persistent manner."
::= { g9983Port 1 }
g9983PortConfEntry OBJECT-TYPE
SYNTAX G9983PortConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port Configuration table.
Each entry represents a G.Bond/TDIM port indexed by the
Beili Standards Track [Page 14]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
ifIndex. Additional configuration parameters are available
via the gBondPortConfEntry of the GBOND-MIB.
Note that a G.Bond/TDIM port runs on top of a single or
multiple BCE port(s), which are also indexed by the ifIndex."
INDEX { ifIndex }
::= { g9983PortConfTable 1 }
G9983PortConfEntry ::=
SEQUENCE {
g9983PortConfFecAdminState TruthValue,
g9983PortConfFecWordSize Unsigned32,
g9983PortConfFecRedundancySize Unsigned32,
g9983PortConfFecInterleaverType INTEGER,
g9983PortConfFecInterleaverDepth Unsigned32,
g9983PortConfAdminServices G9983SvcIndexList,
g9983PortConfSvcUpDownEnable TruthValue
}
g9983PortConfFecAdminState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A desired state of the OPTIONAL Forward Error Correction
(FEC) function of the G.Bond/TDIM port.
A value of 'false' indicates that the FEC function SHALL be
disabled. A value of 'true' indicates that the FEC function
SHALL be enabled, if supported by the G.Bond/TDIM port, as
indicated by the g9983PortCapFecSupported object.
The g9983PortStatFecOperState object indicates the current
operational state of the FEC function.
For the GBS-R ports, the value of this object cannot be changed
directly. This value may be changed as a result of a write
operation on the g9983PortCapFecSupported object of a remote
GBS-C.
Modifications of this object MUST be performed when the link
is 'down'.
Attempts to change this object MUST be rejected if the link is
'up' or initializing, or if it is a GBS-R.
This object maps to the TR-159/G.998.3 attribute aFECAdminState."
REFERENCE
"[TR-159], Section 5.5.4.5; [G.998.3], Appendix II, B-X"
::= { g9983PortConfEntry 1 }
Beili Standards Track [Page 15]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983PortConfFecWordSize OBJECT-TYPE
SYNTAX Unsigned32 (0|20..255)
UNITS "octets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A FEC code word size, in octets, for G.Bond/TDIM ports
supporting the FEC function.
This object is read-write for the GBS-C ports and read-only
for the GBS-R.
A value of zero SHALL be returned if the FEC function is
disabled (via g9983PortConfFecAdminState) or not supported.
Changing of the FEC code word size MUST be performed when the
FEC-enabled link is 'down'. Attempts to change this object MUST
be rejected if the link is 'up' or initializing or if the
FEC function is disabled/not supported.
This object maps to the TR-159/G.998.3 attribute aFECWordSize."
REFERENCE
"[TR-159], Section 5.5.4.7; [G.998.3], Appendix II, B-XI"
::= { g9983PortConfEntry 2 }
g9983PortConfFecRedundancySize OBJECT-TYPE
SYNTAX Unsigned32 (0|2|4|8|16|20)
UNITS "octets"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A FEC redundancy word size, in octets, for G.Bond/TDIM
ports supporting the FEC function.
This object is read-write for the GBS-C ports and read-only
for the GBS-R.
A value of zero SHALL be returned if the FEC function is
disabled (via g9983PortConfFecAdminState) or not supported.
Changing of the FEC redundancy word size MUST be performed
when the FEC-enabled link is 'down'. Attempts to change this
object MUST be rejected if the link is 'up' or initializing or
if the FEC function is disabled/not supported.
This object maps to the TR-159/G.998.3 attribute
aFECRedundancySize."
Beili Standards Track [Page 16]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
REFERENCE
"[TR-159], Section 5.5.4.8; [G.998.3], Appendix II, B-XII"
::= { g9983PortConfEntry 3 }
g9983PortConfFecInterleaverType OBJECT-TYPE
SYNTAX INTEGER {
none(0),
block(1),
convolution(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An Interleaver type for G.Bond/TDIM ports supporting the
FEC function.
This object is read-write for the GBS-C ports and read-only
for the GBS-R.
A value of none(0) SHALL be returned if the FEC function is
disabled (via g9983PortConfFecAdminState) or not supported.
Changing of the Interleaver type MUST be performed when the
FEC-enabled link is 'down'. Attempts to change this object MUST
be rejected if the link is 'up' or initializing or if the FEC
function is disabled/not supported.
This object maps to the TR-159/G.998.3 attribute
aFECInterleaverType."
REFERENCE
"[TR-159], Section 5.5.4.9; [G.998.3], Appendix II, B-XIII"
::= { g9983PortConfEntry 4 }
g9983PortConfFecInterleaverDepth OBJECT-TYPE
SYNTAX Unsigned32 (0|1|2|3|4|6|8|12|16|24|32|48|96)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An Interleaver depth for G.Bond/TDIM ports supporting the
FEC function.
This object is read-write for the GBS-C ports and read-only
for the GBS-R.
A value of zero SHALL be returned if the FEC function is
disabled (via g9983PortConfFecAdminState) or not supported.
Beili Standards Track [Page 17]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Changing of the Interleaver depth MUST be performed when the
FEC-enabled link is 'down'. Attempts to change this object MUST
be rejected if the link is 'up' or initializing or if the FEC
function is disabled/not supported.
This object maps to the TR-159/G.998.3 attribute
aFECInterleaverDepth."
REFERENCE
"[TR-159], Section 5.5.4.10; [G.998.3], Appendix II, B-XIV"
::= { g9983PortConfEntry 5 }
g9983PortConfAdminServices OBJECT-TYPE
SYNTAX G9983SvcIndexList
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Desired list of services for a G.Bond/TDIM port. This object
is a list of pointers to entries in the g9983SvcTable.
The value of this object is a continuous ordered list of up to
60 indices (g9983SvcIdx) of the active services carried
via the G.Bond/TDIM link. The position of a service in the
list determines its relative priority in cases of bandwidth
degradation -- the priority decreases towards the end of the
list, which means that the last service in the list would be
suspended first when the bandwidth degrades.
This object is writable and readable for the GBS-C ports.
It is irrelevant for the GBS-R ports -- a zero-length octet
string SHALL be returned on an attempt to read this object, and
an attempt to change this object MUST be rejected in this case.
Note that the current operational service list is available
via the g9983OperSvcTable object.
This object for a GBS-C port MAY be modified independently of
the link's state, i.e., in-service and out-of-service.
Attempts to set this object to a list with a member value that
is not the value of the index for an active entry in the
corresponding g9983SvcTable table MUST be rejected."
REFERENCE
"[G.998.3], Sections 10.2.3, 13.3.4.6-13.3.4.11"
::= { g9983PortConfEntry 6 }
g9983PortConfSvcUpDownEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
Beili Standards Track [Page 18]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"Indicates whether g9983SvcUp and g9983SvcDown
notifications should be generated for this interface.
A value of true(1) indicates that the notifications are enabled.
A value of false(2) indicates that the notifications are
disabled.
This object maps to the TR-159 attribute
aServiceUpDownEnable."
REFERENCE
"[TR-159], Section 5.5.5.6"
::= { g9983PortConfEntry 7 }
g9983PortCapTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983PortCapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for capabilities of G.Bond/TDIM ports. Entries in this
table MUST be maintained in a persistent manner."
::= { g9983Port 2 }
g9983PortCapEntry OBJECT-TYPE
SYNTAX G9983PortCapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port Capability table.
Each entry represents a G.Bond/TDIM port indexed by the
ifIndex. Additional capabilities are available via the
gBondPortCapabilityEntry of the GBOND-MIB.
Note that a G.Bond/TDIM port runs on top of a single
or multiple BCE port(s), which are also indexed by the ifIndex."
INDEX { ifIndex }
::= { g9983PortCapTable 1 }
G9983PortCapEntry ::=
SEQUENCE {
g9983PortCapFecSupported TruthValue,
g9983PortCapFecMaxWordSize Unsigned32,
g9983PortCapFecMaxRedundancySize Unsigned32,
g9983PortCapFecInterleaverTypeSupported INTEGER,
g9983PortCapFecMaxInterleaverDepth Unsigned32
}
Beili Standards Track [Page 19]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983PortCapFecSupported OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"FEC and Interleaver capability of the G.Bond/TDIM port.
This object has a value of true(1) when the port supports the
FEC and Interleaver function.
A value of false(2) is returned when the port does not
support the FEC and Interleaver function.
This object maps to the TR-159/G.998.3 attribute
aFECSupported."
REFERENCE
"[TR-159], Section 5.5.4.4; [G.998.3], Appendix II, B-VI"
::= { g9983PortCapEntry 1 }
g9983PortCapFecMaxWordSize OBJECT-TYPE
SYNTAX Unsigned32 (0|20..255)
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A maximum supported FEC code word size, in octets, for
G.Bond/TDIM ports supporting the FEC function.
A value of zero SHALL be returned if the FEC function is not
supported.
This object maps to the TR-159 attribute aFECWordSize."
REFERENCE
"[TR-159], Section 5.5.4.11; [G.998.3], Appendix II, B-XI"
::= { g9983PortCapEntry 2 }
g9983PortCapFecMaxRedundancySize OBJECT-TYPE
SYNTAX Unsigned32 (0|2|4|8|16|20)
UNITS "octets"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A maximum supported FEC redundancy word size, in octets, for
G.Bond/TDIM ports supporting the FEC function.
A value of zero SHALL be returned if the FEC function is not
supported.
This object maps to the TR-159 attribute
aFECMaxRedundancySize."
Beili Standards Track [Page 20]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
REFERENCE
"[TR-159], Section 5.5.4.12; [G.998.3], Appendix II, B-XII"
::= { g9983PortCapEntry 3 }
g9983PortCapFecInterleaverTypeSupported OBJECT-TYPE
SYNTAX INTEGER {
none(0),
block(1),
convolution(2),
blockConvolution(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Supported Interleaver types for G.Bond/TDIM ports supporting
the FEC function.
Possible values are:
none - the port does not support interleaving
block - the port supports Block Interleaver
convolution - the port supports Convolution Interleaver
blockConvolution - the port supports both Block Interleaver
and Convolution Interleaver
This object maps to the TR-159 attribute
aFECInterleaverTypesSupported."
REFERENCE
"[TR-159], Section 5.5.4.13; [G.998.3], Appendix II, B-XIII"
::= { g9983PortCapEntry 4 }
g9983PortCapFecMaxInterleaverDepth OBJECT-TYPE
SYNTAX Unsigned32 (0|1|2|3|4|6|8|12|16|24|32|48|96)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A maximum Interleaver depth for G.Bond/TDIM ports supporting
the FEC function.
A value of zero SHALL be returned if the Interleaver is not
supported.
This object maps to the TR-159 attribute
aFECMaxInterleaverDepth."
REFERENCE
"[TR-159], Section 5.5.4.14; [G.998.3], Appendix II, B-XIV"
::= { g9983PortCapEntry 5 }
Beili Standards Track [Page 21]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983PortStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983PortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides overall status information of G.Bond
TDIM ports, complementing the generic status information from
the ifTable of the IF-MIB and the gBondPortStatFltStatus of
the GBOND-MIB. Additional status information about connected
BCEs is available from the relevant line MIBs.
This table contains live data from the equipment. As such,
it is NOT persistent."
::= { g9983Port 3 }
g9983PortStatEntry OBJECT-TYPE
SYNTAX G9983PortStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port Status table.
Each entry represents a G.Bond/TDIM port indexed by the
ifIndex.
Note that a G.Bond GBS port runs on top of a single
or multiple BCE port(s), which are also indexed by the ifIndex."
INDEX { ifIndex }
::= { g9983PortStatTable 1 }
G9983PortStatEntry ::=
SEQUENCE {
g9983PortStatFecOperState TruthValue,
g9983PortStatFltStatus BITS,
g9983PortStatCrc4Errors Counter32,
g9983PortStatCrc6Errors Counter32,
g9983PortStatCrc8Errors Counter32
}
g9983PortStatFecOperState OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only value indicating the current operational state
of the OPTIONAL Forward Error Correction (FEC) function for
the G.998.3 port.
A value of 'false' indicates that the FEC function is
disabled. A value of 'true' indicates that the FEC function
is enabled (and supported).
Beili Standards Track [Page 22]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
This object maps to the TR-159 attribute aFECOperState."
REFERENCE
"[TR-159], Section 5.5.4.6"
::= { g9983PortStatEntry 1 }
g9983PortStatFltStatus OBJECT-TYPE
SYNTAX BITS {
serviceDown(0),
wrongConfig(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"G.Bond/TDIM port fault status. This is a bitmap of possible
conditions. The various bit positions are:
serviceDown - at least one of the services defined
for this aggregation group is down
(due to low rate).
wrongConfig - at least one BCE at the remote GBS-R
is already connected to another GBS.
This object is intended to supplement the ifOperStatus object
in the IF-MIB and the gBondPortStatFltStatus object in the
GBOND-MIB."
REFERENCE
"[G.998.3], Section 6.3; RFC 2863, IF-MIB, ifOperStatus;
RFC 6765, GBOND-MIB, gBondPortStatFltStatus"
::= { g9983PortStatEntry 2 }
g9983PortStatCrc4Errors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of CRC-4 errors (frame header errors) on all
pairs in the G.Bond/TDIM port. Simultaneous errors on M lines
SHOULD be counted M times.
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 ifCounterDiscontinuityTime as
defined in the IF-MIB.
This object maps to the TR-159/G.998.3 attribute aCRC4Errors."
REFERENCE
"[TR-159], Section 5.5.4.1; [G.998.3], Appendix II, B-VII"
::= { g9983PortStatEntry 3 }
Beili Standards Track [Page 23]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983PortStatCrc6Errors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of CRC-6 errors (super-frame errors) on all
pairs in the G.Bond/TDIM port. Simultaneous errors on M lines
SHOULD be counted 1 time.
Discontinuities in the value of this counter can occur at
re-initialization of the local management subsystem, and at
other times as indicated by the value of
ifCounterDiscontinuityTime as defined in the IF-MIB.
This object maps to the TR-159/G.998.3 attribute aCRC6Errors."
REFERENCE
"[TR-159], Section 5.5.4.2; [G.998.3], Appendix II, B-VIII"
::= { g9983PortStatEntry 4 }
g9983PortStatCrc8Errors OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of CRC-8 errors (event/message errors) on all
pairs in the G.Bond/TDIM port. Simultaneous errors on M lines
SHOULD be counted M times.
Discontinuities in the value of this counter can occur at
re-initialization of the local management subsystem, and at
other times as indicated by the value of
ifCounterDiscontinuityTime as defined in the IF-MIB.
This object maps to the TR-159/G.998.3 attribute aCRC8Errors."
REFERENCE
"[TR-159], Section 5.5.4.3; [G.998.3], Appendix II, B-IX"
::= { g9983PortStatEntry 5 }
g9983OperSvcTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983OperSvcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of the operational services configured on a G.Bond/TDIM
port. This table reflects current actual service configuration,
set by the g9983PortConfAdminServices object. The number of
entries (services) in this table therefore can vary between
Beili Standards Track [Page 24]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
0, when no services are configured, and 60, for the maximum
number of services.
This table contains live data from the equipment. As such,
it is NOT persistent."
::= { g9983Port 4 }
g9983OperSvcEntry OBJECT-TYPE
SYNTAX G9983OperSvcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port Operational Service table,
containing the index of an active service entry in the
g9983SvcTable. The entry is indexed by the ifIndex,
indicating a corresponding G.Bond/TDIM port, and by
g9983OperSvcPosition (1..60), indicating the
corresponding service position in the G.Bond/TDIM frame."
INDEX { ifIndex, g9983OperSvcPosition }
::= { g9983OperSvcTable 1 }
G9983OperSvcEntry ::=
SEQUENCE {
g9983OperSvcPosition G9983SvcOrderIndex,
g9983OperSvcIdx G9983SvcIndex,
g9983OperSvcState INTEGER
}
g9983OperSvcPosition OBJECT-TYPE
SYNTAX G9983SvcOrderIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"G.Bond/TDIM operational service position -- a unique index,
indicating relative placement of the associated service
pointed to by g9983OperSvcIdx, within the G.Bond/TDIM frame.
There can be up to 60 services defined over a TDIM bonded
facility. Services with lower indices have higher priority in
cases of bandwidth degradation.
The value of g9983OperSvcPosition for the first
g9983OperSvcEntry is always 1, incrementing sequentially
for each consecutive entry, i.e., 2 for the second entry,
3 for the third, etc.
This objects maps to the TR-159/G.998.3 attribute aServiceID."
Beili Standards Track [Page 25]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
REFERENCE
"[TR-159], Section 5.5.5.1; [G.998.3], Appendix II, C-I"
::= { g9983OperSvcEntry 1 }
g9983OperSvcIdx OBJECT-TYPE
SYNTAX G9983SvcIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"G.Bond/TDIM operational service index -- a read-only pointer
to an existing entry in the g9983SvcTable (value of
g9983SvcIdx) describing a particular service."
::= { g9983OperSvcEntry 2 }
g9983OperSvcState OBJECT-TYPE
SYNTAX INTEGER {
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"G.Bond/TDIM service operational state.
Possible values are:
up - Service is up and passing traffic.
down - Service is down, due to a variety of
reasons, e.g., G.Bond/TDIM port is
down, current link bandwidth is too
low to support a particular service,
etc.
This objects maps to the TR-159 attribute aServiceOperState."
REFERENCE
"[TR-159], Section 5.5.5.5"
::= { g9983OperSvcEntry 3 }
g9983SvcTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983SvcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of possible services for G.Bond/TDIM ports.
Entries in this table MUST be maintained in a persistent
manner."
::= { g9983Port 5 }
Beili Standards Track [Page 26]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983SvcEntry OBJECT-TYPE
SYNTAX G9983SvcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port Service table, containing
the management information applicable to a particular service,
indexed by the g9983SvcIdx, on a G.Bond/TDIM port,
indexed by the ifIndex."
INDEX { ifIndex, g9983SvcIdx }
::= { g9983SvcTable 1 }
G9983SvcEntry ::=
SEQUENCE {
g9983SvcIdx G9983SvcIndex,
g9983SvcIfIdx InterfaceIndex,
g9983SvcType INTEGER,
g9983SvcSize Unsigned32,
g9983SvcRowStatus RowStatus
}
g9983SvcIdx OBJECT-TYPE
SYNTAX G9983SvcIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"G.Bond/TDIM service index -- a unique index associated with
a particular service entry."
::= { g9983SvcEntry 1 }
g9983SvcIfIdx OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is a unique index within the ifTable. It represents
the interface index of a service to be transmitted over the
G.Bond/TDIM service instance.
This objects maps to the TR-159 attribute aServiceIfIndex."
REFERENCE
"[TR-159], Section 5.5.5.2"
::= { g9983SvcEntry 2 }
g9983SvcType OBJECT-TYPE
SYNTAX INTEGER {
ds1(0),
e1(1),
Beili Standards Track [Page 27]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
nxds0(2),
nxe0(3),
ds3(4),
e3(5),
clock(6),
ethernet(7),
atm(8),
gfpNoFCS(9),
gfp(10)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"G.Bond/TDIM service type.
Possible values are:
ds1 - Clear Channel DS1 (synchronous)
e1 - Clear Channel E1 (synchronous)
nxds0 - Fractional DS1 (synchronous)
nxe0 - Fractional E1 (synchronous)
ds3 - DS3 (synchronous)
e3 - E3 (synchronous)
clock - Clock transfer (synchronous)
ethernet - Ethernet (asynchronous)
atm - ATM (asynchronous)
gfpNoFCS - GFP encapsulated without FCS (asynchronous)
gfp - GFP encapsulated with FCS (asynchronous)
For the GBS-R ports, the value of this object cannot be
changed directly. This value may be changed as a result of a
write operation on the g9983SvcType object of a remote GBS-C.
Attempts to change this object MUST be rejected for the GBS-R
ports.
This object maps to the TR-159/G.998.3 attribute aServiceType."
REFERENCE
"[TR-159], Section 5.5.5.3; [G.998.3], Appendix II, C-II"
::= { g9983SvcEntry 3 }
g9983SvcSize OBJECT-TYPE
SYNTAX Unsigned32 (0|20..255)
UNITS "octets"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Service size, in octets, per bonding sub-block for a specific
service identified by g9983SvcIdx.
Beili Standards Track [Page 28]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
For TDM (synchronous) services with variable size
(e.g., fractional DS1/E1), this object represents the number of
DS0/E0 channels.
For asynchronous services (Ethernet, ATM, GFPnoFCS, or GFP),
this object represents the maximum number of octets.
For non-fractional TDM services (i.e., DS1, E1, DS3, E3, and
clock), the value of this object MUST be 0.
A GET operation returns the current value.
A SET operation, allowed on GBS-C ports, changes the service
size to the indicated value. If the service type is a
fixed-rate synchronous service (g9983SvcType is nxds0, nxe0,
ds1, e1, ds3, e3, or clock), the operation MUST be rejected.
This object maps to the TR-159/G.998.3 attribute aServiceSize."
REFERENCE
"[TR-159], Section 5.5.5.4; [G.998.3], Appendix II, C-III"
::= { g9983SvcEntry 4 }
g9983SvcRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object controls the creation, modification, or deletion
of the associated entry in the g9983SvcTable per the
semantics of RowStatus.
If an 'active' entry is referenced via g9983OperSvcIdx
or a g9983PortConfAdminServices instance, or indexes a
g9983SvcPm*Entry, the entry MUST remain 'active'.
An 'active' entry SHALL NOT be modified. In order to modify an
existing entry, it MUST be taken out of service (by setting
this object to 'notInService'), modified, and set to 'active'
again."
::= { g9983SvcEntry 5 }
-------------------------------
-- Performance Monitoring group
-------------------------------
g9983PM OBJECT IDENTIFIER ::= { g9983Port 6 }
g9983PortPmCurTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983PortPmCurEntry
MAX-ACCESS not-accessible
Beili Standards Track [Page 29]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
STATUS current
DESCRIPTION
"This table contains current Performance Monitoring information
for a G.Bond/TDIM port. This table contains live data from the
equipment and as such is NOT persistent."
::= { g9983PM 1 }
g9983PortPmCurEntry OBJECT-TYPE
SYNTAX G9983PortPmCurEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port PM table.
Each entry represents a G.Bond/TDIM port indexed by the
ifIndex."
INDEX { ifIndex }
::= { g9983PortPmCurTable 1 }
G9983PortPmCurEntry ::=
SEQUENCE {
g9983PortPmCur15MinValidIntervals HCPerfValidIntervals,
g9983PortPmCur15MinInvalidIntervals HCPerfInvalidIntervals,
g9983PortPmCur15MinTimeElapsed HCPerfTimeElapsed,
g9983PortPmCur15MinCrc4s HCPerfCurrentCount,
g9983PortPmCur15MinCrc6s HCPerfCurrentCount,
g9983PortPmCur15MinCrc8s HCPerfCurrentCount,
g9983PortPmCur1DayValidIntervals Unsigned32,
g9983PortPmCur1DayInvalidIntervals Unsigned32,
g9983PortPmCur1DayTimeElapsed HCPerfTimeElapsed,
g9983PortPmCur1DayCrc4s HCPerfCurrentCount,
g9983PortPmCur1DayCrc6s HCPerfCurrentCount,
g9983PortPmCur1DayCrc8s HCPerfCurrentCount
}
g9983PortPmCur15MinValidIntervals OBJECT-TYPE
SYNTAX HCPerfValidIntervals
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only number of 15-minute intervals for which the
performance data was collected. The value of this object will
be 96 or the maximum number of 15-minute history intervals
collected by the implementation, unless the measurement was
(re)started recently, in which case the value will be the
number of complete 15-minute intervals for which there are at
least some data.
Beili Standards Track [Page 30]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
In certain cases, it is possible that some intervals are
unavailable. In this case, this object reports the maximum
interval number for which data is available.
This object partially maps to the TR-159 attribute
aGroupPerf15MinValidIntervals."
REFERENCE
"[TR-159], Section 5.5.1.32"
::= { g9983PortPmCurEntry 1 }
g9983PortPmCur15MinInvalidIntervals OBJECT-TYPE
SYNTAX HCPerfInvalidIntervals
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only number of 15-minute intervals for which the
performance data was not always available. The value will
typically be zero, except in cases where the data for some
intervals are not available.
This object partially maps to the TR-159 attribute
aGroupPerf15MinInvalidIntervals."
REFERENCE
"[TR-159], Section 5.5.1.33"
::= { g9983PortPmCurEntry 2 }
g9983PortPmCur15MinTimeElapsed OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds that have elapsed since the
beginning of the current 15-minute performance interval.
This object partially maps to the TR-159 attribute
aGroupPerfCurr15MinTimeElapsed."
REFERENCE
"[TR-159], Section 5.5.1.34"
::= { g9983PortPmCurEntry 3 }
g9983PortPmCur15MinCrc4s OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-4 errors (frame header errors) on all
active pairs in the G.Bond/TDIM port during the current
Beili Standards Track [Page 31]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
15-minute performance interval.
Simultaneous errors on M lines SHOULD be counted M times.
Note that the total number of CRC-4 errors is indicated by the
g9983PortStatCrc4Errors object.
This object is inhibited during Severely Errored Seconds (SES)
or Unavailable Seconds (UAS)."
REFERENCE
"[TR-159], Section 5.5.4.1"
::= { g9983PortPmCurEntry 4}
g9983PortPmCur15MinCrc6s OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-6 errors (super-frame errors) on all
active pairs in the G.Bond/TDIM port during the current
15-minute performance interval.
Simultaneous errors on M lines SHOULD be counted 1 time.
Note that the total number of CRC-6 errors is indicated by the
g9983PortStatCrc6Errors object.
This object is inhibited during Unavailable Seconds (UAS)."
REFERENCE
"[TR-159], Section 5.5.4.2"
::= { g9983PortPmCurEntry 5}
g9983PortPmCur15MinCrc8s OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-8 errors (event/message errors) on all
active pairs in the G.Bond/TDIM port during the current
15-minute performance interval.
Simultaneous errors on M lines SHOULD be counted M times.
Note that the total number of CRC-8 errors is indicated by the
g9983PortStatCrc8Errors object.
This object is inhibited during Unavailable Seconds (UAS)."
REFERENCE
"[TR-159], Section 5.5.4.3"
::= { g9983PortPmCurEntry 6}
Beili Standards Track [Page 32]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983PortPmCur1DayValidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only number of 1-day intervals for which data was
collected. The value of this object will be 7 or the maximum
number of 1-day history intervals collected by the
implementation, unless the measurement was (re)started recently,
in which case the value will be the number of complete 1-day
intervals for which there are at least some data.
In certain cases, it is possible that some intervals are
unavailable. In this case, this object reports the maximum
interval number for which data is available."
REFERENCE
"[TR-159], Section 5.5.1.45"
::= { g9983PortPmCurEntry 7 }
g9983PortPmCur1DayInvalidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only number of 1-day intervals for which data was
not always available. The value will typically be zero, except
in cases where the data for some intervals are not available."
REFERENCE
"[TR-159], Section 5.5.1.46"
::= { g9983PortPmCurEntry 8 }
g9983PortPmCur1DayTimeElapsed OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds that have elapsed since the
beginning of the current 1-day performance interval."
REFERENCE
"[TR-159], Section 5.5.1.47"
::= { g9983PortPmCurEntry 9 }
g9983PortPmCur1DayCrc4s OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-only
STATUS current
Beili Standards Track [Page 33]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"A read-only count of CRC-4 errors on the G.Bond/TDIM port in
the current 1-day performance interval.
This object is inhibited during Severely Errored Seconds (SES)
and Unavailable Seconds (UAS)."
::= { g9983PortPmCurEntry 10 }
g9983PortPmCur1DayCrc6s OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-6 errors on the G.Bond/TDIM port
in the current 1-day performance interval.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983PortPmCurEntry 11 }
g9983PortPmCur1DayCrc8s OBJECT-TYPE
SYNTAX HCPerfCurrentCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-8 errors on the G.Bond/TDIM port in
the current 1-day performance interval.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983PortPmCurEntry 12 }
-- Port PM history: 15-min buckets
g9983PortPm15MinTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983PortPm15MinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains historical 15-minute buckets of Performance
Monitoring information for a G.Bond/TDIM port (a row for each
15-minute interval, up to 96 intervals).
Entries in this table MUST be maintained in a persistent manner."
::= { g9983PM 2 }
g9983PortPm15MinEntry OBJECT-TYPE
SYNTAX G9983PortPm15MinEntry
MAX-ACCESS not-accessible
STATUS current
Beili Standards Track [Page 34]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"An entry in the G.Bond/TDIM Port historical 15-minute PM table.
Each entry represents Performance Monitoring data for a G.Bond
TDIM port, indexed by the ifIndex, collected during a particular
15-minute interval, indexed by the
g9983PortPm15MinIntervalIndex."
INDEX { ifIndex, g9983PortPm15MinIntervalIndex }
::= { g9983PortPm15MinTable 1 }
G9983PortPm15MinEntry ::=
SEQUENCE {
g9983PortPm15MinIntervalIndex Unsigned32,
g9983PortPm15MinIntervalMoniTime HCPerfTimeElapsed,
g9983PortPm15MinIntervalCrc4s HCPerfIntervalCount,
g9983PortPm15MinIntervalCrc6s HCPerfIntervalCount,
g9983PortPm15MinIntervalCrc8s HCPerfIntervalCount,
g9983PortPm15MinIntervalValid TruthValue
}
g9983PortPm15MinIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data interval number. 1 is the most recent
previous interval; interval 96 is 24 hours ago.
Intervals 2..96 are OPTIONAL.
This object partially maps to the TR-159 attribute
aGroupPerf15MinIntervalNumber."
REFERENCE
"[TR-159], Section 5.5.1.57"
::= { g9983PortPm15MinEntry 1 }
g9983PortPm15MinIntervalMoniTime OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds over which the performance data
was actually monitored. This value will be the same as the
interval duration (900 seconds), except in a situation where
performance data could not be collected for any reason."
::= { g9983PortPm15MinEntry 2 }
g9983PortPm15MinIntervalCrc4s OBJECT-TYPE
SYNTAX HCPerfIntervalCount
Beili Standards Track [Page 35]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-4 errors on the G.Bond/TDIM port
during the 15-minute performance history interval.
This object is inhibited during Severely Errored Seconds (SES)
and Unavailable Seconds (UAS)."
::= { g9983PortPm15MinEntry 3 }
g9983PortPm15MinIntervalCrc6s OBJECT-TYPE
SYNTAX HCPerfIntervalCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-6 errors on the G.Bond/TDIM port
during the 15-minute performance history interval.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983PortPm15MinEntry 4 }
g9983PortPm15MinIntervalCrc8s OBJECT-TYPE
SYNTAX HCPerfIntervalCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-8 errors on the G.Bond/TDIM port
during the current 15-minute performance interval.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983PortPm15MinEntry 5 }
g9983PortPm15MinIntervalValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only object indicating whether or not this history
bucket contains valid data. A valid bucket is reported as
true(1) and an invalid bucket as false(2).
If this history bucket is invalid, the BTU-C MUST NOT produce
notifications based upon the value of the counters in this
bucket.
Note that an implementation may decide not to store invalid
history buckets in its database. In such a case, this object
is not required, as only valid history buckets are available
while invalid history buckets are simply not in the database.
Beili Standards Track [Page 36]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
This object partially maps to the TR-159 attribute
aGroupPerf15MinIntervalValid."
REFERENCE
"[TR-159], Section 5.5.1.58"
::= { g9983PortPm15MinEntry 6 }
-- Port PM history: 1-day buckets
g9983PortPm1DayTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983PortPm1DayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains historical 1-day buckets of Performance
Monitoring information for a G.Bond/TDIM port (a row for each
1-day interval, up to 7 intervals).
Entries in this table MUST be maintained in a persistent manner."
::= { g9983PM 3 }
g9983PortPm1DayEntry OBJECT-TYPE
SYNTAX G9983PortPm1DayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Port historical 1-day PM table.
Each entry represents Performance Monitoring data for such a
port, indexed by the ifIndex, collected during a particular
1-day interval, indexed by the g9983PortPm1DayIntervalIndex."
INDEX { ifIndex, g9983PortPm1DayIntervalIndex }
::= { g9983PortPm1DayTable 1 }
G9983PortPm1DayEntry ::=
SEQUENCE {
g9983PortPm1DayIntervalIndex Unsigned32,
g9983PortPm1DayIntervalMoniTime HCPerfTimeElapsed,
g9983PortPm1DayIntervalCrc4s HCPerfIntervalCount,
g9983PortPm1DayIntervalCrc6s HCPerfIntervalCount,
g9983PortPm1DayIntervalCrc8s HCPerfIntervalCount,
g9983PortPm1DayIntervalValid TruthValue
}
g9983PortPm1DayIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..7)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data interval number. 1 is the most recent
previous interval; interval 7 is 7 days ago.
Beili Standards Track [Page 37]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Intervals 2..7 are OPTIONAL.
This object partially maps to the TR-159 attribute
aGroupPerf1DayIntervalNumber."
REFERENCE
"[TR-159], Section 5.5.1.62"
::= { g9983PortPm1DayEntry 1 }
g9983PortPm1DayIntervalMoniTime OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds over which the performance data
was actually monitored. This value will be the same as the
interval duration (86400 seconds), except in a situation where
performance data could not be collected for any reason.
This object partially maps to the TR-159 attribute
aGroupPerf1DayIntervalMoniSecs."
REFERENCE
"[TR-159], Section 5.5.1.64"
::= { g9983PortPm1DayEntry 2 }
g9983PortPm1DayIntervalCrc4s OBJECT-TYPE
SYNTAX HCPerfIntervalCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-4 errors on the G.Bond/TDIM port
during the 1-day performance history interval.
This object is inhibited during Severely Errored Seconds (SES)
and Unavailable Seconds (UAS)."
::= { g9983PortPm1DayEntry 3 }
g9983PortPm1DayIntervalCrc6s OBJECT-TYPE
SYNTAX HCPerfIntervalCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-6 errors on the G.Bond/TDIM port
during the 1-day performance history interval.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983PortPm1DayEntry 4 }
Beili Standards Track [Page 38]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983PortPm1DayIntervalCrc8s OBJECT-TYPE
SYNTAX HCPerfIntervalCount
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of CRC-8 errors on the G.Bond/TDIM port
during the current 1-day performance interval.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983PortPm1DayEntry 5 }
g9983PortPm1DayIntervalValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only object indicating whether or not this history
bucket contains valid data. A valid bucket is reported as
true(1) and an invalid bucket as false(2).
If this history bucket is invalid, the BTU-C MUST NOT produce
notifications based upon the value of the counters in this
bucket.
Note that an implementation may decide not to store invalid
history buckets in its database. In such a case, this object
is not required, as only valid history buckets are available
while invalid history buckets are simply not in the database.
This object partially maps to the TR-159 attribute
aGroupPerf1DayIntervalValid."
REFERENCE
"[TR-159], Section 5.5.1.63"
::= { g9983PortPm1DayEntry 6 }
-- Services PM
g9983SvcPmCurTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983SvcPmCurEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains current Performance Monitoring information
for the services of a G.Bond/TDIM port.
This table contains live data from the equipment and as such is
NOT persistent."
::= { g9983PM 4 }
g9983SvcPmCurEntry OBJECT-TYPE
SYNTAX G9983SvcPmCurEntry
Beili Standards Track [Page 39]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Services PM table.
Each entry represents a service, indexed by the
g9983SvcIdx, in a G.Bond/TDIM port, indexed by the
ifIndex."
INDEX { ifIndex, g9983SvcIdx }
::= { g9983SvcPmCurTable 1 }
G9983SvcPmCurEntry ::=
SEQUENCE {
g9983SvcPmCur15MinValidIntervals HCPerfValidIntervals,
g9983SvcPmCur15MinInvalidIntervals HCPerfInvalidIntervals,
g9983SvcPmCur15MinTimeElapsed HCPerfTimeElapsed,
g9983SvcPmCur15MinDowns HCPerfCurrentCount,
g9983SvcPmCur1DayValidIntervals Unsigned32,
g9983SvcPmCur1DayInvalidIntervals Unsigned32,
g9983SvcPmCur1DayTimeElapsed HCPerfTimeElapsed,
g9983SvcPmCur1DayDowns HCPerfCurrentCount
}
g9983SvcPmCur15MinValidIntervals OBJECT-TYPE
SYNTAX HCPerfValidIntervals
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only number of 15-minute intervals for which the
performance data was collected. The value of this object will
be 96 or the maximum number of 15-minute history intervals
collected by the implementation, unless the measurement was
(re)started recently, in which case the value will be the
number of complete 15-minute intervals for which there are at
least some data.
In certain cases, it is possible that some intervals are
unavailable. In this case, this object reports the maximum
interval number for which data is available.
This object partially maps to the TR-159 attribute
aGroupPerf15MinValidIntervals."
REFERENCE
"[TR-159], Section 5.5.1.32"
::= { g9983SvcPmCurEntry 1 }
g9983SvcPmCur15MinInvalidIntervals OBJECT-TYPE
SYNTAX HCPerfInvalidIntervals
MAX-ACCESS read-only
STATUS current
Beili Standards Track [Page 40]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"A read-only number of 15-minute intervals for which the
performance data was not always available. The value will
typically be zero, except in cases where the data for some
intervals are not available.
This object partially maps to the TR-159 attribute
aGroupPerf15MinInvalidIntervals."
REFERENCE
"[TR-159], Section 5.5.1.33"
::= { g9983SvcPmCurEntry 2 }
g9983SvcPmCur15MinTimeElapsed OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds that have elapsed since the
beginning of the current 15-minute performance interval.
This object partially maps to the TR-159 attribute
aGroupPerfCurr15MinTimeElapsed."
REFERENCE
"[TR-159], Section 5.5.1.34"
::= { g9983SvcPmCurEntry 3 }
g9983SvcPmCur15MinDowns OBJECT-TYPE
SYNTAX HCPerfCurrentCount
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds in the current 15-minute
performance interval during which a particular TDIM
service was 'down', as indicated by the
g9983OperSvcState object.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983SvcPmCurEntry 4}
g9983SvcPmCur1DayValidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
UNITS "days"
MAX-ACCESS read-only
STATUS current
Beili Standards Track [Page 41]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"A read-only number of 1-day performance history intervals for
which the data was collected. The value of this object will be
7 or the maximum number of 1-day history intervals collected by
the implementation, unless the measurement was (re)started
recently, in which case the value will be the number of complete
1-day intervals for which there are at least some data.
In certain cases, it is possible that some intervals are
unavailable. In this case, this object reports the maximum
interval number for which data is available."
REFERENCE
"[TR-159], Section 5.5.1.45"
::= { g9983SvcPmCurEntry 5 }
g9983SvcPmCur1DayInvalidIntervals OBJECT-TYPE
SYNTAX Unsigned32 (0..7)
UNITS "days"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only number of 1-day performance history intervals for
which the performance data was not always available. The value
will typically be zero, except in cases where the data for some
intervals are not available."
REFERENCE
"[TR-159], Section 5.5.1.46"
::= { g9983SvcPmCurEntry 6 }
g9983SvcPmCur1DayTimeElapsed OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds that have elapsed since the
beginning of the current 1-day performance interval."
REFERENCE
"[TR-159], Section 5.5.1.47"
::= { g9983SvcPmCurEntry 7 }
g9983SvcPmCur1DayDowns OBJECT-TYPE
SYNTAX HCPerfCurrentCount
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
Beili Standards Track [Page 42]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"A read-only count of seconds in the current 1-day performance
interval during which a particular TDIM service was
'down', as indicated by the g9983OperSvcState object.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983SvcPmCurEntry 8 }
-- Service PM history: 15-min buckets
g9983SvcPm15MinTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983SvcPm15MinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains historical 15-minute buckets of Performance
Monitoring information for the services of a G.Bond/TDIM port
(a multi-dimensional row for each 15-minute interval, up to 96
intervals).
Entries in this table MUST be maintained in a persistent manner."
::= { g9983PM 5 }
g9983SvcPm15MinEntry OBJECT-TYPE
SYNTAX G9983SvcPm15MinEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Service historical 15-minute PM
table.
Each entry represents Performance Monitoring data for a
particular service, indexed by the g9983SvcIdx, in a G.Bond
TDIM port, indexed by the ifIndex, collected during a particular
15-minute interval, indexed by the
g9983SvcPm15MinIntervalIndex."
INDEX { ifIndex, g9983SvcIdx,
g9983SvcPm15MinIntervalIndex }
::= { g9983SvcPm15MinTable 1 }
G9983SvcPm15MinEntry ::=
SEQUENCE {
g9983SvcPm15MinIntervalIndex Unsigned32,
g9983SvcPm15MinIntervalMoniTime HCPerfTimeElapsed,
g9983SvcPm15MinIntervalDowns HCPerfIntervalCount,
g9983SvcPm15MinIntervalValid TruthValue
}
Beili Standards Track [Page 43]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983SvcPm15MinIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..96)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data interval number. 1 is the most recent
previous interval; interval 96 is 24 hours ago.
Intervals 2..96 are OPTIONAL.
This object partially maps to the TR-159 attribute
aGroupPerf15MinIntervalNumber."
REFERENCE
"[TR-159], Section 5.5.1.57"
::= { g9983SvcPm15MinEntry 1 }
g9983SvcPm15MinIntervalMoniTime OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds over which the performance data
was actually monitored. This value will be the same as the
interval duration (900 seconds), except in a situation where
performance data could not be collected for any reason."
::= { g9983SvcPm15MinEntry 2 }
g9983SvcPm15MinIntervalDowns OBJECT-TYPE
SYNTAX HCPerfIntervalCount
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds in the 15-minute performance
history interval during which a particular TDIM service was
'down', as indicated by the g9983OperSvcState object.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983SvcPm15MinEntry 3 }
g9983SvcPm15MinIntervalValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only object indicating whether or not this history
bucket contains valid data. A valid bucket is reported as
true(1) and an invalid bucket as false(2).
Beili Standards Track [Page 44]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
If this history bucket is invalid, the BTU-C MUST NOT produce
notifications based upon the value of the counters in this
bucket.
Note that an implementation may decide not to store invalid
history buckets in its database. In such a case, this object
is not required, as only valid history buckets are available
while invalid history buckets are simply not in the database.
This object partially maps to the TR-159 attribute
aGroupPerf15MinIntervalValid."
REFERENCE
"[TR-159], Section 5.5.1.58"
::= { g9983SvcPm15MinEntry 4 }
-- Service PM history: 1-day buckets
g9983SvcPm1DayTable OBJECT-TYPE
SYNTAX SEQUENCE OF G9983SvcPm1DayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains historical 1-day buckets of Performance
Monitoring information for the services of a G.Bond/TDIM port
(a multi-dimensional row for each 1-day interval, up to 7
intervals).
Entries in this table MUST be maintained in a persistent manner."
::= { g9983PM 6 }
g9983SvcPm1DayEntry OBJECT-TYPE
SYNTAX G9983SvcPm1DayEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the G.Bond/TDIM Service historical 1-day PM table.
Each entry represents Performance Monitoring data for a
particular service, indexed by the g9983SvcIdx, defined in a
G.Bond/TDIM port, indexed by the ifIndex, collected during a
particular 1-day interval, indexed by the
g9983SvcPm1DayIntervalIndex."
INDEX { ifIndex, g9983SvcIdx,
g9983SvcPm1DayIntervalIndex }
::= { g9983SvcPm1DayTable 1 }
G9983SvcPm1DayEntry ::=
SEQUENCE {
g9983SvcPm1DayIntervalIndex Unsigned32,
g9983SvcPm1DayIntervalMoniTime HCPerfTimeElapsed,
g9983SvcPm1DayIntervalDowns HCPerfIntervalCount,
Beili Standards Track [Page 45]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983SvcPm1DayIntervalValid TruthValue
}
g9983SvcPm1DayIntervalIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..7)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance data interval number. 1 is the most recent
previous interval; interval 7 is 7 days ago.
Intervals 2..7 are OPTIONAL.
This object partially maps to the TR-159 attribute
aGroupPerf1DayIntervalNumber."
REFERENCE
"[TR-159], Section 5.5.1.62"
::= { g9983SvcPm1DayEntry 1 }
g9983SvcPm1DayIntervalMoniTime OBJECT-TYPE
SYNTAX HCPerfTimeElapsed
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds over which the performance data
was actually monitored. This value will be the same as the
interval duration (86400 seconds), except in a situation where
performance data could not be collected for any reason.
This object partially maps to the TR-159 attribute
aGroupPerf1DayIntervalMoniSecs."
REFERENCE
"[TR-159], Section 5.5.1.64"
::= { g9983SvcPm1DayEntry 2 }
g9983SvcPm1DayIntervalDowns OBJECT-TYPE
SYNTAX HCPerfIntervalCount
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only count of seconds in the 1-day performance history
interval during which a particular TDIM service was 'down',
as indicated by the g9983OperSvcState object.
This object is inhibited during Unavailable Seconds (UAS)."
::= { g9983SvcPm1DayEntry 3 }
Beili Standards Track [Page 46]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983SvcPm1DayIntervalValid OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A read-only object indicating whether or not this history
bucket contains valid data. A valid bucket is reported as
true(1) and an invalid bucket as false(2).
If this history bucket is invalid, the BTU-C MUST NOT produce
notifications based upon the value of the counters in this
bucket.
Note that an implementation may decide not to store invalid
history buckets in its database. In such a case, this object
is not required, as only valid history buckets are available
while invalid history buckets are simply not in the database.
This object partially maps to the TR-159 attribute
aGroupPerf1DayIntervalValid."
REFERENCE
"[TR-159], Section 5.5.1.63"
::= { g9983SvcPm1DayEntry 4 }
--
-- Conformance Statements
--
g9983Groups OBJECT IDENTIFIER
::= { g9983Conformance 1 }
g9983Compliances OBJECT IDENTIFIER
::= { g9983Conformance 2 }
-- Object Groups
g9983BasicGroup OBJECT-GROUP
OBJECTS {
g9983PortConfAdminServices,
g9983PortStatCrc4Errors,
g9983PortStatCrc6Errors,
g9983PortStatCrc8Errors,
g9983PortCapFecSupported,
g9983OperSvcIdx,
g9983OperSvcState,
g9983SvcIfIdx,
g9983SvcType,
Beili Standards Track [Page 47]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
g9983SvcSize,
g9983SvcRowStatus,
g9983PortStatFltStatus
}
STATUS current
DESCRIPTION
"A collection of objects representing management information
for G.Bond/TDIM ports."
::= { g9983Groups 1 }
g9983FecGroup OBJECT-GROUP
OBJECTS {
g9983PortCapFecSupported,
g9983PortConfFecAdminState,
g9983PortStatFecOperState,
g9983PortConfFecWordSize,
g9983PortConfFecRedundancySize,
g9983PortConfFecInterleaverType,
g9983PortConfFecInterleaverDepth,
g9983PortCapFecMaxWordSize,
g9983PortCapFecMaxRedundancySize,
g9983PortCapFecInterleaverTypeSupported,
g9983PortCapFecMaxInterleaverDepth
}
STATUS current
DESCRIPTION
"A collection of objects supporting the OPTIONAL Forward Error
Correction (FEC) and Interleaver function in G.Bond/TDIM
ports."
::= { g9983Groups 2 }
g9983AlarmConfGroup OBJECT-GROUP
OBJECTS {
g9983PortConfSvcUpDownEnable
}
STATUS current
DESCRIPTION
"A collection of objects required for configuration of alarm
thresholds and notifications in G.Bond/TDIM ports."
::= { g9983Groups 3 }
g9983NotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
g9983SvcUp,
g9983SvcDown
}
STATUS current
Beili Standards Track [Page 48]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"This group supports notifications of significant conditions
associated with G.Bond/TDIM ports."
::= { g9983Groups 4 }
g9983PerfCurrGroup OBJECT-GROUP
OBJECTS {
g9983PortPmCur15MinValidIntervals,
g9983PortPmCur15MinInvalidIntervals,
g9983PortPmCur15MinTimeElapsed,
g9983PortPmCur15MinCrc4s,
g9983PortPmCur15MinCrc6s,
g9983PortPmCur15MinCrc8s,
g9983PortPmCur1DayValidIntervals,
g9983PortPmCur1DayInvalidIntervals,
g9983PortPmCur1DayTimeElapsed,
g9983PortPmCur1DayCrc4s,
g9983PortPmCur1DayCrc6s,
g9983PortPmCur1DayCrc8s,
g9983SvcPmCur15MinValidIntervals,
g9983SvcPmCur15MinInvalidIntervals,
g9983SvcPmCur15MinTimeElapsed,
g9983SvcPmCur15MinDowns,
g9983SvcPmCur1DayValidIntervals,
g9983SvcPmCur1DayInvalidIntervals,
g9983SvcPmCur1DayTimeElapsed,
g9983SvcPmCur1DayDowns
}
STATUS current
DESCRIPTION
"A collection of objects supporting OPTIONAL current Performance
Monitoring information for G.Bond/TDIM ports."
::= { g9983Groups 5 }
g9983Perf15MinGroup OBJECT-GROUP
OBJECTS {
g9983PortPm15MinIntervalMoniTime,
g9983PortPm15MinIntervalCrc4s,
g9983PortPm15MinIntervalCrc6s,
g9983PortPm15MinIntervalCrc8s,
g9983PortPm15MinIntervalValid,
g9983SvcPm15MinIntervalMoniTime,
g9983SvcPm15MinIntervalDowns,
g9983SvcPm15MinIntervalValid
}
STATUS current
Beili Standards Track [Page 49]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"A collection of objects supporting OPTIONAL historical
Performance Monitoring information for G.Bond/TDIM ports, during
previous 15-minute intervals."
::= { g9983Groups 6 }
g9983Perf1DayGroup OBJECT-GROUP
OBJECTS {
g9983PortPm1DayIntervalMoniTime,
g9983PortPm1DayIntervalCrc4s,
g9983PortPm1DayIntervalCrc6s,
g9983PortPm1DayIntervalCrc8s,
g9983PortPm1DayIntervalValid,
g9983SvcPm1DayIntervalMoniTime,
g9983SvcPm1DayIntervalDowns,
g9983SvcPm1DayIntervalValid
}
STATUS current
DESCRIPTION
"A collection of objects supporting OPTIONAL historical
Performance Monitoring information for G.Bond/TDIM ports, during
previous 1-day intervals."
::= { g9983Groups 7 }
-- Compliance Statements
g9983Compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for G.Bond/TDIM interfaces.
Compliance with the following external compliance statements
is REQUIRED:
MIB Module Compliance Statement
---------- --------------------
IF-MIB ifCompliance3
GBOND-MIB gBondCompliance"
MODULE -- this module
MANDATORY-GROUPS {
g9983BasicGroup,
g9983AlarmConfGroup,
g9983NotificationGroup
}
GROUP g9983FecGroup
Beili Standards Track [Page 50]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
DESCRIPTION
"Support for this group is only required for implementations
supporting the G.Bond/TDIM FEC and Interleaver function."
GROUP g9983PerfCurrGroup
DESCRIPTION
"Support for this group is only required for implementations
supporting Performance Monitoring."
GROUP g9983Perf15MinGroup
DESCRIPTION
"Support for this group is only required for implementations
supporting historical Performance Monitoring."
GROUP g9983Perf1DayGroup
DESCRIPTION
"Support for this group is only required for implementations
supporting historical Performance Monitoring."
::= { g9983Compliances 1 }
END
7. Security Considerations
There are a number of managed 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:
o Changing of the g9983PortConfAdminServices object may lead to a
potential service disruption, by changing a particular service's
position (therefore changing its drop priority) or even removing
the service from the link altogether.
o Changing of g9983SvcTable configuration parameters (e.g.,
g9983SvcType or g9983SvcSize) may lead to a potential service
impairment; for example, a TDM service would be dropped if there
is not enough actual bandwidth on the bonded link to support this
service.
o Changing of g9983PortConfTable configuration parameters (e.g.,
g9983PortConfFecAdminState) may lead to anything from link quality
and rate degradation to a complete link initialization failure.
Beili Standards Track [Page 51]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Some of the readable objects in this MIB module (i.e., those with
MAX-ACCESS other than not-accessible) may be considered sensitive or
vulnerable in some network environments since, collectively, they
provide information about the performance of network interfaces and
can reveal some aspects of their configuration.
In particular, since a bonded xDSL port can be comprised of multiple
Unshielded Twisted Pair (UTP) voice-grade copper, located in the same
bundle with other pairs belonging to another operator/customer, it is
theoretically possible to eavesdrop on a G.Bond transmission, simply
by "listening" to cross-talk from the bonded pairs, especially if the
operating parameters of the G.Bond link in question are known.
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 the network via SNMP. These are the
tables and objects and their sensitivity/vulnerability:
o g9983PortStatFecOperState in the g9983PortStatTable indicates
whether the FEC function is enabled, which may aid in deciphering
the G.Bond/TDIM transmissions.
o The g9983OperSvcTable provides current operational service
configuration, which may aid in deciphering the G.Bond/TDIM
transmissions.
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.
Beili Standards Track [Page 52]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
8. IANA Considerations
IANA has allocated value 210 as the Object identifier for g9983MIB
MODULE-IDENTITY <http://www.iana.org/> in the MIB-2 transmission
sub-tree.
9. Acknowledgments
This document was produced by the [ADSLMIB] working group.
Special thanks to Dan Romascanu for his meticulous review of this
text.
10. References
10.1. Normative References
[G.998.3] ITU-T, "Multi-pair bonding using time-division inverse
multiplexing", ITU-T Recommendation G.998.3, January 2005,
<http://www.itu.int/rec/T-REC-G.998.3/en>.
[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., Perkins, D., and J. Schoenwaelder,
"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.
[RFC3705] Ray, B. and R. Abbi, "High Capacity Textual Conventions
for MIB Modules Using Performance History Based on 15
Minute Intervals", RFC 3705, February 2004.
Beili Standards Track [Page 53]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
[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.
[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.
[RFC6353] Hardaker, W., "Transport Layer Security (TLS) Transport
Model for the Simple Network Management Protocol (SNMP)",
RFC 6353, July 2011.
[RFC6765] Beili, E. and M. Morgenstern, "xDSL Multi-Pair Bonding
(G.Bond) MIB", RFC 6765, February 2013.
[TR-159] Beili, E. and M. Morgenstern, "Management Framework for
xDSL Bonding", Broadband Forum Technical Report TR-159,
December 2008, <http://www.broadband-forum.org/technical/
download/TR-159.pdf>.
10.2. Informative References
[ADSLMIB] IETF, "ADSL MIB (adslmib) Charter",
<http://datatracker.ietf.org/wg/adslmib/charter/>.
[G.704] ITU-T, "Synchronous frame structures used at 1544, 6312,
2048, 8448 and 44 736 kbit/s hierarchical levels", ITU-T
Recommendation G.704, October 1998,
<http://www.itu.int/rec/T-REC-G.704/en>.
[RFC3410] Case, J., Mundy, R., Partain, D., and B. Stewart,
"Introduction and Applicability Statements for Internet-
Standard Management Framework", RFC 3410, December 2002.
[RFC3593] Tesink, K., "Textual Conventions for MIB Modules Using
Performance History Based on 15 Minute Intervals",
RFC 3593, September 2003.
[RFC4181] Heard, C., "Guidelines for Authors and Reviewers of MIB
Documents", BCP 111, RFC 4181, September 2005.
Beili Standards Track [Page 54]
^L
RFC 6766 G.Bond/TDIM MIB February 2013
Author's Address
Edward Beili
Actelis Networks
25 Bazel St.
Petach-Tikva 49103
Israel
Phone: +972-3-924-3491
EMail: edward.beili@actelis.com
Beili Standards Track [Page 55]
^L
|