1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
|
-- *****************************************************************
-- DASAN ADSL MIB - The MIB for ADSL, ADSL2Plus Product
--
-- July 2004, Dongha Lee
--
-- Copyright (c) 2001 by Dasan Co., Ltd.
-- All rights reserved.
-- *****************************************************************
DASAN-ADSL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, mib-2,
IpAddress, Integer32, Counter32, Gauge32, TimeTicks, Unsigned32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, TimeStamp, TruthValue, DisplayString,
RowStatus
FROM SNMPv2-TC
ifIndex
FROM IF-MIB
adslLineAlarmConfProfileName, adslAtucChanIntervalNumber, adslAtucIntervalNumber, adslLineConfProfileName, adslAturChanIntervalNumber
FROM ADSL-LINE-MIB
dasanMgmt FROM DASAN-SMI;
dasanAdslMIB MODULE-IDENTITY
LAST-UPDATED "200407150000Z"
ORGANIZATION "Dasan Co., Ltd."
CONTACT-INFO
"Dasan Co., Ltd."
DESCRIPTION
"The MIB module to describe ADSL product.
The MIB module that provides objects that are proprietary and extension to ADSL-
LINE-MIB. The MIB include extension to following Tables.
1.) adslLineTable
2.) adslAtucPhysTable
3.) adslAturPhysTable
4.) adslAtucChanTable
5.) adslAturChanTable
6.) adslAtucPerfDataTable
--7.) adslAturPerfDataTable
8.) adslAtucIntervalTable
--9.) adslAturIntervalTable
10.) adslAtucChanPerfDataTable
11.) adslAturChanPerfDataTable
12.) adslAtucChanIntervalTable
13.) adslAturChanIntervalTable
14.) adslLineConfProfileTable
15.) adslLineAlarmConfProfileTable
The MIB also include a set of scalar(s) clubbed under the group 'dsAdslCapabilityGroup'."
::= { dasanMgmt 5 }
dasanAdslLineMIB OBJECT IDENTIFIER ::= { dasanAdslMIB 1 }
-- dasanAdslMIBObjects OBJECT IDENTIFIER ::= { dasanAdslMIB 1 }
dasanAdslMIBObjects OBJECT IDENTIFIER ::= { dasanAdslLineMIB 1 }
-- dsAdslLineMIB OBJECT IDENTIFIER ::= { dasanAdslMIBObjects 1 }
dsDslSystemParamGroup OBJECT IDENTIFIER ::= { dasanAdslMIBObjects 1 }
dsDslSystemDslType OBJECT-TYPE
SYNTAX INTEGER{
adsl(1),
sdsl(2),
shdsl(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object identifies the firmware to be downloaded."
DEFVAL { 1 }
::= { dsDslSystemParamGroup 1 }
dsDslSystemLineCodingType OBJECT-TYPE
SYNTAX INTEGER{
other(1),
dmt(2),
cap(3),
qam(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates ADSL line code type."
DEFVAL { 2 }
::= { dsDslSystemParamGroup 2 }
dsDslSystemLineTxCfg OBJECT-TYPE
SYNTAX BITS{
ansit1413(0),
etsi(1),
q9921PotsNonOverlapped(2),
q9921PotsOverlapped(3),
q9921IsdnNonOverlapped(4),
q9921IsdnOverlapped(5),
q9921TcmIsdnNonOverlapped(6),
q9921TcmIsdnOverlapped(7),
q9922PotsNonOverlapped(8),
q9922PotsOverlapped(9),
q9922TcmIsdnNonOverlapped(10),
q9922TcmIsdnOverlapped(11),
q9921TcmIsdnSymmetric(12)
-- q9922TcmIsdnNonOverlapped(GS_CFG_LINE_TX_CFG_Q9922_TCM_ISDN_NON_OVERLAPPED),
-- q9922TcmIsdnOverlapped(GS_CFG_LINE_TX_CFG_Q9922_TCM_ISDN_OVERLAPPED),
--q9921TcmIsdnSymmetric(GS_CFG_LINE_TX_CFG_Q9921_TCM_ISDN_SYMMETRIC),
--adslPlusPotsNonOverlapped(GS_CFG_LINE_TX_CFG_ADSL_PLUS_POTS_NON_OVERLAPPED),
--q9921GspanPlusPotsNonOverlapped(GS_CFG_LINE_TX_CFG_Q9921_GSPAN_PLUS_POTS_NON_OVERLAPPED),
--q9921GspanPlusPotsOverlapped(GS_CFG_LINE_TX_CFG_Q9921_GSPAN_PLUS_POTS_OVERLAPPED),
--q9923Adsl2PotsOverlapped(GS_CFG_LINE_TX_CFG_Q9923_ADSL2_POTS_OVERLAPPED),
--q9923Adsl2PotsNonOverlapped(GS_CFG_LINE_TX_CFG_Q9923_ADSL2_POTS_NON_OVERLAPPED),
--q9925Adsl2PlusPotsOverlapped(GS_CFG_LINE_TX_CFG_Q9925_ADSL2_PLUS_POTS_OVERLAPPED),
--q9925Adsl2PlusPotsNonOverlapped(GS_CFG_LINE_TX_CFG_Q9925_ADSL2_PLUS_POTS_NON_OVERLAPPED),
--q9923Readsl2PotsOverlapped(GS_CFG_LINE_TX_CFG_Q9923_READSL2_POTS_OVERLAPPED),
--q9923Readsl2PotsNonOverlapped(GS_CFG_LINE_TX_CFG_Q9923_READSL2_POTS_NON_OVERLAPPED),
--adslPlusPotsOverlapped(GS_CFG_LINE_TX_CFG_ADSL_PLUS_POTS_OVERLAPPED)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates transmission capabilities with which the DSL system is configured."
DEFVAL { 12 }
::= { dsDslSystemParamGroup 3 }
--2.7.6
--dsDslSystemShdslTxMode OBJECT-TYPE
-- SYNTAX BITS{
-- region1(0),
-- region2(1)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object indicates transmission capabilities with which the DSL system is configured. Not valid for SHDSL."
-- DEFVAL { GS_CFG_DEF_SHDSL_REGION }
-- ::= { dsDslSystemParamGroup 4 }
dsAdslCapabilityGroup OBJECT IDENTIFIER ::= { dasanAdslMIBObjects 2 }
dsAdslCapabilityLineTxCap OBJECT-TYPE
SYNTAX BITS{
ansit1413(0),
etsi(1),
q9921PotsNonOverlapped(2),
q9921PotsOverlapped(3),
q9921IsdnNonOverlapped(4),
q9921IsdnOverlapped(5),
q9921TcmIsdnNonOverlapped(6),
q9921TcmIsdnOverlapped(7),
q9922PotsNonOverlapped(8),
q9922PotsOverlapped(9),
q9922TcmIsdnNonOverlapped(10),
q9922TcmIsdnOverlapped(11),
q9921TcmIsdnSymmetric(12),
adslPlusPotsNonOverlapped(13),
q9921GspanPlusPotsNonOverlapped(31),
q9921GspanPlusPotsOverlapped(30),
q9923Adsl2PotsOverlapped(29),
q9923Adsl2PotsNonOverlapped(28),
q9925Adsl2PlusPotsOverlapped(27),
q9925Adsl2PlusPotsNonOverlapped(26),
q9923Readsl2PotsOverlapped(22),
q9923Readsl2PotsNonOverlapped(23),
adslPlusPotsOverlapped(18)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This bitmap specifies which all transmission modes, which the ATU-C is capable of supporting. Right now support for Annex A (q9921PotsNonOverlapped(2) and q9921PotsOverlapped(3)) is present. This value depends on the DSL PHY firmware present on Columbia MND"
::= { dsAdslCapabilityGroup 1 }
dsAdslLineExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslLineExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table includes common attributes describing both ends of the line. It is required for all ADSL physical interfaces. This Table is an extension to adslLineTable defined in rfc-2662."
::= { dasanAdslMIBObjects 3 }
dsAdslLineExtnEntry OBJECT-TYPE
SYNTAX DsAdslLineExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslLineExtnTable.
The Table is indexed by ifIndex."
INDEX { ifIndex }
::= { dsAdslLineExtnTable 1 }
DsAdslLineExtnEntry ::= SEQUENCE {
dsAdslLineExtnAction INTEGER,
dsAdslLineExtnUtopiaL2RxAddr INTEGER,
dsAdslLineExtnUtopiaL2TxAddr INTEGER,
dsAdslLineExtnTransAtucCap BITS,
dsAdslLineExtnTransAtucActual BITS,
dsAdslLineExtnClockType INTEGER,
dsAdslLineExtnLineDmtTrellis INTEGER}
--2.7.6 GsvAdslLineExtnEntry (gsvAdslLineExtnTable.mib)
--dsAdslLineExtnTransAturCap BITS,
--dsAdslLineExtnPMConfPMSF INTEGER,
--dsAdslLineExtnDeltConfLDSF INTEGER,
--dsAdslLineExtnTransAtucConfig BITS }
dsAdslLineExtnAction OBJECT-TYPE
SYNTAX INTEGER{
startup(0),
spectrumReverb(5),
analogLb(6),
digitalLb(7),
atmLp(10),
spectrumMedley(26),
spectrumPilot(27),
spectrumCMtpr(30),
spectrumRMtpr(32),
hybridLossTest(33),
rcvLinearityTest(34),
rcvFilterTest(35),
rcvPowerPerBinTest(36),
idleNoisePerBinTest(37),
totalIdleNoiseTest(38),
selt(4134),
shutdown(101),
wakeup(102)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"this object indicates parameter that allows actions on a per line basis. These actions include abort, startup, and tests."
DEFVAL { 0 }
::= { dsAdslLineExtnEntry 1 }
dsAdslLineExtnUtopiaL2RxAddr OBJECT-TYPE
SYNTAX INTEGER ( 1..254 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates UTOPIA Level 2 Rx address for a line."
::= { dsAdslLineExtnEntry 2 }
dsAdslLineExtnUtopiaL2TxAddr OBJECT-TYPE
SYNTAX INTEGER ( 1..254 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates UTOPIA Level 2 Tx address for a line."
::= { dsAdslLineExtnEntry 3 }
dsAdslLineExtnTransAtucCap OBJECT-TYPE
SYNTAX BITS{
ansit1413(0),
etsi(1),
q9921PotsNonOverlapped(2),
q9921PotsOverlapped(3),
q9921IsdnNonOverlapped(4),
q9921isdnOverlapped(5),
q9921tcmIsdnNonOverlapped(6),
q9921tcmIsdnOverlapped(7),
q9922potsNonOverlapeed(8),
q9922potsOverlapped(9),
q9922tcmIsdnNonOverlapped(10),
q9922tcmIsdnOverlapped(11),
q9921tcmIsdnSymmetric(12),
adslPlusPotsNonOverlapped(13),
q9921GspanPlusPotsNonOverlapped(31),
q9921GspanPlusPotsOverlapped(30),
vdslNonOverlapped(25),
vdslOverlapped(24),
q9923Adsl2PotsOverlapped(29),
q9923Adsl2PotsNonOverlapped(28),
q9925Adsl2PlusPotsOverlapped(27),
q9925Adsl2PlusPotsNonOverlapped(26),
q9923Readsl2PotsOverlapped(22),
q9923Readsl2PotsNonOverlapped(23),
adslPlusPotsOverlapped(18)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmission modes that the ATU-C is capable of supporting. The modes available are limited by the design of the equipment. REFERENCE Section 7.3.2 ITU G.997.1."
::= { dsAdslLineExtnEntry 4 }
dsAdslLineExtnTransAtucActual OBJECT-TYPE
SYNTAX BITS{
ansit1413(0),
etsi(1),
q9921PotsNonOverlapped(2),
q9921PotsOverlapped(3),
q9921IsdnNonOverlapped(4),
q9921isdnOverlapped(5),
q9921tcmIsdnNonOverlapped(6),
q9921tcmIsdnOverlapped(7),
q9922potsNonOverlapeed(8),
q9922potsOverlapped(9),
q9922tcmIsdnNonOverlapped(10),
q9922tcmIsdnOverlapped(11),
q9921tcmIsdnSymmetric(12),
adslPlusPotsNonOverlapped(13)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The transmission mode of the ATU-C. This object returns if there is no mode currently known. The initialization with the ATU-R will determine the mode used. REFERENCE Section 7.3.2 ITU G.997.1."
::= { dsAdslLineExtnEntry 5 }
dsAdslLineExtnClockType OBJECT-TYPE
SYNTAX INTEGER{
oscillator(0),
crystal(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates parameter to set use of either crystal or oscillator."
::= { dsAdslLineExtnEntry 6 }
dsAdslLineExtnLineDmtTrellis OBJECT-TYPE
SYNTAX INTEGER{
trellisOn(1),
trellisOff(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Parameter that indicates whether trellis coding has been enabled or disabled. Trellis coding should always be enabled for its clear performance advantage."
::= { dsAdslLineExtnEntry 7 }
--dsAdslLineExtnTransAturCap OBJECT-TYPE
-- SYNTAX BITS{
-- ansit1413(0),
-- etsi(1),
-- q9921PotsNonOverlapped(2),
-- q9921PotsOverlapped(3),
-- q9921IsdnNonOverlapped(4),
-- q9921isdnOverlapped(5),
-- q9921tcmIsdnNonOverlapped(6),
-- q9921tcmIsdnOverlapped(7),
-- q9922potsNonOverlapeed(8),
-- q9922potsOverlapped(9),
-- q9922tcmIsdnNonOverlapped(10),
-- q9922tcmIsdnOverlapped(11),
-- q9921tcmIsdnSymmetric(12),
-- adslPlusPotsNonOverlapped(13),
-- q9921GspanPlusPotsNonOverlapped(31),
-- q9921GspanPlusPotsOverlapped(30),
-- vdslNonOverlapped(25),
-- vdslOverlapped(24),
-- q9923Adsl2PotsOverlapped(29),
-- q9923Adsl2PotsNonOverlapped(28),
-- q9925Adsl2PlusPotsOverlapped(27),
-- q9925Adsl2PlusPotsNonOverlapped(26),
-- q9923Readsl2PotsOverlapped(22),
-- q9923Readsl2PotsNonOverlapped(23),
-- adslPlusPotsOverlapped(18)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "The transmission modes that the ATU-R is capable of supporting. The modes available are limited by the design of the equipment."
-- ::= { dsAdslLineExtnEntry 8 }
--dsAdslLineExtnPMConfPMSF OBJECT-TYPE
-- SYNTAX INTEGER{
-- idleop(0),
-- dataop(1),
-- l2op(141)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "PM-related parameter used by the ATU-C to force a change in the line state.(Not available for ADSL/ADSL2Plus)."
-- DEFVAL { GS_CFG_DEF_ATUC_PM_CONF_PMSF }
-- ::= { dsAdslLineExtnEntry 9 }
--dsAdslLineExtnDeltConfLDSF OBJECT-TYPE
-- SYNTAX INTEGER{
-- inhibit(0),
-- force(1)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "DELT-related parameter used by the ATU-C to force the line into loop diagnostics mode.(Not available for ADSL and ADSL2plus)."
-- DEFVAL { GS_CFG_DEF_ATUC_DELT_CONF_LDSF }
-- ::= { dsAdslLineExtnEntry 10 }
--dsAdslLineExtnTransAtucConfig OBJECT-TYPE
-- SYNTAX BITS{
-- ansit1413(1)
-- ansit1413(GS_CFG_LINE_TRANS_ATUC_CONFIG_ANSIT1413),
-- etsi(GS_CFG_LINE_TRANS_ATUC_CONFIG_ETSI),
-- q9921PotsNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921_POTS_NON_OVERLAPPED),
-- q9921PotsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921_POTS_OVERLAPPED),
-- q9921IsdnNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921_ISDN_NON_OVERLAPPED),
-- q9921isdnOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921ISDN_OVERLAPPED),
-- q9921tcmIsdnNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921TCM_ISDN_NON_OVERLAPPED),
-- q9921tcmIsdnOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921TCM_ISDN_OVERLAPPED),
-- q9922potsNonOverlapeed(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9922POTS_NON_OVERLAPEED),
-- q9922potsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9922POTS_OVERLAPPED),
-- q9922tcmIsdnNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9922TCM_ISDN_NON_OVERLAPPED),
-- q9922tcmIsdnOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9922TCM_ISDN_OVERLAPPED),
-- q9921tcmIsdnSymmetric(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921TCM_ISDN_SYMMETRIC),
-- adslPlusPotsNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_ADSL_PLUS_POTS_NON_OVERLAPPED),
-- q9921GspanPlusPotsNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921_GSPAN_PLUS_POTS_NON_OVERLAPPED),
-- q9921GspanPlusPotsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9921_GSPAN_PLUS_POTS_OVERLAPPED),
-- q9923Adsl2PotsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9923_ADSL2_POTS_OVERLAPPED),
-- q9923Adsl2PotsNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9923_ADSL2_POTS_NON_OVERLAPPED),
-- q9925Adsl2PlusPotsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9925_ADSL2_PLUS_POTS_OVERLAPPED),
-- q9925Adsl2PlusPotsNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9925_ADSL2_PLUS_POTS_NON_OVERLAPPED),
-- q9923Readsl2PotsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9923_READSL2_POTS_OVERLAPPED),
-- q9923Readsl2PotsNonOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_Q9923_READSL2_POTS_NON_OVERLAPPED),
-- adslPlusPotsOverlapped(GS_CFG_LINE_TRANS_ATUC_CONFIG_ADSL_PLUS_POTS_OVERLAPPED)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The transmission modes that the ATU-C is capable of supporting. The modes available are limited by the design of the equipment. REFERENCE Section 7.3.2 ITU G.997.1."
-- DEFVAL { GS_CFG_DEF_TRANS_ATUC_CONFIG }
-- ::= { dsAdslLineExtnEntry 11 }
--
-- --
dsAdslAtucPhysExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAtucPhysExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides one row for each ATUC. This table is an extention to adslAtucPhysTable defined in rfc-2662."
::= { dasanAdslMIBObjects 4 }
dsAdslAtucPhysExtnEntry OBJECT-TYPE
SYNTAX DsAdslAtucPhysExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAtucPhysExtnTable.
The Table is indexed by ifIndex."
INDEX { ifIndex }
::= { dsAdslAtucPhysExtnTable 1 }
DsAdslAtucPhysExtnEntry ::= SEQUENCE {
dsAdslAtucPhysExtnOpState INTEGER,
dsAdslAtucPhysExtnActualStd INTEGER,
dsAdslAtucPhysExtnBertError INTEGER,
dsAdslAtucPhysExtnTxAtmCellCounter Counter32,
dsAdslAtucPhysExtnRxAtmCellCounter INTEGER,
dsAdslAtucPhysExtnStartProgress INTEGER,
dsAdslAtucPhysExtnIdleBertError INTEGER,
dsAdslAtucPhysExtnIdleBertCells INTEGER,
dsAdslAtucPhysExtnBertSync INTEGER,
dsAdslAtucPhysExtnParametricTestResult INTEGER,
-- 2.7.6 :GsvAdslAtucPhysExtnEntry (gsvAdslAtucPhysExtnTable.mib)
--dsAdslAtucPhysExtnSeltInfoValid INTEGER,
--dsAdslAtucPhysExtnSeltLoopLen INTEGER,
--dsAdslAtucPhysExtnSeltLoopEnd INTEGER,
--dsAdslAtucPhysExtnSeltLoopGauge INTEGER,
--dsAdslAtucPhysExtnSeltUpShannonCap Gauge32,
--dsAdslAtucPhysExtnSeltDownShannonCap Gauge32,
--dsAdslAtucPhysExtnSeltInbandNoise OCTET STRING,
--dsAdslAtucPhysExtnSeltTerminationResp OCTET STRING,
--dsAdslAtucPhysExtnSeltUpMgnAtRate OCTET STRING,
--dsAdslAtucPhysExtnSeltDownMgnAtRate OCTET STRING,
dsAdslAtucPhysExtnDataBoostStatus INTEGER,
dsAdslAtucPhysExtnTestArray OCTET STRING,
dsAdslAtucPhysExtnChanPerfCD INTEGER,
dsAdslAtucPhysExtnChanPerfBE INTEGER,
dsAdslAtucPhysExtnDeltHLINSCus INTEGER,
dsAdslAtucPhysExtnDeltHLINpsus OCTET STRING,
dsAdslAtucPhysExtnDeltHLOGMTus INTEGER,
dsAdslAtucPhysExtnDeltHLOGpsus OCTET STRING,
dsAdslAtucPhysExtnDeltQLNMTus INTEGER,
dsAdslAtucPhysExtnDeltQLNpsus OCTET STRING,
dsAdslAtucPhysExtnDeltLastTxState INTEGER,
dsAdslAtucPhysExtnPMState INTEGER,
dsAdslAtucPhysExtnChanPerfCU INTEGER,
dsAdslAtucPhysExtnExtendedPsdStatus INTEGER,
dsAdslAtucPhysExtnChipVersion INTEGER,
dsAdslAtucPhysExtnPilotTone INTEGER,
dsAdslAtucMSGds Gauge32,
dsAdslAtucPhysExtnPsdMaskMode INTEGER }
dsAdslAtucPhysExtnOpState OBJECT-TYPE
SYNTAX INTEGER{
idle(0),
data(1),
handshake(16),
training(24),
llTest(128),
dlTest(131),
txTest(132),
framerSync(26),
fastRetrainInProg(27),
bootupLoad(8),
atmLpTest(133),
discovery(46),
deltTraining(139),
delt(140)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the operational state of the ATU. Values include idle,handshake, training, etc."
::= { dsAdslAtucPhysExtnEntry 1 }
dsAdslAtucPhysExtnActualStd OBJECT-TYPE
SYNTAX INTEGER{
t1413(0),
gLite(1),
gDmt(2),
alctl14(3),
multimode(4),
adi(5),
alctl(6),
t1413auto(9),
adslPlus(48),
gspanPlus(64),
adsl2(26),
adsl2Plus(27),
reAdsl2(28),
adsl2Auto(29),
adsl2PlusAuto(30)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides actual ATU-C configuration based on outcome of negotiation with ATU-R. In this case, the parameter provides actual standard used for the connection."
::= { dsAdslAtucPhysExtnEntry 2 }
dsAdslAtucPhysExtnBertError OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the No. of bit errors detected during BERT."
::= { dsAdslAtucPhysExtnEntry 3 }
dsAdslAtucPhysExtnTxAtmCellCounter OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object Provides transmit ATM cell counter."
::= { dsAdslAtucPhysExtnEntry 4 }
dsAdslAtucPhysExtnRxAtmCellCounter OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object Provides receive ATM cell counter."
::= { dsAdslAtucPhysExtnEntry 5 }
dsAdslAtucPhysExtnStartProgress OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides current detailed start up information to be used for debugging."
::= { dsAdslAtucPhysExtnEntry 6 }
dsAdslAtucPhysExtnIdleBertError OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bit errors."
::= { dsAdslAtucPhysExtnEntry 7 }
dsAdslAtucPhysExtnIdleBertCells OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of idle cells."
::= { dsAdslAtucPhysExtnEntry 8 }
dsAdslAtucPhysExtnBertSync OBJECT-TYPE
SYNTAX INTEGER{
bertOutOfSync(0),
bertInSync(128)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the Signal is in Sync or not."
::= { dsAdslAtucPhysExtnEntry 9}
dsAdslAtucPhysExtnParametricTestResult OBJECT-TYPE
SYNTAX INTEGER{
ok(0),
fail(1),
dspIfFail(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Result of the Parametric Test conducted on the Xcvr."
::= { dsAdslAtucPhysExtnEntry 10}
--dsAdslAtucPhysExtnSeltInfoValid OBJECT-TYPE
-- SYNTAX INTEGER{
-- true(1),
-- notConnected(32768),
-- lostConnection(33024),
-- noResponseSeltEngine(33280)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Indicates the information validity for the SELT operation conducted on the Xcvr."
-- ::= { dsAdslAtucPhysExtnEntry 11 }
--dsAdslAtucPhysExtnSeltLoopLen OBJECT-TYPE
-- SYNTAX INTEGER
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Indicates the LOOP Length in Feet once when the SELT information is valid on the Xcvr."
-- ::= { dsAdslAtucPhysExtnEntry 12 }
--dsAdslAtucPhysExtnSeltLoopEnd OBJECT-TYPE
-- SYNTAX INTEGER{
-- open(0),
-- short(1),
-- unknown(2)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Indicates whether the loop is short or open once when the SELT information is valid on the Xcvr."
-- ::= { dsAdslAtucPhysExtnEntry 13 }
--dsAdslAtucPhysExtnSeltLoopGauge OBJECT-TYPE
-- SYNTAX INTEGER{
-- greater26awg(4294967295),
-- equal26awg(0),
-- equal24awg(1),
-- less26awg(2),
-- unknownAwg(3)
-- }
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Indicates the LOOP wire_gauge information once when the SELT information is valid on the Xcvr."
-- ::= { dsAdslAtucPhysExtnEntry 14 }
--dsAdslAtucPhysExtnSeltUpShannonCap OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Indicates the LOOP Upstream Shannon Capacity (in bps) once when the SELT information is valid on the Xcvr."
-- ::= { dsAdslAtucPhysExtnEntry 15 }
--dsAdslAtucPhysExtnSeltDownShannonCap OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Indicates the LOOP Downstream Shannon Capacity (in bps) once when the SELT information is valid on the Xcvr."
-- ::= { dsAdslAtucPhysExtnEntry 16 }
--dsAdslAtucPhysExtnSeltInbandNoise OBJECT-TYPE
-- SYNTAX OCTET STRING (SIZE ( 0..42 ) )
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "256 values that indicate inband noise length in dBM/Hz, covering both bands from 0 to 1.1 MHz."
-- ::= { dsAdslAtucPhysExtnEntry 17 }
--dsAdslAtucPhysExtnSeltTerminationResp OBJECT-TYPE
-- SYNTAX OCTET STRING (SIZE ( 0..42 ) )
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "180 discrete values that indicate termination response magnitude from 0 to 18Kft."
-- ::= { dsAdslAtucPhysExtnEntry 18 }
--dsAdslAtucPhysExtnSeltUpMgnAtRate OBJECT-TYPE
-- SYNTAX OCTET STRING (SIZE ( 0..42 ) )
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "150 values that indicate SNR margin in dB/10 at a particular rate are provided, at 100K increments, up to 15 Mbps."
-- ::= { dsAdslAtucPhysExtnEntry 19 }
--dsAdslAtucPhysExtnSeltDownMgnAtRate OBJECT-TYPE
-- SYNTAX OCTET STRING (SIZE ( 0..42 ) )
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "150 values that indicate SNR margin in dB/10 at a particular rate are provided, at 100K increments, up to 15 Mbps."
-- ::= { dsAdslAtucPhysExtnEntry 20 }
dsAdslAtucPhysExtnDataBoostStatus OBJECT-TYPE
SYNTAX INTEGER{
enabled(32768),
disabled(0)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether DataBoost is utilized for the connection."
::= { dsAdslAtucPhysExtnEntry 21 }
dsAdslAtucPhysExtnTestArray OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the Parametric Test Array. Every Four octects refer to one element in this array of octets."
::= { dsAdslAtucPhysExtnEntry 22 }
dsAdslAtucPhysExtnChanPerfCD OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The near-end delineated total cell count performance parameter is a count of the total number of cells passed through the cell delineation and HEC function process operating on the ATM Data Path while in the SYNC state. (Not available for ADSL)."
::= { dsAdslAtucPhysExtnEntry 23 }
dsAdslAtucPhysExtnChanPerfBE OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The near-end idle bit error count performance parameter is a count of the number of bit errors in the idle cell payload received in the ATM Data Path at the near-end. (Not available for ADSL)."
::= { dsAdslAtucPhysExtnEntry 24 }
dsAdslAtucPhysExtnDeltHLINSCus OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides the scale factor to be applied to the upstream Hlin(f) values.(Not available for ADSL and ADSL2plus)."
::= { dsAdslAtucPhysExtnEntry 25 }
dsAdslAtucPhysExtnDeltHLINpsus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides an array of complex upstream Hlin(f) values in linear scale. (Not available for ADSL and ADSL2plus). Every two octets refer to one element in this array of octets."
::= { dsAdslAtucPhysExtnEntry 26 }
dsAdslAtucPhysExtnDeltHLOGMTus OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides the number of symbols used to measure the upstream Hlog(f).(Not available for ADSL and ADSL2plus)."
::= { dsAdslAtucPhysExtnEntry 27 }
dsAdslAtucPhysExtnDeltHLOGpsus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides an array of real upstream Hlog(f) values in dB. (Not available for ADSL and ADSL2plus). Every two octets refer to one element in this array of octets."
::= { dsAdslAtucPhysExtnEntry 28 }
dsAdslAtucPhysExtnDeltQLNMTus OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides the number of symbols used to measure the upstream QLN(f) values. (Not available for ADSL and ADSL2plus)."
::= { dsAdslAtucPhysExtnEntry 29 }
dsAdslAtucPhysExtnDeltQLNpsus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides an array of real upstream QLN(f) values in dB. (Not available for ADSL and ADSL2plus). Every two octets refer to one element in this array of octets."
::= { dsAdslAtucPhysExtnEntry 30 }
dsAdslAtucPhysExtnDeltLastTxState OBJECT-TYPE
SYNTAX INTEGER{
dmtatucg9941(0),
dmtatucquiet1(1),
dmtatuccomb1(2),
dmtatucquiet2(3),
dmtatuccomb2(4),
dmtatucicomb1(5),
dmtatuclineprob(6),
dmtatucquiet3(7),
dmtatuccomb3(8),
dmtatucicomb2(9),
dmtatucmsgfmt(10),
dmtatucmsgpcb(11),
dmtatucquiet4(12),
dmtatucreverb1(13),
dmtatuctref1(14),
dmtatucreverb2(15),
dmtatucect(16),
dmtatucreverb3(17),
dmtatuctref2(18),
dmtatucreverb4(19),
dmtatucsegue1(20),
dmtatucmsg1(21),
dmtatucreverb5(22),
dmtatucsegue2(23),
dmtatucmedley(24),
dmtatucexchmarker(25),
dmtatucmsg2(26),
dmtatucreverb6(27),
dmtatucsegue3(28),
dmtatucparams(29),
dmtatucreverb7(30),
dmtatucsegue4(31),
dmtatucshowtime(32)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides last successful transmitted initialization state by the ATU-C. (Not available for ADSL and ADSL2plus)."
::= { dsAdslAtucPhysExtnEntry 31 }
dsAdslAtucPhysExtnPMState OBJECT-TYPE
SYNTAX INTEGER{
idleop(0),
dataop(1),
l2op(141)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line Power Management State. (Not available for ADSL)."
::= { dsAdslAtucPhysExtnEntry 32 }
dsAdslAtucPhysExtnChanPerfCU OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The near-end user total cell count performance parameter is a count of the total number of cells in the ATM Data Path delivered at the V-C (for ATU-C) or T-R (for ATU-R) interface. (Not available for ADSL)."
::= { dsAdslAtucPhysExtnEntry 33 }
dsAdslAtucPhysExtnExtendedPsdStatus OBJECT-TYPE
SYNTAX INTEGER{
standard(0),
jj100(1),
extended(32768)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GlobespanVirata parameter that indicates whether an extended or the standard upstream PSD is used - for G.Span Plus mode of operation only. Only supported for G.Span Plus, therefore this parameter is not valid for ADSL2/ADSL2plus modes of operation."
::= { dsAdslAtucPhysExtnEntry 34 }
dsAdslAtucPhysExtnChipVersion OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GlobespanVirata parameter that indicates the DSP version number."
::= { dsAdslAtucPhysExtnEntry 35 }
dsAdslAtucPhysExtnPilotTone OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GlobespanVirata parameter that indicates the Pilot Tone Index."
::= { dsAdslAtucPhysExtnEntry 36 }
dsAdslAtucMSGds OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Overhead Channel. This feature is not supported by DSLPHY as yet."
::= { dsAdslAtucPhysExtnEntry 37 }
dsAdslAtucPhysExtnPsdMaskMode OBJECT-TYPE
SYNTAX INTEGER{
adsl(0),
hsadslM1(3),
hsadslM2 (4),
msk2Rfi(32768),
flatMskRfi(32771),
cabMsk2Rfi (32772),
coMsk2Rfi0 (49152)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GlobespanVirata parameter that indicates the actual Psd Mask currently being used."
::= { dsAdslAtucPhysExtnEntry 38 }
dsAdslAturPhysExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAturPhysExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is an extention to adslAtucPhysTable defined in rfc-2662. This table provides one row for each ATUR. Each row contains the Physical Layer Parameters table for that ATUR."
::= { dasanAdslMIBObjects 5 }
dsAdslAturPhysExtnEntry OBJECT-TYPE
SYNTAX DsAdslAturPhysExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAturPhysExtnTable.
The Table is indexed by IfIndex."
INDEX { ifIndex }
::= { dsAdslAturPhysExtnTable 1 }
DsAdslAturPhysExtnEntry ::= SEQUENCE {
dsAdslAturPhysExtnConfig OCTET STRING,
-- 2.7.6 GsvAdslAturPhysExtnEntry (gsvAdslAturPhysExtnTable.mib)
dsAdslAturPhysExtnChanPerfCD INTEGER,
dsAdslAturPhysExtnChanPerfCU INTEGER,
dsAdslAturPhysExtnChanPerfBE INTEGER,
dsAdslAturPhysExtnDeltHLINSCds INTEGER,
dsAdslAturPhysExtnDeltHLINpsds OCTET STRING,
dsAdslAturPhysExtnDeltHLOGMTds INTEGER,
dsAdslAturPhysExtnDeltHLOGpsus OCTET STRING,
dsAdslAturPhysExtnDeltQLNMTds INTEGER,
dsAdslAturPhysExtnDeltQLNpsds OCTET STRING,
dsAdslAturPhysExtnDeltLastTxState INTEGER,
dsAdslAturMSGus Gauge32
}
dsAdslAturPhysExtnConfig OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..255 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object provides the upstream and downstream ATU-R configuration data (EOC - read 5 sec after data mode)."
::= { dsAdslAturPhysExtnEntry 1 }
dsAdslAturPhysExtnChanPerfCD OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The far-end delineated total cell count performance parameter is a count of the total number of cells passed through the cell delineation and HEC function process operating on the ATM Data Path while in the SYNC state.(Not available for ADSL)."
::= { dsAdslAturPhysExtnEntry 2 }
dsAdslAturPhysExtnChanPerfCU OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The far-end user total cell count performance parameter is a count of the total number of cells in the ATM Data Path delivered at the V-C (for ATU-C) or T-R (for ATUR) interface. (Not available for ADSL)."
::= { dsAdslAturPhysExtnEntry 3 }
dsAdslAturPhysExtnChanPerfBE OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The far-end idle bit error count performance parameter is a count of the number of bit errors in the idle cell payload received in the ATM Data Path at the far-end. (Not available for ADSL)."
::= { dsAdslAturPhysExtnEntry 4 }
dsAdslAturPhysExtnDeltHLINSCds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides the scale factor to be applied to the downstream Hlin(f) values.(Not available for ADSL and ADSL2plus)."
::= { dsAdslAturPhysExtnEntry 5 }
dsAdslAturPhysExtnDeltHLINpsds OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides an array of complex downstream Hlin(f) values in linear scale. (Not available for ADSL and ADSL2plus). Every two octects refer to one element in this array of octets."
::= { dsAdslAturPhysExtnEntry 6 }
dsAdslAturPhysExtnDeltHLOGMTds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides the number of symbols used to measure the downstream Hlog(f). (Not available for ADSL and ADSL2plus)."
::= { dsAdslAturPhysExtnEntry 7 }
dsAdslAturPhysExtnDeltHLOGpsus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides an array of real downstream Hlog(f) values in dB. (Not available for ADSL and ADSL2plus)."
::= { dsAdslAturPhysExtnEntry 8 }
dsAdslAturPhysExtnDeltQLNMTds OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides the number of symbols used to measure the downstream QLN(f) values. (Not available for ADSL and ADSL2plus)."
::= { dsAdslAturPhysExtnEntry 9 }
dsAdslAturPhysExtnDeltQLNpsds OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..42 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides an array of real downstream QLN(f) values in dB. (Not available for ADSL and ADSL2plus). Every two octects refer to one element in this array of octets."
::= { dsAdslAturPhysExtnEntry 10 }
dsAdslAturPhysExtnDeltLastTxState OBJECT-TYPE
SYNTAX INTEGER{
dmtaturg9941(0),
dmtaturquiet1(1),
dmtaturcomb1(2),
dmtaturquiet2(3),
dmtaturcomb2(4),
dmtaturicomb1(5),
dmtaturlineprob(6),
dmtaturquiet3(7),
dmtaturcomb3(8),
dmtaturicomb2(9),
dmtaturmsgfmt(10),
dmtaturmsgpcb(11),
dmtaturreverb1(12),
dmtaturquiet4(13),
dmtaturreverb2(14),
dmtaturquiet5(15),
dmtaturreverb3(16),
dmtaturect(17),
dmtaturreverb4(18),
dmtatursegue1(19),
dmtaturreverb5(20),
dmtatursegue2(21),
dmtaturmsg1(22),
dmtaturmedley(23),
dmtaturexchmarker(24),
dmtaturmsg2(25),
dmtaturreverb6(26),
dmtatursegue3(27),
dmtaturparams(28),
dmtaturreverb7(29),
dmtatursegue4(30),
dmtaturshowtime(31)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DELT-related parameter that provides last successful transmitted initialization state by the ATU-R. (Not available for ADSL and ADSL2plus)."
::= { dsAdslAturPhysExtnEntry 11 }
dsAdslAturMSGus OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the Overhead Channel. This feature is not supported by DSLPHY as yet."
::= { dsAdslAturPhysExtnEntry 12 }
dsAdslAtucChanExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAtucChanExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides one row for each ATUC channel. This Table is an extention to adslAtucChanTable defined in rfc 2662."
::= { dasanAdslMIBObjects 6 }
dsAdslAtucChanExtnEntry OBJECT-TYPE
SYNTAX DsAdslAtucChanExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAtucChanExtnTable.
The Table is indexed by ifIndex."
INDEX { ifIndex }
::= { dsAdslAtucChanExtnTable 1 }
DsAdslAtucChanExtnEntry ::= SEQUENCE {
dsAdslAtucChanExtnCurrAtmStatus INTEGER,
dsAdslAtucChanExtnRsSymbols INTEGER,
dsAdslAtucChanExtnRsDepth INTEGER,
dsAdslAtucChanExtnRsRedundancy INTEGER }
dsAdslAtucChanExtnCurrAtmStatus OBJECT-TYPE
SYNTAX INTEGER{
noAtmDefect(0),
noCellDelineation(1),
lossOfCellDelineation(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"indicates an ncd or lcd failure if the counter surpasses 127. If neither ATM counter surpasses 127, the return value will be 'NoAtmDefect'."
::= { dsAdslAtucChanExtnEntry 1 }
dsAdslAtucChanExtnRsSymbols OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates number of DMT symbols per Reed-Solomon code word (S) in the downstream direction. Note that S is not restricted to interleaved mode only. Even in fast mode, S is a valid constant value and is equal to 1."
::= { dsAdslAtucChanExtnEntry 2 }
dsAdslAtucChanExtnRsDepth OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates interleaving depth (D) in the downstream direction. Note that D is not restricted to interleaved mode only. Even in fast mode, D is a valid constant value and is equal to 1."
::= { dsAdslAtucChanExtnEntry 3 }
dsAdslAtucChanExtnRsRedundancy OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates number of redundant bytes (R) per Reed-Solomon code in the downstream direction."
::= { dsAdslAtucChanExtnEntry 4 }
dsAdslAturChanExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAturChanExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is extention to adslAturChanTable defined in rfc-2662. This table provides one row for each ATUR channel. ADSL channel interfaces are those Interface Table entries where ifType is equal to adslInterleave(124) or adslFast(125)."
::= { dasanAdslMIBObjects 7 }
dsAdslAturChanExtnEntry OBJECT-TYPE
SYNTAX DsAdslAturChanExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAturChanExtnTable.
The Table is indexed by IfIndex."
INDEX { ifIndex }
::= { dsAdslAturChanExtnTable 1 }
DsAdslAturChanExtnEntry ::= SEQUENCE {
dsAdslAturChanExtnCurrAtmStatus INTEGER,
dsAdslAturChanExtnRsSymbols Unsigned32,
dsAdslAturChanExtnRsDepth Unsigned32,
dsAdslAturChanExtnRsRedundancy Unsigned32 }
dsAdslAturChanExtnCurrAtmStatus OBJECT-TYPE
SYNTAX INTEGER{
noAtmDefect(0),
noCellDelineation(1),
lossOfCellDelineation(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates an ncd or lcd failure if the counter surpasses 127. If neither ATM counter surpasses 127, the return value will be NoAtmDefect."
::= { dsAdslAturChanExtnEntry 1 }
dsAdslAturChanExtnRsSymbols OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates number of DMT symbols per Reed- Solomon code word (S) in the upstream direction Note that S is not restricted to interleaved mode only. Even in fast mode, S is a valid constant value and is equal to 1."
::= { dsAdslAturChanExtnEntry 2 }
dsAdslAturChanExtnRsDepth OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates interleaving depth (D) in the upstream direction Note that D is not restricted to interleaved mode only. Even in fast mode, D is a valid constant value and is equal to 1."
::= { dsAdslAturChanExtnEntry 3 }
dsAdslAturChanExtnRsRedundancy OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates number of redundant bytes (R) per Reed-Solomon code in the upstream direction."
::= { dsAdslAturChanExtnEntry 4 }
dsAdslAtucPerfDataExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAtucPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides one row for each ATUC. This table is extention to adslAtucPerfDataTable defined in rfc-2662."
::= { dasanAdslMIBObjects 8 }
dsAdslAtucPerfDataExtnEntry OBJECT-TYPE
SYNTAX DsAdslAtucPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAtucPerfDataExtnTable.
The Table is indexed by ifIndex."
INDEX { ifIndex }
::= { dsAdslAtucPerfDataExtnTable 1 }
DsAdslAtucPerfDataExtnEntry ::= SEQUENCE {
dsAdslAtucPerfDataExtnStatFastR Gauge32,
dsAdslAtucPerfDataExtnStatFailedFastR Gauge32,
dsAdslAtucPerfDataExtnStatSesL Gauge32,
dsAdslAtucPerfDataExtnStatUasL Gauge32,
dsAdslAtucPerfDataExtnCurr15MinFastR Gauge32,
dsAdslAtucPerfDataExtnCurr15MinFailedFastR Gauge32,
dsAdslAtucPerfDataExtnCurr15MinSesL Gauge32,
dsAdslAtucPerfDataExtnCurr15MinUasL Gauge32,
dsAdslAtucPerfDataExtnCurr1DayFastR Gauge32,
dsAdslAtucPerfDataExtnCurr1DayFailedFastR Gauge32,
dsAdslAtucPerfDataExtnCurr1DaySesL Gauge32,
dsAdslAtucPerfDataExtnCurr1DayUasL Gauge32,
dsAdslAtucPerfDataExtnPrev1DayFastR Gauge32,
dsAdslAtucPerfDataExtnPrev1DayFailedFastR Gauge32,
dsAdslAtucPerfDataExtnPrev1DaySesL Gauge32,
dsAdslAtucPerfDataExtnPrev1DayUasL Gauge32,
dsAdslAtucPerfDataExtnPrev1DayTimeElapsed Gauge32,
-- 2.7.6 GsvAdslAtucPerfDataExtnEntry(gsvAdslAtucPerfDataExtnTable.mib)
dsAdslAtucPerfDataExtnStatFecsL Gauge32,
dsAdslAtucPerfDataExtnCurr15MinFecsL Gauge32,
dsAdslAtucPerfDataExtnCurr1DayFecsL Gauge32,
dsAdslAtucPerfDataExtnPrev1DayFecsL Gauge32,
dsAdslAtucPerfDataExtnStatLossL Gauge32,
dsAdslAtucPerfDataExtnCurr15MinLossL Gauge32,
dsAdslAtucPerfDataExtnCurr1DayLossL Gauge32,
dsAdslAtucPerfDataExtnPrev1DayLossL Gauge32 }
--dsAdslAtucPerfDataExtnStatInitsFailed Gauge32,
--dsAdslAtucPerfDataExtnCurr15MinInitsFailed Gauge32,
--dsAdslAtucPerfDataExtnCurr1DayInitsFailed Gauge32,
--dsAdslAtucPerfDataExtnPrev1DayInitsFailed Gauge32 }
dsAdslAtucPerfDataExtnStatFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object indicates the count of fast retrains. REFERENCE ITU G.997.1 Section 7.4.15.1"
::= { dsAdslAtucPerfDataExtnEntry 1 }
dsAdslAtucPerfDataExtnStatFailedFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object indicates the count of failed fast retrains. REFERENCE ITU G.997.1 Section 7.4.15.2"
::= { dsAdslAtucPerfDataExtnEntry 2 }
dsAdslAtucPerfDataExtnStatSesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object indicates the count of severely errored second line. REFERENCE ITU G.997.1 Section 7.2.1.1.7"
::= { dsAdslAtucPerfDataExtnEntry 3 }
dsAdslAtucPerfDataExtnStatUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object indicates the count of unavailable errored seconds. REFERENCE ITU G.997.1 Section 7.2.1.1.9"
::= { dsAdslAtucPerfDataExtnEntry 4 }
dsAdslAtucPerfDataExtnCurr15MinFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the current 15 minute interval when there was fast retrains. REFERENCE ITU G.997.1 Section 7.4.15.1"
::= { dsAdslAtucPerfDataExtnEntry 5 }
dsAdslAtucPerfDataExtnCurr15MinFailedFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the current 15 minute interval when there was failed fast retrains. REFERENCE ITU G.997.1 Section 7.4.15.2"
::= { dsAdslAtucPerfDataExtnEntry 6 }
dsAdslAtucPerfDataExtnCurr15MinSesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the current 15 minute interval when there was severely errored seconds. REFERENCE ITU G.997.1 Section 7.2.1.1.7"
::= { dsAdslAtucPerfDataExtnEntry 7 }
dsAdslAtucPerfDataExtnCurr15MinUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the current 15 minute interval when there was count for unavailable errored seconds. REFERENCE ITU G.997.1 Section 7.2.1.1.9"
::= { dsAdslAtucPerfDataExtnEntry 8 }
dsAdslAtucPerfDataExtnCurr1DayFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of the number of seconds when there was fast retrains during the current day as measured by adslAtucPerfCurr1Day TimeElapsed. REFERENCE ITU G.997.1 Section 7.4.15.1"
::= { dsAdslAtucPerfDataExtnEntry 9 }
dsAdslAtucPerfDataExtnCurr1DayFailedFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of the number of seconds when there was failed fast retrains during the current day as measured by adslAtucPerfCurr1Day TimeElapsed.REFERENCE ITU G.997.1 Section 7.4.15.2"
::= { dsAdslAtucPerfDataExtnEntry 10 }
dsAdslAtucPerfDataExtnCurr1DaySesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of the number of seconds when there was Severely Errored Seconds during the current day as measured by adslAtucPerfCurr1DayTimeElapsed. REFERENCE ITU G.997.1 Section 7.2.1.1.7"
::= { dsAdslAtucPerfDataExtnEntry 11 }
dsAdslAtucPerfDataExtnCurr1DayUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of the number of seconds when there was Unavailable Errored Seconds during the current day as measured by adslAtucPerfCurr1DayTimeElapsed. REFERENCE ITU G.997.1 Section 7.2.1.1.9"
::= { dsAdslAtucPerfDataExtnEntry 12 }
dsAdslAtucPerfDataExtnPrev1DayFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the interval when there was fast retrains within the most recent previous 1 day period. REFERENCE ITU G.997.1 Section 7.4.15.1"
::= { dsAdslAtucPerfDataExtnEntry 13 }
dsAdslAtucPerfDataExtnPrev1DayFailedFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the interval when there was failed fast retrains within the most recent previous 1 day period. REFERENCE ITU G.997.1 Section 7.4.15.2"
::= { dsAdslAtucPerfDataExtnEntry 14 }
dsAdslAtucPerfDataExtnPrev1DaySesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the interval when there was severely errored seconds within the most recent previous 1 day period. REFERENCE ITU G.997.1 Section 7.2.1.1.7"
::= { dsAdslAtucPerfDataExtnEntry 15 }
dsAdslAtucPerfDataExtnPrev1DayUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of seconds in the interval when there was unavailable errored seconds within the most recent previous 1 day period. REFERENCE ITU G.997.1 Section 7.2.1.1.9"
::= { dsAdslAtucPerfDataExtnEntry 16 }
dsAdslAtucPerfDataExtnPrev1DayTimeElapsed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total elapsed seconds in this interval in seconds."
::= { dsAdslAtucPerfDataExtnEntry 17 }
dsAdslAtucPerfDataExtnStatFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals with one or more forward error correction (FEC) anomalies since agent reset (Not available for ADSL)."
::= { dsAdslAtucPerfDataExtnEntry 18 }
dsAdslAtucPerfDataExtnCurr15MinFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals, in the current 15 minute interval, with one or more forward error correction (FEC) anomalies (Not available for ADSL)."
::= { dsAdslAtucPerfDataExtnEntry 19 }
dsAdslAtucPerfDataExtnCurr1DayFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NCount of 1-second intervals, during the current day as measured by adslAtucPerfCurr1Day-TimeElapsed, with one or moreforward error correction (FEC) anomalies (Not available for ADSL)."
::= { dsAdslAtucPerfDataExtnEntry 20 }
dsAdslAtucPerfDataExtnPrev1DayFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals, within the most recent previous 1-day period, with one or more forward error correction (FEC) anomalies (Not available for ADSL)."
::= { dsAdslAtucPerfDataExtnEntry 21 }
dsAdslAtucPerfDataExtnStatLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals containing one or more loss of signal (LOS) defects (Not available for ADSL)."
::= { dsAdslAtucPerfDataExtnEntry 22 }
dsAdslAtucPerfDataExtnCurr15MinLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsAdslAtucPerfDataExtnEntry 23 }
dsAdslAtucPerfDataExtnCurr1DayLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsAdslAtucPerfDataExtnEntry 24 }
dsAdslAtucPerfDataExtnPrev1DayLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsAdslAtucPerfDataExtnEntry 25 }
--dsAdslAtucPerfDataExtnStatInitsFailed OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Count of the failed full initialization attempts since agent reset. A failed full initialization is when showtime is not reached at the end of the full initialization procedure."
-- ::= { dsAdslAtucPerfDataExtnEntry 23 }
--dsAdslAtucPerfDataExtnCurr15MinInitsFailed OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Count of the failed line initialization attempts since agent reset. (length = 4 bytes)"
-- ::= { dsAdslAtucPerfDataExtnEntry 24 }
--dsAdslAtucPerfDataExtnCurr1DayInitsFailed OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Count of the failed line initialization attempts in the day as measured by “adslAtucPerfCurr1Day-TimeElapsed.(length = 4 bytes)"
-- ::= { dsAdslAtucPerfDataExtnEntry 25 }
--dsAdslAtucPerfDataExtnPrev1DayInitsFailed OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "Count of the failed line initialization attempts in the most recent previous 1-day period. (length = 4 bytes)"
-- ::= { dsAdslAtucPerfDataExtnEntry 26 }
--2.7.6
dsAdslAturPerfDataExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAturPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides one row for each ATU-R. ADSL physical interfaces are those Interface Table Entries where ifType is equal to adsl(94). This table is an extn to 'adslAturPerfDataExtTable' which is part of ADSL-LINE-EXT-MIB (rfc 3440)."
::= { dasanAdslMIBObjects 9 }
dsAdslAturPerfDataExtnEntry OBJECT-TYPE
SYNTAX DsAdslAturPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAturPerfDataExtnTable.
The Table is indexed by ifIndex."
INDEX { ifIndex }
::= { dsAdslAturPerfDataExtnTable 1 }
DsAdslAturPerfDataExtnEntry ::= SEQUENCE {
dsAdslAturPerfDataExtnStatSesL Counter32,
dsAdslAturPerfDataExtnCurr15MinSesL Gauge32,
dsAdslAturPerfDataExtnCurr1DaySesL Gauge32,
dsAdslAturPerfDataExtnPrev1DaySesL Gauge32,
dsAdslAturPerfDataExtnStatUasL Counter32,
dsAdslAturPerfDataExtnCurr15MinUasL Gauge32,
dsAdslAturPerfDataExtnCurr1DayUasL Gauge32,
dsAdslAturPerfDataExtnPrev1DayUasL Gauge32,
dsAdslAturPerfDataExtnStatFecsL Counter32,
dsAdslAturPerfDataExtnCurr15MinFecsL Gauge32,
dsAdslAturPerfDataExtnCurr1DayFecsL Gauge32,
dsAdslAturPerfDataExtnPrev1DayFecsL Gauge32,
dsAdslAturPerfDataExtnStatLossL Counter32,
dsAdslAturPerfDataExtnCurr15MinLossL Gauge32,
dsAdslAturPerfDataExtnCurr1DayLossL Gauge32,
dsAdslAturPerfDataExtnPrev1DayLossL Gauge32
}
dsAdslAturPerfDataExtnStatSesL OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsAdslAturPerfDataExtnEntry 1 }
dsAdslAturPerfDataExtnCurr15MinSesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 2 }
dsAdslAturPerfDataExtnCurr1DaySesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 3 }
dsAdslAturPerfDataExtnPrev1DaySesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 4 }
dsAdslAturPerfDataExtnStatUasL OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"."
::= { dsAdslAturPerfDataExtnEntry 5 }
dsAdslAturPerfDataExtnCurr15MinUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 6 }
dsAdslAturPerfDataExtnCurr1DayUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 7 }
dsAdslAturPerfDataExtnPrev1DayUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 8 }
dsAdslAturPerfDataExtnStatFecsL OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals with one or more far end forward error correction (FFEC) anomalies since agent reset (Not available for ADSL)."
::= { dsAdslAturPerfDataExtnEntry 9 }
dsAdslAturPerfDataExtnCurr15MinFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals containing one or more far end loss of signal (LOS) defects (Not available for ADSL)."
::= { dsAdslAturPerfDataExtnEntry 10 }
dsAdslAturPerfDataExtnCurr1DayFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals, during the current day as measured by adslAturPerfCurr1Day-TimeElapsed, with one or more far end forward error correction (FFEC) anomalies (Not available for ADSL)."
::= { dsAdslAturPerfDataExtnEntry 11 }
dsAdslAturPerfDataExtnPrev1DayFecsL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals, within the most recent previous 1-day period, with one or more far end forward error correction (FFEC) anomalies (Not available for ADSL)."
::= { dsAdslAturPerfDataExtnEntry 12 }
dsAdslAturPerfDataExtnStatLossL OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of 1-second intervals containing one or more far end loss of signal (LOS) defects (Not available for ADSL)."
::= { dsAdslAturPerfDataExtnEntry 13 }
dsAdslAturPerfDataExtnCurr15MinLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 14 }
dsAdslAturPerfDataExtnCurr1DayLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 15 }
dsAdslAturPerfDataExtnPrev1DayLossL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" ."
::= { dsAdslAturPerfDataExtnEntry 16 }
dsAdslAtucIntervalExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAtucIntervalExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides one row for each ATUC performance data collection interval. This Table is an extention to adslAtucIntervalTable defined in rfc 2662."
::= { dasanAdslMIBObjects 10 }
dsAdslAtucIntervalExtnEntry OBJECT-TYPE
SYNTAX DsAdslAtucIntervalExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAtucIntervalExtnTable.
The Table is indexed by ifIndex and adslAtucIntervalNumber."
INDEX { ifIndex, adslAtucIntervalNumber }
::= { dsAdslAtucIntervalExtnTable 1 }
DsAdslAtucIntervalExtnEntry ::= SEQUENCE {
adslAtucIntervalNumber INTEGER,
dsAdslAtucIntervalExtnFastR Gauge32,
dsAdslAtucIntervalExtnFailedFastR Gauge32,
dsAdslAtucIntervalExtnSesL Gauge32,
dsAdslAtucIntervalExtnUasL Gauge32,
dsAdslAtucIntervalExtnTimeElapsed Gauge32
-- 2.7.6 GsvAdslAtucIntervalExtnEntry(gsvAdslAtucIntervalExtnTable.mib)
--dsAdslAtucIntervalExtnFecsL Gauge32,
--dsAdslAtucIntervalExtnInitsFailed Gauge32
}
dsAdslAtucIntervalExtnFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates Count of seconds in the interval when there was Fast Retrains."
::= { dsAdslAtucIntervalExtnEntry 1 }
dsAdslAtucIntervalExtnFailedFastR OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates Count of seconds in the interval when there was Failed Fast Retrains."
::= { dsAdslAtucIntervalExtnEntry 2 }
dsAdslAtucIntervalExtnSesL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates Count of seconds in the interval when there was severely errored seconds."
::= { dsAdslAtucIntervalExtnEntry 3 }
dsAdslAtucIntervalExtnUasL OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates Count of seconds in the interval when there was unavailable errored seconds."
::= { dsAdslAtucIntervalExtnEntry 4 }
dsAdslAtucIntervalExtnTimeElapsed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This variable indicates the total Elapsed time in this interval."
::= { dsAdslAtucIntervalExtnEntry 5 }
--dsAdslAtucIntervalExtnFecsL OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This variable indicates Count of seconds in the interval when there was Forward error correction seconds."
-- ::= { dsAdslAtucIntervalExtnEntry 6 }
--dsAdslAtucIntervalExtnInitsFailed OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This variable indicates Count of the failed full line initialization attempts during the interval."
-- ::= { dsAdslAtucIntervalExtnEntry 7 }
--2.7.6 gsvAdslAturIntervalExtnTable.mib
--dsAdslAturIntervalExtnTable OBJECT-TYPE
-- SYNTAX SEQUENCE OF DsAdslAturIntervalExtnEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "This Table is an extention to adslAturIntervalExtTable defined in rfc 3440."
-- ::= { dasanAdslMIBObjects 11 }
--dsAdslAturIntervalExtnEntry OBJECT-TYPE
-- SYNTAX DsAdslAturIntervalExtnEntry
-- MAX-ACCESS not-accessible
-- STATUS current
-- DESCRIPTION
-- "An entry (conceptual row) in the dsAdslAturIntervalExtnTable.
-- The Table is indexed by ifIndex and adslAturIntervalNumber."
-- INDEX { ifIndex, adslAturIntervalNumber }
-- ::= { dsAdslAturIntervalExtnTable 1 }
--DsAdslAturIntervalExtnEntry ::= SEQUENCE {
-- dsAdslAturIntervalExtnFecsL Gauge32 }
--dsAdslAturIntervalExtnFecsL OBJECT-TYPE
-- SYNTAX Gauge32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION
-- "This variable indicates Count of seconds in the interval when there was Forward error correction seconds."
-- ::= { dsAdslAturIntervalExtnEntry 1 }
dsAdslAtucChanPerfDataExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAtucChanPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides one row for each ATUC channel. This table is an extention to adslAtucChanPerfDataTable."
::= { dasanAdslMIBObjects 12 }
dsAdslAtucChanPerfDataExtnEntry OBJECT-TYPE
SYNTAX DsAdslAtucChanPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAtucChanPerfDataExtnTable.
The Table is indexed by ifIndex."
INDEX { ifIndex }
::= { dsAdslAtucChanPerfDataExtnTable 1 }
DsAdslAtucChanPerfDataExtnEntry ::= SEQUENCE {
dsAdslAtucChanPerfDataExtnTimeElapsed Gauge32,
dsAdslAtucChanPerfDataExtnNcd Gauge32,
dsAdslAtucChanPerfDataExtnOcd Gauge32,
dsAdslAtucChanPerfDataExtnHec Gauge32,
dsAdslAtucChanPerfDataExtnCurr15MinNcd Gauge32,
dsAdslAtucChanPerfDataExtnCurr15MinOcd Gauge32,
dsAdslAtucChanPerfDataExtnCurr15MinHec Gauge32,
dsAdslAtucChanPerfDataExtnCurr1DayNcd Gauge32,
dsAdslAtucChanPerfDataExtnCurr1DayOcd Gauge32,
dsAdslAtucChanPerfDataExtnCurr1DayHec Gauge32,
dsAdslAtucChanPerfDataExtnPrev1DayNcd Gauge32,
dsAdslAtucChanPerfDataExtnPrev1DayOcd Gauge32,
dsAdslAtucChanPerfDataExtnPrev1DayHec Gauge32 }
dsAdslAtucChanPerfDataExtnTimeElapsed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Total elapsed seconds in this interval."
::= { dsAdslAtucChanPerfDataExtnEntry 1 }
dsAdslAtucChanPerfDataExtnNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of no cell delineation(ncd) on this channel."
::= { dsAdslAtucChanPerfDataExtnEntry 2 }
dsAdslAtucChanPerfDataExtnOcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of out of cell delineation (ocd) on this channel."
::= { dsAdslAtucChanPerfDataExtnEntry 3 }
dsAdslAtucChanPerfDataExtnHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Header error check counter(hec) on this channel."
::= { dsAdslAtucChanPerfDataExtnEntry 4 }
dsAdslAtucChanPerfDataExtnCurr15MinNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of no cell delineation(ncd) on this channel within the current 15 minute time interval."
::= { dsAdslAtucChanPerfDataExtnEntry 5 }
dsAdslAtucChanPerfDataExtnCurr15MinOcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of out of cell delineation (ocd) on this channel within the current 15 minute time interval."
::= { dsAdslAtucChanPerfDataExtnEntry 6 }
dsAdslAtucChanPerfDataExtnCurr15MinHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Header error check counter(hec) on this channel within the current 15 minute time interval."
::= { dsAdslAtucChanPerfDataExtnEntry 7 }
dsAdslAtucChanPerfDataExtnCurr1DayNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of no cell delineation (ncd) on this channel within the current 1 day time interval."
::= { dsAdslAtucChanPerfDataExtnEntry 8 }
dsAdslAtucChanPerfDataExtnCurr1DayOcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of out of cell delineation (ocd) on this channel within the current 1 day time interval."
::= { dsAdslAtucChanPerfDataExtnEntry 9 }
dsAdslAtucChanPerfDataExtnCurr1DayHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Header error check counter (hec) on this channel within the current 1 day time interval."
::= { dsAdslAtucChanPerfDataExtnEntry 10 }
dsAdslAtucChanPerfDataExtnPrev1DayNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of no cell delineation (ncd) on this channel within the most recent previous 1-day period."
::= { dsAdslAtucChanPerfDataExtnEntry 11 }
dsAdslAtucChanPerfDataExtnPrev1DayOcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Count of out of cell delineation (ocd) on this channel within the most recent previous 1-day period."
::= { dsAdslAtucChanPerfDataExtnEntry 12 }
dsAdslAtucChanPerfDataExtnPrev1DayHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Header error check counter(hec) on this channel within the most recent previous 1-day period."
::= { dsAdslAtucChanPerfDataExtnEntry 13 }
dsAdslAturChanPerfDataExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAturChanPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is extention to adslAturChanPerfDataTable defined in rfc-2662. This table contains the Performance Data for that ATU-R channel (fast or interleaved)."
::= { dasanAdslMIBObjects 13 }
dsAdslAturChanPerfDataExtnEntry OBJECT-TYPE
SYNTAX DsAdslAturChanPerfDataExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAturChanPerfDataExtnTable.
The Table is indexed by IfIndex."
INDEX { ifIndex }
::= { dsAdslAturChanPerfDataExtnTable 1 }
DsAdslAturChanPerfDataExtnEntry ::= SEQUENCE {
dsAdslAturChanPerfDataExtnNcd Gauge32,
dsAdslAturChanPerfDataExtnHec Gauge32,
dsAdslAturChanPerfDataExtnCurr15MinNcd Gauge32,
dsAdslAturChanPerfDataExtnCurr15MinHec Gauge32,
dsAdslAturChanPerfDataExtnCurr1DayNcd Gauge32,
dsAdslAturChanPerfDataExtnCurr1DayHec Gauge32,
dsAdslAturChanPerfDataExtnPrev1DayNcd Gauge32,
dsAdslAturChanPerfDataExtnPrev1DayHec Gauge32 }
dsAdslAturChanPerfDataExtnNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with no cell delineation(NCD) error on this channel."
::= { dsAdslAturChanPerfDataExtnEntry 1 }
dsAdslAturChanPerfDataExtnHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with Header error check (HEC) error on this channel."
::= { dsAdslAturChanPerfDataExtnEntry 2 }
dsAdslAturChanPerfDataExtnCurr15MinNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with no cell delineation(NCD) error on this channel within the current 15 minute time interval."
::= { dsAdslAturChanPerfDataExtnEntry 3 }
dsAdslAturChanPerfDataExtnCurr15MinHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with Header error check (HEC) error on this channel within the current 15 minute time interval."
::= { dsAdslAturChanPerfDataExtnEntry 4 }
dsAdslAturChanPerfDataExtnCurr1DayNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with no cell delineation (NCD) error on this channel within the current 1 day time interval."
::= { dsAdslAturChanPerfDataExtnEntry 5 }
dsAdslAturChanPerfDataExtnCurr1DayHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with Header error check (HEC) error on this channel within the current 1 day time interval."
::= { dsAdslAturChanPerfDataExtnEntry 6 }
dsAdslAturChanPerfDataExtnPrev1DayNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with no cell delineation (NCD) error on this channel within the most recent previous period."
::= { dsAdslAturChanPerfDataExtnEntry 7 }
dsAdslAturChanPerfDataExtnPrev1DayHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets with Header error check (HEC) error on this channel within the most recent previous period."
::= { dsAdslAturChanPerfDataExtnEntry 8 }
dsAdslAtucChanIntervalExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAtucChanIntervalExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides a row for each ATUC channel's performance data collection interval. This table is an extension to adslAtucChanIntervalTable defined in rfc 2662."
::= { dasanAdslMIBObjects 14 }
dsAdslAtucChanIntervalExtnEntry OBJECT-TYPE
SYNTAX DsAdslAtucChanIntervalExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAtucChanIntervalExtnTable.
The Table is indexed by ifIndex and adslAtucChanIntervalNumber."
INDEX { ifIndex, adslAtucChanIntervalNumber }
::= { dsAdslAtucChanIntervalExtnTable 1 }
DsAdslAtucChanIntervalExtnEntry ::= SEQUENCE {
dsAdslAtucChanIntervalExtnTimeElapsed Counter32,
dsAdslAtucChanIntervalExtnNcd Counter32,
dsAdslAtucChanIntervalExtnOcd Counter32,
dsAdslAtucChanIntervalExtnHec Counter32 }
dsAdslAtucChanIntervalExtnTimeElapsed OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total time elapsed (in seconds) in this interval."
::= { dsAdslAtucChanIntervalExtnEntry 1 }
dsAdslAtucChanIntervalExtnNcd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates count of no cell delineation on this channel for this interval."
::= { dsAdslAtucChanIntervalExtnEntry 2 }
dsAdslAtucChanIntervalExtnOcd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates count of out cell delineation on this channel for this interval."
::= { dsAdslAtucChanIntervalExtnEntry 3 }
dsAdslAtucChanIntervalExtnHec OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates Header error check counter on this channel during this interval."
::= { dsAdslAtucChanIntervalExtnEntry 4 }
dsAdslAturChanIntervalExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslAturChanIntervalExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is extention to adslAturChanIntervalTable defined in rfc-2662. This table provides one row for each ATUR channel's performance data collection interval."
::= { dasanAdslMIBObjects 15 }
dsAdslAturChanIntervalExtnEntry OBJECT-TYPE
SYNTAX DsAdslAturChanIntervalExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslAturChanIntervalExtnTable.
The Table is indexed by IfIndex and dsAdslAturChanIntervalExtnNumber."
-- INDEX { ifIndex, dsAdslAturChanIntervalExtnNumber }
INDEX { ifIndex, adslAturChanIntervalNumber}
::= { dsAdslAturChanIntervalExtnTable 1 }
DsAdslAturChanIntervalExtnEntry ::= SEQUENCE {
dsAdslAturChanIntervalExtnNcd Gauge32,
dsAdslAturChanIntervalExtnHec Gauge32 }
dsAdslAturChanIntervalExtnNcd OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates count of no cell delineation on this channel for this interval."
::= { dsAdslAturChanIntervalExtnEntry 1 }
dsAdslAturChanIntervalExtnHec OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates Header error check counter on this channel during this interval."
::= { dsAdslAturChanIntervalExtnEntry 2 }
dsAdslLineConfProfileExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslLineConfProfileExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information on the ADSL line configuration. This Table is an extension to adslLineConfProfileTable."
::= { dasanAdslMIBObjects 16 }
dsAdslLineConfProfileExtnEntry OBJECT-TYPE
SYNTAX DsAdslLineConfProfileExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslLineConfProfileExtnTable.
The Table is indexed by adslLineConfProfileName."
INDEX { adslLineConfProfileName }
::= { dsAdslLineConfProfileExtnTable 1 }
DsAdslLineConfProfileExtnEntry ::= SEQUENCE {
dsAdslLineConfProfileName OCTET STRING,
--dsAdslLineConfProfileExtnParametricTestInputFile DisplayString,
dsAdslLineConfProfileExtnRsIntCorrectionUp INTEGER,
dsAdslLineConfProfileExtnLineType INTEGER,
dsAdslLineConfProfileExtnTxEndBin INTEGER,
dsAdslLineConfProfileExtnTxStartBin INTEGER,
--dsAdslLineConfProfileExtnMaxBitsPerBin INTEGER,
dsAdslLineConfProfileExtnRxStartBin INTEGER,
dsAdslLineConfProfileExtnRxEndBin INTEGER,
dsAdslLineConfProfileExtnRxBinAdjust INTEGER,
--dsAdslLineConfProfileExtnTriggerMode INTEGER,
--dsAdslLineConfProfileExtnAdi2x INTEGER,
dsAdslLineConfProfileExtnStandard INTEGER,
--dsAdslLineConfProfileExtnInitiate INTEGER,
dsAdslLineConfProfileExtnTxPowerAttenuation INTEGER,
--dsAdslLineConfProfileExtnCodingGain INTEGER,
dsAdslLineConfProfileExtnRsFastOvrhdDown INTEGER,
dsAdslLineConfProfileExtnIntCorrectionDown INTEGER,
dsAdslLineConfProfileExtnRsFastOvrhdUp INTEGER,
--dsAdslLineConfProfileExtnDrStby INTEGER,
--dsAdslLineConfProfileExtnExpandedExchange INTEGER,
--dsAdslLineConfProfileExtnEscapeFastRetrainEnable INTEGER,
--dsAdslLineConfProfileExtnFastRetrainEnable INTEGER,
--dsAdslLineConfProfileExtnBitSwap INTEGER,
--dsAdslLineConfProfileExtnNtr INTEGER,
dsAdslLineConfProfileExtnAnnexType INTEGER,
--dsAdslLineConfProfileExtnAlctlUsVer INTEGER,
--dsAdslLineConfProfileExtnUseCustomBin INTEGER,
--dsAdslLineConfProfileExtnDnBinUsage OCTET STRING,
dsAdslLineConfProfileExtnMaxDCo INTEGER,
--dsAdslLineConfProfileExtnFullRetrain INTEGER,
dsAdslLineConfProfileExtnAdvertisedCapabilities INTEGER,
dsAdslLineConfProfileExtnPsdMaskType INTEGER,
dsAdslLineConfProfileExtnLineDmtConfMode INTEGER,
--dsAdslLineConfProfileExtnEraseProfiles INTEGER,
--dsAdslLineConfProfileExtnRsMemory INTEGER,
--dsAdslLineConfProfileExtnParamHybridLossTestStart INTEGER,
--dsAdslLineConfProfileExtnParamHybridLossTestEnd INTEGER,
--dsAdslLineConfProfileExtnLineConfDmtTrellis INTEGER,
--2.7.6 GsvAdslLineConfProfileExtnEntry(gsvAdslLineConfProfileExtnTable.mib)
--dsAdslLineConfProfileExtnDataBoost INTEGER,
dsAdslLineConfProfileExtnUpstreamPSD INTEGER,
dsAdslLineConfProfileExtnPMMode BITS,
dsAdslLineConfProfileExtnPML0Time INTEGER,
dsAdslLineConfProfileExtnPML2Time INTEGER,
dsAdslLineConfProfileExtnPML2ATPR INTEGER,
dsAdslLineConfProfileExtnPML2Rate INTEGER,
--dsAdslLineConfProfileExtnMSGMINds INTEGER,
--dsAdslLineConfProfileExtnMSGMINus INTEGER,
dsAdslLineConfProfileExtnAtucConfMinINP INTEGER,
dsAdslLineConfProfileExtnPML2EntryThresholdRate INTEGER,
dsAdslLineConfProfileExtnPML2ExitThresholdRate INTEGER,
dsAdslLineConfProfileExtnPML2EntryRateMinTime INTEGER
}
dsAdslLineConfProfileName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..32 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used by the line configuration table in order to identify a row of this table."
::= { dsAdslLineConfProfileExtnEntry 1 }
--dsAdslLineConfProfileExtnParametricTestInputFile OBJECT-TYPE
-- SYNTAX DisplayString
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Indicates Name of the Input file from which to take the Mask Array Size, lower and upper mask Array. Null string means no file is specified."
-- ::= { dsAdslLineConfProfileExtnEntry 2 }
dsAdslLineConfProfileExtnRsIntCorrectionUp OBJECT-TYPE
SYNTAX INTEGER{
dsAdslLineConfProfileExtnTable125us(3),
dsAdslLineConfProfileExtnTable250us(4),
dsAdslLineConfProfileExtnTable500us(5),
dsAdslLineConfProfileExtnTable1ms(6),
dsAdslLineConfProfileExtnTable2ms(7),
dsAdslLineConfProfileExtnTable4ms(8),
disable(15)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the correction time for the upstream-interleaved buffer. RS can also be disabled. The Default Value for ADSL+ is 3."
DEFVAL { 3 }
::= { dsAdslLineConfProfileExtnEntry 3 }
dsAdslLineConfProfileExtnLineType OBJECT-TYPE
SYNTAX INTEGER{
noChannel(1),
fastOnly(2),
interleavedOnly(3),
fastOrInterleaved(4),
fastAndInterleaved(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to configure the ADSL physical line mode."
DEFVAL { 3 }
::= { dsAdslLineConfProfileExtnEntry 4 }
dsAdslLineConfProfileExtnTxEndBin OBJECT-TYPE
SYNTAX INTEGER ( 6..511 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Highest bin number allowed for Tx signal. The Range & default for ADSL+ is 0x06 - 0x1ff and 0x1ff respectively."
DEFVAL { 511 }
::= { dsAdslLineConfProfileExtnEntry 5 }
dsAdslLineConfProfileExtnTxStartBin OBJECT-TYPE
SYNTAX INTEGER ( 6..511 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lowest bin number allowed for Tx signal.The Range for ADSL+ is 0x06 - 0x1ff. The Default for Annex B is 0x40 respectively."
DEFVAL { 1 }
::= { dsAdslLineConfProfileExtnEntry 6 }
--dsAdslLineConfProfileExtnMaxBitsPerBin OBJECT-TYPE
-- SYNTAX INTEGER ( 0..15 )
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Maximum Rx number of bits per bin."
-- DEFVAL { 14 }
-- ::= { dsAdslLineConfProfileExtnEntry 7 }
dsAdslLineConfProfileExtnRxStartBin OBJECT-TYPE
SYNTAX INTEGER ( 1..511 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lowest bin number allowed for Rx signal. The Range for ADSL+ is 0x01 - 0x1ff. The default for Annex B is 0x01."
DEFVAL { 1 }
::= { dsAdslLineConfProfileExtnEntry 8 }
dsAdslLineConfProfileExtnRxEndBin OBJECT-TYPE
SYNTAX INTEGER ( 6..511 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Highest bin number allowed for Rx signal. The Range and default value for ADSL+ is 0x01 - 0x1ff and 0x1d respectively."
DEFVAL { 511 }
::= { dsAdslLineConfProfileExtnEntry 9 }
dsAdslLineConfProfileExtnRxBinAdjust OBJECT-TYPE
SYNTAX INTEGER{
disable(0)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Employs Rx Start/End bin settings."
DEFVAL { 0 }
::= { dsAdslLineConfProfileExtnEntry 10 }
--dsAdslLineConfProfileExtnTriggerMode OBJECT-TYPE
-- SYNTAX INTEGER{
-- disable(0),
-- locCrc(1),
-- rmtCrc(2),
-- snrInc(4),
-- snrDec(8)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Indicates the Type of event that triggers fast retrain."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 11 }
--dsAdslLineConfProfileExtnAdi2x OBJECT-TYPE
-- SYNTAX INTEGER{
-- standard(1)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "For non standard compliant ADI CPE."
-- DEFVAL { 1 }
-- ::= { dsAdslLineConfProfileExtnEntry 12 }
dsAdslLineConfProfileExtnStandard OBJECT-TYPE
SYNTAX INTEGER{
t1413(0),
gLite(1),
gDmt(2),
alctl14(3),
multimode(4),
adi(5),
alctl(6),
t1413Auto(9),
adslPlus(48),
gspanPlus(49),
adsl2(26),
adsl2Plus(27),
readsl2(28),
adsl2Auto(29),
adsl2PlusAuto(30)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Preferred standard compliance. Outcome is dependent upon standard support of the remote unit.GlobespanVirata High Speed ADSL DMT (ADSL+) applications only."
DEFVAL { 27 }
::= { dsAdslLineConfProfileExtnEntry 13 }
--dsAdslLineConfProfileExtnInitiate OBJECT-TYPE
-- SYNTAX INTEGER{
-- waitPn(0),
-- ctone(1),
-- initiatePn(128)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Specifies which end initiates startup. It is also used to send a C-tone to the remote unit."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 14 }
dsAdslLineConfProfileExtnTxPowerAttenuation OBJECT-TYPE
SYNTAX INTEGER{
dsAdslLineConfProfileExtnTable0(0),
point1(13),
point2(14),
point3(15),
point4(16),
point5(17),
point6(18),
point7(19),
point8(20),
point9(21),
dsAdslLineConfProfileExtnTable1(1),
dsAdslLineConfProfileExtnTable2(2),
dsAdslLineConfProfileExtnTable3(3),
dsAdslLineConfProfileExtnTable4(4),
dsAdslLineConfProfileExtnTable5(5),
dsAdslLineConfProfileExtnTable6(6),
dsAdslLineConfProfileExtnTable7(7),
dsAdslLineConfProfileExtnTable8(8),
dsAdslLineConfProfileExtnTable9(9),
dsAdslLineConfProfileExtnTable10(10),
dsAdslLineConfProfileExtnTable11(11),
dsAdslLineConfProfileExtnTable12(12),
dsAdslLineConfProfileExtnTable13(32781),
dsAdslLineConfProfileExtnTable14(32782),
dsAdslLineConfProfileExtnTable15(32783),
dsAdslLineConfProfileExtnTable16(32784),
dsAdslLineConfProfileExtnTable17(32785),
dsAdslLineConfProfileExtnTable18(32786),
dsAdslLineConfProfileExtnTable19(32787),
dsAdslLineConfProfileExtnTable20(32788),
dsAdslLineConfProfileExtnTable21(32789),
dsAdslLineConfProfileExtnTable22(32790),
dsAdslLineConfProfileExtnTable23(32791),
dsAdslLineConfProfileExtnTable24(32792),
dsAdslLineConfProfileExtnTable25(32793),
dsAdslLineConfProfileExtnTable26(32794),
dsAdslLineConfProfileExtnTable27(32795),
dsAdslLineConfProfileExtnTable28(32796),
dsAdslLineConfProfileExtnTable29(32797),
dsAdslLineConfProfileExtnTable30(32798),
dsAdslLineConfProfileExtnTable31(32799),
dsAdslLineConfProfileExtnTable32(32800),
dsAdslLineConfProfileExtnTable33(32801),
dsAdslLineConfProfileExtnTable34(32802),
dsAdslLineConfProfileExtnTable35(32803),
dsAdslLineConfProfileExtnTable36(32804),
dsAdslLineConfProfileExtnTable37(32805),
dsAdslLineConfProfileExtnTable38(32806),
dsAdslLineConfProfileExtnTable39(32807),
dsAdslLineConfProfileExtnTable40(32808)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies value of Tx power attenuation."
DEFVAL { 0 }
::= { dsAdslLineConfProfileExtnEntry 15 }
--dsAdslLineConfProfileExtnCodingGain OBJECT-TYPE
-- SYNTAX INTEGER{
-- auto(65280),
-- dsAdslLineConfProfileExtnTable0(0),
-- dsAdslLineConfProfileExtnTable1(4096),
-- dsAdslLineConfProfileExtnTable2(8192),
-- dsAdslLineConfProfileExtnTable3(12288),
-- dsAdslLineConfProfileExtnTable4(16384),
-- dsAdslLineConfProfileExtnTable5(20480),
-- dsAdslLineConfProfileExtnTable6(24576),
-- dsAdslLineConfProfileExtnTable7(28672)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Sets the coding gain in dB increments."
-- DEFVAL { 65280 }
-- ::= { dsAdslLineConfProfileExtnEntry 16 }
dsAdslLineConfProfileExtnRsFastOvrhdDown OBJECT-TYPE
SYNTAX INTEGER{
dsAdslLineConfProfileExtnTable50(1),
dsAdslLineConfProfileExtnTable25(2),
dsAdslLineConfProfileExtnTable12(3),
dsAdslLineConfProfileExtnTable6(4),
dsAdslLineConfProfileExtnTable3(5),
dsAdslLineConfProfileExtnTable1(7),
disable(15)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the percentage overhead for the downstream-fast buffer."
DEFVAL { 15 }
::= { dsAdslLineConfProfileExtnEntry 17 }
dsAdslLineConfProfileExtnIntCorrectionDown OBJECT-TYPE
SYNTAX INTEGER{
dsAdslLineConfProfileExtnTable125Us(3),
dsAdslLineConfProfileExtnTable250Us(4),
dsAdslLineConfProfileExtnTable500Us(5),
dsAdslLineConfProfileExtnTable1Ms(6),
dsAdslLineConfProfileExtnTable2Ms(7),
dsAdslLineConfProfileExtnTable4Ms(8),
disable(15)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter sets the correction time for the downstream interleaved buffer.RS can also be disabled."
DEFVAL { 6 }
::= { dsAdslLineConfProfileExtnEntry 18 }
dsAdslLineConfProfileExtnRsFastOvrhdUp OBJECT-TYPE
SYNTAX INTEGER{
dsAdslLineConfProfileExtnTable50(1),
dsAdslLineConfProfileExtnTable25(2),
dsAdslLineConfProfileExtnTable12(3),
dsAdslLineConfProfileExtnTable6(4),
dsAdslLineConfProfileExtnTable3(5),
dsAdslLineConfProfileExtnTable1(7),
disable(15)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sets the 4576014verhead for the upstream-fast buffer."
DEFVAL { 15 }
::= { dsAdslLineConfProfileExtnEntry 19 }
--dsAdslLineConfProfileExtnDrStby OBJECT-TYPE
-- SYNTAX INTEGER{
-- disable(0),
-- enable(1)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Provides the ability to disable power to the line driver."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 20 }
--dsAdslLineConfProfileExtnExpandedExchange OBJECT-TYPE
-- SYNTAX INTEGER{
-- expanded(32768),
-- short(0)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Enable/Disable EES."
-- DEFVAL { 32768 }
-- ::= { dsAdslLineConfProfileExtnEntry 21 }
--dsAdslLineConfProfileExtnEscapeFastRetrainEnable OBJECT-TYPE
-- SYNTAX INTEGER{
-- enable(1),
-- disable(0)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Enable/ Disable escape to the fast retrain capability."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 22 }
--dsAdslLineConfProfileExtnFastRetrainEnable OBJECT-TYPE
-- SYNTAX INTEGER{
-- enable(0),
-- disable(32768)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Enable/ Disable the fast retrain capability."
-- DEFVAL { 32768 }
-- ::= { dsAdslLineConfProfileExtnEntry 23 }
--dsAdslLineConfProfileExtnBitSwap OBJECT-TYPE
-- SYNTAX INTEGER{
-- disable(0),
-- enable(32768)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Enable/Disable bit swapping."
-- DEFVAL { 32768 }
-- ::= { dsAdslLineConfProfileExtnEntry 24 }
--dsAdslLineConfProfileExtnNtr OBJECT-TYPE
-- SYNTAX INTEGER{
-- localOcs(1),
-- refck8K (0)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Enable/ Disable NTR on a per chip basis."
-- DEFVAL { 1 }
-- ::= { dsAdslLineConfProfileExtnEntry 25 }
dsAdslLineConfProfileExtnAnnexType OBJECT-TYPE
SYNTAX INTEGER{
annexA(0),
annexB (1),
highSpeed (2),
annexADSL2 (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This parameter is set as per annex compliance of the code release. GlobespanVirata High Speed ADSL DMT (ADSL+) applications only."
DEFVAL { 5 }
::= { dsAdslLineConfProfileExtnEntry 26 }
--dsAdslLineConfProfileExtnAlctlUsVer OBJECT-TYPE
-- SYNTAX INTEGER{
-- unknown(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used for T1.413 demo purposes only."
-- DEFVAL { 2 }
-- ::= { dsAdslLineConfProfileExtnEntry 27 }
--dsAdslLineConfProfileExtnUseCustomBin OBJECT-TYPE
-- SYNTAX INTEGER{
-- enable(32768),
-- disable(0)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Enable/ Disable user selection on which of the 256 bins will be enabled for downstream transmission."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 28 }
--dsAdslLineConfProfileExtnDnBinUsage OBJECT-TYPE
-- SYNTAX OCTET STRING (SIZE ( 0..255 ) )
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "The parameter where a 1 in bit position indicates usage of corresponding bin,whereas a 0 disables usage of corresponding bin."
-- ::= { dsAdslLineConfProfileExtnEntry 29 }
dsAdslLineConfProfileExtnMaxDCo OBJECT-TYPE
SYNTAX INTEGER{
dsAdslLineConfProfileExtnTable64(0),
dsAdslLineConfProfileExtnTable128(4096),
dsAdslLineConfProfileExtnTable256(8192)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to indicate Maximum interleaving depth supported by the customer's hardware."
DEFVAL { 0 }
::= { dsAdslLineConfProfileExtnEntry 30 }
--dsAdslLineConfProfileExtnFullRetrain OBJECT-TYPE
-- SYNTAX INTEGER{
-- enable(0),
-- disable(32768)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to Indicate enable/disable of auto retrain capability."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 31 }
dsAdslLineConfProfileExtnAdvertisedCapabilities OBJECT-TYPE
SYNTAX INTEGER{
disable(0),
annexa(1),
annexb(2),
adslplus(16)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Controls if the CO will attempt to startup using alternate standards if the CPE does not support ADSL+. "
DEFVAL { 1 }
::= { dsAdslLineConfProfileExtnEntry 32 }
dsAdslLineConfProfileExtnPsdMaskType OBJECT-TYPE
SYNTAX INTEGER{
adsl(0),
hsadslM1(3),
hsadslM2 (4),
msk2Rfi (32768),
flatMskRfi (32771),
cabMsk2Rfi (32772),
coMsk2Rfio(49152),
adsl2NonovlpM1(275),
adls2NonovlpM2(291),
adls2NonovlpFlat(259)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selects the PSD mask option to be used."
DEFVAL { 3 }
::= { dsAdslLineConfProfileExtnEntry 33 }
dsAdslLineConfProfileExtnLineDmtConfMode OBJECT-TYPE
SYNTAX INTEGER{
ecMode(1),
fdmMode(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Selects if there is overlap or no overlap of bins."
DEFVAL { 2 }
::= { dsAdslLineConfProfileExtnEntry 34 }
--dsAdslLineConfProfileExtnEraseProfiles OBJECT-TYPE
-- SYNTAX INTEGER{
-- enable(32768),
-- disable(0)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Enables/Disables the ability to erase all fast retrain profiles at startup."
-- DEFVAL { 0 }
-- ::= { dsAdslLineConfProfileExtnEntry 35 }
--dsAdslLineConfProfileExtnRsMemory OBJECT-TYPE
-- SYNTAX INTEGER{
-- present(0),
-- notpresent(32768)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Indicates whether customer's Hardware uses external RS RAM."
-- DEFVAL { 32768 }
-- ::= { dsAdslLineConfProfileExtnEntry 36 }
--dsAdslLineConfProfileExtnParamHybridLossTestStart OBJECT-TYPE
-- SYNTAX INTEGER ( 0..511 )
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Indicates Start bin for range of bins to be measured."
-- DEFVAL { 2 }
-- ::= { dsAdslLineConfProfileExtnEntry 37 }
--dsAdslLineConfProfileExtnParamHybridLossTestEnd OBJECT-TYPE
-- SYNTAX INTEGER ( 0..511 )
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "Indicates End bin for range of bins to be measured."
-- DEFVAL { 64 }
-- ::= { dsAdslLineConfProfileExtnEntry 38 }
--dsAdslLineConfProfileExtnLineConfDmtTrellis OBJECT-TYPE
-- SYNTAX INTEGER{
-- on(1),
-- off(2)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This parameter enables/disables trellis coding. Trellis coding should always be enabled for its clear performance advantage."
-- DEFVAL { 1 }
-- ::= { dsAdslLineConfProfileExtnEntry 39 }
-- dsAdslLineConfProfileExtnDataBoost OBJECT-TYPE
-- SYNTAX INTEGER{
-- enable(32768),
-- disable(0)
-- }
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "This object is used to enable/disable DataBoost option."
-- DEFVAL { 32768 }
-- ::= { dsAdslLineConfProfileExtnEntry 40 }
dsAdslLineConfProfileExtnUpstreamPSD OBJECT-TYPE
SYNTAX INTEGER{
extended(32768),
standard(0),
jj100(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object sets the upstream PSD to be either extended or standard. Used for GSpan Plus only."
DEFVAL { 0 }
::= { dsAdslLineConfProfileExtnEntry 41 }
dsAdslLineConfProfileExtnPMMode OBJECT-TYPE
SYNTAX BITS{
pmstatel3enable(0),
pmstatel2enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM-related parameter used by the ATU-C to set the allowed link states."
-- DEFVAL { GS-CFG-DEF-ATUC-PM-MODE }
::= { dsAdslLineConfProfileExtnEntry 42 }
dsAdslLineConfProfileExtnPML0Time OBJECT-TYPE
SYNTAX INTEGER ( 0..255 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state. This parameter represents the minimum time (in seconds) between an exit from the L2 state and the next entry into the L2 state."
-- DEFVAL { GS-CFG-DEF-ATUC-PM-L0-TIME }
::= { dsAdslLineConfProfileExtnEntry 43 }
dsAdslLineConfProfileExtnPML2Time OBJECT-TYPE
SYNTAX INTEGER ( 0..255 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state. This parameter represents the minimum time (in seconds) between an Entry into the L2 state and the first Power Trim in the L2 state and between two consecutive Power Trims in the L2 State."
-- DEFVAL { GS-CFG-DEF-ATUC-PM-L2-TIME }
::= { dsAdslLineConfProfileExtnEntry 44 }
dsAdslLineConfProfileExtnPML2ATPR OBJECT-TYPE
SYNTAX INTEGER ( 0..31 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state. This parameter represents the maximum aggregate transmit power reduction (in dB) that can be performed through a single Power Trim in the L2 state."
-- DEFVAL { GS-CFG-DEF-ATUC-PM-L2-ATPR }
::= { dsAdslLineConfProfileExtnEntry 45 }
dsAdslLineConfProfileExtnPML2Rate OBJECT-TYPE
SYNTAX INTEGER ( 256000..1024000 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state. This parameter specifies the minimum net data rate during the low power state (L2). The data rate is coded in bit/s."
-- DEFVAL { GS-CFG-DEF-ATUC-PM-L2-RATE }
::= { dsAdslLineConfProfileExtnEntry 46 }
--dsAdslLineConfProfileExtnMSGMINds OBJECT-TYPE
-- SYNTAX INTEGER ( 4000..64000 )
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "configureS downstream overhead channel bandwidth"
-- DEFVAL { GS_CFG_DEF_ATUC_MSG_MIN_DS }
-- ::= { dsAdslLineConfProfileExtnEntry 47 }
--dsAdslLineConfProfileExtnMSGMINus OBJECT-TYPE
-- SYNTAX INTEGER ( 4000..64000 )
-- MAX-ACCESS read-write
-- STATUS current
-- DESCRIPTION
-- "configureS upstream overhead channel bandwidth"
-- DEFVAL { GS_CFG_DEF_ATUR_MSG_MIN_US }
-- ::= { dsAdslLineConfProfileExtnEntry 48 }
dsAdslLineConfProfileExtnAtucConfMinINP OBJECT-TYPE
SYNTAX INTEGER ( 0..400 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Parameter used to specify the minimum impulse noise protection
for the downstream bearer channel."
DEFVAL { 400 }
::= { dsAdslLineConfProfileExtnEntry 63 }
dsAdslLineConfProfileExtnPML2EntryThresholdRate OBJECT-TYPE
SYNTAX INTEGER ( 256000..1024000 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state.
This parameter specifies the downstream data rate threshold
that triggers autonomous entry into low power state (L2). The data rate
is coded in bit/s, and must be less than or equal to the value of
GSMIB_adslAtucConfGsPML2Exit ThresholdRate."
DEFVAL { 0 }
::= { dsAdslLineConfProfileExtnEntry 64 }
dsAdslLineConfProfileExtnPML2ExitThresholdRate OBJECT-TYPE
SYNTAX INTEGER ( 256000..1024000 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state.
This parameter specifies the downstream data rate threshold
that triggers autonomous exit from low power state (L2). The data rate
is coded in bit/s, and must be less than the value of
GSMIB_adslAtucConfPML2MinRate."
DEFVAL { 512000 }
::= { dsAdslLineConfProfileExtnEntry 65 }
dsAdslLineConfProfileExtnPML2EntryRateMinTime OBJECT-TYPE
SYNTAX INTEGER ( 900..65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PM configuration parameter, related to the L2 low power state.
This parameter specifies the minimum interval of time that the
net data rate for the bearer channel should stay below
GSMIB_adslAtucConfGsPML2EntryThresholdRate before
autonomous entry into low power state (L2).
The minimum entry rate time is coded in seconds, and can
range from 900 to 65535."
DEFVAL { 1800 }
::= { dsAdslLineConfProfileExtnEntry 66 }
dsAdslLineAlarmConfProfileExtnTable OBJECT-TYPE
SYNTAX SEQUENCE OF DsAdslLineAlarmConfProfileExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information on the ADSL line configuration. This table is an extention to adslLineAlarmConfProfileExtnTable defined in rfc 2662."
::= { dasanAdslMIBObjects 17 }
dsAdslLineAlarmConfProfileExtnEntry OBJECT-TYPE
SYNTAX DsAdslLineAlarmConfProfileExtnEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry (conceptual row) in the dsAdslLineAlarmConfProfileExtnTable.
The Table is indexed by adslLineAlarmConfProfileName."
INDEX { adslLineAlarmConfProfileName }
::= { dsAdslLineAlarmConfProfileExtnTable 1 }
DsAdslLineAlarmConfProfileExtnEntry ::= SEQUENCE {
dsAdslLineAlarmConfProfileName OCTET STRING,
dsAdslLineAlarmExtnAtucThresh15MinFailFastR INTEGER,
dsAdslLineAlarmExtnAtucThresh15MinSesL INTEGER,
dsAdslLineAlarmExtnAtucThresh15MinUasL INTEGER,
dsAdslLineAlarmExtnAtucOpStateTrapEnable INTEGER,
-- 2.7.6 GsvAdslAlarmConfProfileExtEntry (gsvAdslAlarmConfProfileExtTable.mib)
dsAdslLineAlarmExtnAtucThresh15MinFecsL Integer32,
dsAdslLineAlarmExtnAtucThresh1DayLofs Integer32,
dsAdslLineAlarmExtnAtucThresh1DayLoss Integer32,
dsAdslLineAlarmExtnAtucThresh1DayLols Integer32,
dsAdslLineAlarmExtnAtucThresh1DayLprs Integer32,
dsAdslLineAlarmExtnAtucThresh1DayESs Integer32,
dsAdslLineAlarmExtnAtucThresh1DaySesL Integer32,
dsAdslLineAlarmExtnAtucThresh1DayUasL Integer32,
dsAdslLineAlarmExtnAtucThresh1DayFecsL Integer32,
dsAdslLineAlarmExtnAturThresh15MinFecsL Integer32,
dsAdslLineAlarmExtnAturThresh1DayLofs Integer32,
dsAdslLineAlarmExtnAturThresh1DayLoss Integer32,
dsAdslLineAlarmExtnAturThresh1DayLprs Integer32,
dsAdslLineAlarmExtnAturThresh1DayESs Integer32,
dsAdslLineAlarmExtnAturThresh1DaySesL Integer32,
dsAdslLineAlarmExtnAturThresh1DayUasL Integer32,
dsAdslLineAlarmExtnAturThresh1DayFecsL Integer32,
dsAdslLineAlarmExtnAturThresh15MinSesL Integer32,
dsAdslLineAlarmExtnAturThresh15MinUasL Integer32,
dsAdslLineAlarmExtnAtucPmStateTrapEnable INTEGER
}
dsAdslLineAlarmConfProfileName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE ( 0..32 ) )
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object is used by the line alarm configuration Extn table in order to identify a row of this table. When `dynamic' profiles are implemented, the profile name is user specified. Also, the system will always provide a default profile whose name is `DEND"
::= { dsAdslLineAlarmConfProfileExtnEntry 1 }
dsAdslLineAlarmExtnAtucThresh15MinFailFastR OBJECT-TYPE
SYNTAX INTEGER ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of failed retrains encountered by an ADSL interface within any giving 15 minutes performance data collection period, which cause the SNMP agent to send an adslAtucFailedFastRTrap."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 2 }
dsAdslLineAlarmExtnAtucThresh15MinSesL OBJECT-TYPE
SYNTAX INTEGER ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Severe errored seconds encountered by an ADSL interface within any giving 15 minutes performance data collection period, which cause the SNMP to send an adslAtucSesLTrap."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 3 }
dsAdslLineAlarmExtnAtucThresh15MinUasL OBJECT-TYPE
SYNTAX INTEGER ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The first time the value of the corresponding instance of adslAtucPerf15MinUasL reaches or exceeds this value within a given 15-minute performance data collection period, an adslAtucUasLThreshTrap notifications will be generated."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 4 }
dsAdslLineAlarmExtnAtucOpStateTrapEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables and disables the OpStateChangeTrap."
::= { dsAdslLineAlarmConfProfileExtnEntry 5 }
dsAdslLineAlarmExtnAtucThresh15MinFecsL OBJECT-TYPE
SYNTAX Integer32 ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Forward error correction seconds encountered by an ADSL interface within any giving 15 Minutes performance data collection period, which cause the SNMP agent to send an ' dsAdslAtucTrapsPerfFecsLThresh'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 6 }
dsAdslLineAlarmExtnAtucThresh1DayLofs OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Frame Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAtucPerfLofsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 7 }
dsAdslLineAlarmExtnAtucThresh1DayLoss OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Signal Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAtucPerfLossThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 8 }
dsAdslLineAlarmExtnAtucThresh1DayLols OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Link Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAtucPerfLolsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 9 }
dsAdslLineAlarmExtnAtucThresh1DayLprs OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Power Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAtucPerfLprsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 10 }
dsAdslLineAlarmExtnAtucThresh1DayESs OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Errored Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAtucPerfESsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 11 }
dsAdslLineAlarmExtnAtucThresh1DaySesL OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Severe errored Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAtucPerfSesLThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 12 }
dsAdslLineAlarmExtnAtucThresh1DayUasL OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of unavailable errored seconds encountered by an ADSL interface within any giving 1 day performance data collection period, which cause the SNMP agent to send an 'dsAdslAtucPerfUasLThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 13 }
dsAdslLineAlarmExtnAtucThresh1DayFecsL OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Forward error correction seconds encountered by an ADSL interface within any giving 1 day performance data collection period, which cause the SNMP agent to send an ' dsAdslAtucTrapsPerfFecsLThresh1Day'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 14 }
dsAdslLineAlarmExtnAturThresh15MinFecsL OBJECT-TYPE
SYNTAX Integer32 ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Forward error correction seconds encountered by an ADSL interface within any giving 15 Minutes performance data collection period, which cause the SNMP agent to send an ' dsAdslAturTrapsPerfFecsLThresh'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 15 }
dsAdslLineAlarmExtnAturThresh1DayLofs OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Frame Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAturPerfLofsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 16 }
dsAdslLineAlarmExtnAturThresh1DayLoss OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Signal Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAturPerfLossThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 17 }
dsAdslLineAlarmExtnAturThresh1DayLprs OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Loss of Power Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAturPerfLprsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 18 }
dsAdslLineAlarmExtnAturThresh1DayESs OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Errored Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAturPerfESsThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 19 }
dsAdslLineAlarmExtnAturThresh1DaySesL OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Severe errored Seconds encountered by an ADSL interface, within any given 1 day performance data collection period, which causes the SNMP agent to send an 'dsAdslAturPerfSesLThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 20 }
dsAdslLineAlarmExtnAturThresh1DayUasL OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of unavailable errored seconds encountered by an ADSL interface within any giving 1 day performance data collection period, which cause the SNMP agent to send an 'dsAdslAturPerfUasLThresh1DayTrap'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 21 }
dsAdslLineAlarmExtnAturThresh1DayFecsL OBJECT-TYPE
SYNTAX Integer32 ( 0..86400 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Forward error correction seconds encountered by an ADSL interface within any giving 1 day performance data collection period, which cause the SNMP agent to send an ' dsAdslAturTrapsPerfFecsLThresh1Day'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 22 }
dsAdslLineAlarmExtnAturThresh15MinSesL OBJECT-TYPE
SYNTAX Integer32 ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Forward error correction seconds encountered by an ADSL interface within any giving 15 Minutes performance data collection period, which cause the SNMP agent to send an ' dsAdslAtucTrapsPerfFecsLThresh'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 23 }
dsAdslLineAlarmExtnAturThresh15MinUasL OBJECT-TYPE
SYNTAX Integer32 ( 0..900 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of Forward error correction seconds encountered by an ADSL interface within any giving 15 Minutes performance data collection period, which cause the SNMP agent to send an ' dsAdslAtucTrapsPerfFecsLThresh'."
DEFVAL { 0 }
::= { dsAdslLineAlarmConfProfileExtnEntry 24 }
dsAdslLineAlarmExtnAtucPmStateTrapEnable OBJECT-TYPE
SYNTAX INTEGER {
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables and disables the PmStateChangeTrap."
::= { dsAdslLineAlarmConfProfileExtnEntry 25 }
dsAdslTrap OBJECT IDENTIFIER ::= { dasanAdslLineMIB 2 }
dsAdslAtucTraps OBJECT IDENTIFIER ::= {dsAdslTrap 1}
dsAdslAtucOpStateChangeTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPhysExtnOpState }
STATUS current
DESCRIPTION
"Operational state of the transceiver is changed"
::= { dsAdslAtucTraps 1 }
dsAdslAtucPmStateChangeTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPhysExtnPMState }
STATUS current
DESCRIPTION
"Current PM state of the transceiver is changed."
::= { dsAdslAtucTraps 2 }
dsAdslAtucPerfFailedFastRThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr15MinFailedFastR,
dsAdslLineAlarmExtnAtucThresh15MinFailFastR }
STATUS current
DESCRIPTION
"Failed retrains 15-minute interval threshold reached"
::= { dsAdslAtucTraps 3 }
dsAdslAtucPerfSesLThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr15MinSesL,
dsAdslLineAlarmExtnAtucThresh15MinSesL }
STATUS current
DESCRIPTION
"Severely Errored Seconds 15-minute interval threshold reached"
::= { dsAdslAtucTraps 4 }
dsAdslAtucPerfUasLThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr15MinUasL,
dsAdslLineAlarmExtnAtucThresh15MinUasL }
STATUS current
DESCRIPTION
"Unavailable Errored Seconds 15-minute interval threshold reached"
::= { dsAdslAtucTraps 5 }
dsAdslAtucPerfFecsLThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr15MinFecsL,
dsAdslLineAlarmExtnAtucThresh15MinFecsL}
STATUS current
DESCRIPTION
"Forward error correction 15-minute interval threshold reached"
::= { dsAdslAtucTraps 6 }
dsAdslAtucPerfLofsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAtucPerfCurr1DayLofs,
dsAdslLineAlarmExtnAtucThresh1DayLofs}
STATUS current
DESCRIPTION
"Loss of Frames 1-day interval threshold reached"
::= { dsAdslAtucTraps 7 }
dsAdslAtucPerfLossThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAtucPerfCurr1DayLoss,
dsAdslLineAlarmExtnAtucThresh1DayLoss }
STATUS current
DESCRIPTION
"Loss of Signal 1-day interval threshold reached"
::= { dsAdslAtucTraps 8 }
dsAdslAtucPerfLolsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAtucPerfCurr1DayLols,
dsAdslLineAlarmExtnAtucThresh1DayLols}
STATUS current
DESCRIPTION
"Loss of Link 1-day interval threshold reached"
::= { dsAdslAtucTraps 9 }
dsAdslAtucPerfLprsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAtucPerfCurr1DayLprs,
dsAdslLineAlarmExtnAtucThresh1DayLprs}
STATUS current
DESCRIPTION
"Loss of Power 1-day interval threshold reached"
::= { dsAdslAtucTraps 10 }
dsAdslAtucPerfESsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAtucPerfCurr1DayESs,
dsAdslLineAlarmExtnAtucThresh1DayESs}
STATUS current
DESCRIPTION
"Errored Seconds 1-day interval threshold reached"
::= { dsAdslAtucTraps 11 }
dsAdslAtucPerfSesLThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr1DaySesL,
dsAdslLineAlarmExtnAtucThresh1DaySesL }
STATUS current
DESCRIPTION
"Severely Errored Seconds 1-day interval threshold reached"
::= { dsAdslAtucTraps 12 }
dsAdslAtucPerfUasLThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr1DayUasL,
dsAdslLineAlarmExtnAtucThresh1DayUasL}
STATUS current
DESCRIPTION
"Unavailable Errored Seconds 1-day interval threshold reached"
::= { dsAdslAtucTraps 13 }
dsAdslAtucPerfFecsLThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAtucPerfDataExtnCurr1DayFecsL,
dsAdslLineAlarmExtnAtucThresh1DayFecsL }
STATUS current
DESCRIPTION
"Forward error correction Seconds 1-day interval threshold reached"
::= { dsAdslAtucTraps 14 }
dsAdslAturTraps OBJECT IDENTIFIER ::= {dsAdslTrap 2}
dsAdslAturSesLThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAturPerfDataExtnCurr15MinSesL,
dsAdslLineAlarmExtnAturThresh15MinSesL}
STATUS current
DESCRIPTION
"Severely Errored Seconds 15-minute interval threshold reached"
::= { dsAdslAturTraps 1 }
dsAdslAturUasLThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAturPerfDataExtnCurr15MinUasL,
dsAdslLineAlarmExtnAturThresh15MinUasL}
STATUS current
DESCRIPTION
"Unavailable Errored Seconds 15-minute interval threshold reached"
::= { dsAdslAturTraps 2 }
dsAdslAturPerfFecsLThreshTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAturPerfDataExtnCurr15MinFecsL,
dsAdslLineAlarmExtnAturThresh15MinFecsL}
STATUS current
DESCRIPTION
"Forward error correction 15-minute interval threshold reached"
::= { dsAdslAturTraps 3 }
dsAdslAturPerfLofsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAturPerfCurr1DayLofs,
dsAdslLineAlarmExtnAturThresh1DayLofs}
STATUS current
DESCRIPTION
"Loss of Frames 1-day interval threshold reached"
::= { dsAdslAturTraps 4 }
dsAdslAturPerfLossThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAturPerfCurr1DayLoss,
dsAdslLineAlarmExtnAturThresh1DayLoss}
STATUS current
DESCRIPTION
"Loss of Signal 1-day interval threshold reached"
::= { dsAdslAturTraps 5 }
dsAdslAturPerfLprsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAturPerfCurr1DayLprs,
dsAdslLineAlarmExtnAturThresh1DayLprs}
STATUS current
DESCRIPTION
"Loss of Power 1-day interval threshold reached"
::= { dsAdslAturTraps 6 }
dsAdslAturPerfESsThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { adslAturPerfCurr1DayESs,
dsAdslLineAlarmExtnAturThresh1DayESs}
STATUS current
DESCRIPTION
"Errored Seconds 1-day interval threshold reached"
::= { dsAdslAturTraps 7 }
dsAdslAturPerfSesLThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAturPerfDataExtnCurr1DaySesL,
dsAdslLineAlarmExtnAturThresh1DaySesL}
STATUS current
DESCRIPTION
"Severely Errored Seconds 1-day interval threshold reached"
::= { dsAdslAturTraps 8 }
dsAdslAturPerfUasLThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAturPerfDataExtnCurr1DayUasL,
dsAdslLineAlarmExtnAturThresh1DayUasL }
STATUS current
DESCRIPTION
"Unavailable Errored Seconds 1-day interval threshold reached"
::= { dsAdslAturTraps 9 }
dsAdslAturPerfFecsLThresh1DayTrap NOTIFICATION-TYPE
OBJECTS { dsAdslAturPerfDataExtnCurr1DayFecsL,
dsAdslLineAlarmExtnAturThresh1DayFecsL }
STATUS current
DESCRIPTION
"Forward error correction Seconds 1-day interval threshold is reached"
::= { dsAdslAturTraps 10 }
END
|