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
|
-- File Name : GW-EPON-MIB.mi2
-- Date : Tue Nov 27 13:46:08 CST 2012
-- Author : AdventNet Agent Toolkit C Edition - MibEditor 6
GW-EPON-MIB DEFINITIONS ::= BEGIN
IMPORTS
devices
FROM GWTT-SMI
RowStatus, TruthValue, DisplayString, MacAddress, TEXTUAL-CONVENTION, DateAndTime
FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE, Integer32, TimeTicks, NOTIFICATION-TYPE, Counter32, IpAddress
FROM SNMPv2-SMI;
gwEponMib MODULE-IDENTITY
LAST-UPDATED "200804100000Z"
ORGANIZATION "Organization"
CONTACT-INFO "Contact-info"
DESCRIPTION "EPON private MIB information definitions"
REVISION "200603240959Z"
DESCRIPTION ""
::= { devices 20 }
-- TEXTUAL-CONVENTIONS --
ChassisSlotSupportType ::= TEXTUAL-CONVENTION
DISPLAY-HINT ""
STATUS current
DESCRIPTION
"The value indicates the type of board this slot surpports."
SYNTAX BITS { sw ( 0 ) ,
epon ( 1 ) ,
gpon ( 2 ) ,
get ( 3 ) ,
geo ( 4 ) ,
tdm ( 5 ) ,
stm1 ( 6 ) ,
pwu48 ( 7 ) ,
pwu220 ( 8 ) ,
smb ( 9 ) ,
gem ( 10 ) ,
sig ( 11 ) ,
onuEponB ( 12 ) ,
onu6FeC ( 13 ) ,
onu8FeD ( 14 ) ,
onu16FeD ( 15 ) ,
onu8PotsA ( 16 ) ,
onu8PotsB ( 17 ) ,
onu8FxsA ( 18 ) ,
onu8FxsB ( 19 ) ,
oltMain ( 20 ) ,
olt2Epon ( 21 ) ,
e1 ( 22 ) ,
oltE1 ( 23 ) ,
onuE1A ( 24 ) ,
onuE1B ( 25 ) ,
sw_6900 ( 26 ) ,
olt4epon ( 27 ) ,
olt8epon ( 28 ) ,
olt12epon ( 29 ) ,
gem4ge ( 30 ) ,
gem10ge ( 31 ) ,
fan_6900 ( 32 ) ,
pwu_48 ( 33 ) ,
pwu_220 ( 34 ) ,
olt4epon4ge(35),
pwu_220_6900m(36),
pwu_48_6900m(37),
fan_6900s(38),
pwu_220_6900s(39),
pwu_48_6900s(40)}
OnuAlarmLevelList ::= TEXTUAL-CONVENTION
DISPLAY-HINT ""
STATUS current
DESCRIPTION
"Each octet within this value specifies a alarm-level of one ONU of
a PON, with the first octet specifying ONU1 alarm-level, and the
second octet specifying ONU2 alarm-level, etc.
Per octet value is defined:
'0' - null
'1' - vital
'2' - major
'3' - minor
'4' - warning
'5' - clear
'6' - information
'7' - off-line."
SYNTAX OCTET STRING
EponDeviceType ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The value indicates the type of this device:
1 - unknown,
2 - GFA6700,
3 - GFA6100,
4 - GT811,
5 - GT831,
6 - GT831-CATV,
7 - GT812,
8 - GT813,
9 - GT881,
10 - GT861,
11 - GT891,
12 - GT810,
13 - GT863,
14 - other,
15 - GT865,
16 - GT816,
17 - GT811A,
18 - GT812A,
19 - GT831A,
20 - GT831A-CATV,
21 - GT815,
22 - GT812B,
23 - GT831B,
24 - GT866,
25 - GT811_B,
26 - GT851,
27 - GT813_B,
28 - GT862,
29 - GT892,
30 - GT835,
31 - GT831_B_CATV,
32 - GT815_B,
33 - GT871,
34 - GT871R,
35 - GD5048,
36 - GD6024,
37 - GT872,
38 - GT872P, --GT872B(deprecated)
39 - GT872R,
40 - GT873,
41 - GT873P,
42 - GT873R,
43 - GT871P,
44 - GT870,
45 - GT811_C,
46 - GT810_A,
47 - GT811_D,
96 - GFA6900M,
97 - GGA6900S,
99 - GFA6900"
SYNTAX Integer32
OnuList ::= TEXTUAL-CONVENTION
DISPLAY-HINT ""
STATUS current
DESCRIPTION
"Each octet within this value specifies a set of eight ONUs, with
the first octet specifying ONUs ID 1 through 8, the second octet
specifying ONUs ID 9 through 16, etc. Within each octet, the most
significant bit represents the lowest numbered ONU ID, and the
least significant bit represents the highest numbered ONU ID. Thus,
each ONU of a PON is represented by a single bit within the value
of this object. If the bit has a value of '1', then the ONU is
registered and included in this list; if the bit has a value of
'0', then the ONU is disregistered and not included."
SYNTAX OCTET STRING
ChassisSlotBoardType ::= TEXTUAL-CONVENTION
DISPLAY-HINT ""
STATUS current
DESCRIPTION
"The value indicates the type of this board:
null(1) - NULL,
unknown(2) - Unknown,
sw(3) - SW (OLT), master control and switch board.
epon(4) - EPON (OLT), slave epon board.
gpon(5) - GPON (OLT), slave gpon board.
get(6) - GET (OLT, 4GE-TX), using category 5 UTP interface.
geo(7) - GEO (OLT, 4GE-XX), using X fiber over PMT interface.
tdm(8) - TDM (OLT), slave tdm board.
stm1(9) - STM1 (OLT), slave stm1 board.
pwu48(10) - PWR48, power board with input of -48V(DC).
pwu220(11) - PWR220, power board with input of 220V(AC).
smb(12) - SMB (ONU), the simple mainboard of box device.
gem(13) - GEM (OLT), slave board.
sig(14) - SIG (OLT), slave board.
onuEponB(15) - EPON-B (ONU).
onu6FeC(16) - 6FE_C (ONU), RJ45 connector.
onu8FeD(17) - 8FE_D (ONU), SCSI68 connector.
onu16FeD(18) - 16FE_D (ONU), SCSI68 connector.
onu8PotsA(19)- 8POTS-A (ONU), RJ11 connector.
onu8PotsB(20)- 8POTS-B (ONU), RJ21 connector.
onu8FxsA(21) - 8FXS-A (ONU), RJ11 connector.
onu8FxsB(22) - 8FXS-B (ONU), RJ21 connector.
oltMain(23) - the master board of box-device OLT.
olt2Epon(24) - the EPON board of box-device OLT.
E1 ( 25 ) -
oltE1 ( 26 ) ,
onuE1A ( 27 ) ,
onuE1B ( 28 ) ,
sw_6900 ( 29 ) - SW (OLT), master control and switch board of GFA6900.
olt4epon ( 30 ) - EPON (OLT) , PON board with 4 PON ports.
olt8epon ( 31 ) - EPON (OLT) , PON board with 8 PON ports.
olt12epon ( 32 ) - EPON (OLT) , PON board with 12 PON ports and 4 GE ports.
gem4ge ( 33 ) - GEM (OLT) , GEM board with 4 GE ports.
gem10ge ( 34 ) - GEM (OLT) , GEM board with 1 10GE port and 4 GE ports.
fan_6900 ( 35 ) - FAN (OLT) , FAN board of GFA6900.
pwu_48 ( 36 ) - PWU (OLT) , 48V Power board of GFA6900 and GFA6900M.
pwu_220 ( 37 ) - PWU (OLT) , 220V Power board of GFA6900.
olt4epon4ge(38) - EPON (OLT) , EPON board with 4 PON ports and 4 GE ports
pwu_220_6900m(39) - PWU (OLT) , 220V Power board of GFA6900M.
fan_6900s(40) - FAN (OLT) , FAN board of GFA6900S.
pwu_48_6900s(41) - PWU (OLT) , 48V Power board of GFA6900S.
pwu_220_6900s(42) - PWU (OLT) , 220V Power board of GFA6900S. "
SYNTAX INTEGER { null ( 1 ) ,
unknown ( 2 ) ,
sw ( 3 ) ,
epon ( 4 ) ,
gpon ( 5 ) ,
get ( 6 ) ,
geo ( 7 ) ,
tdm ( 8 ) ,
stm1 ( 9 ) ,
pwu48 ( 10 ) ,
pwu220 ( 11 ) ,
smb ( 12 ) ,
gem ( 13 ) ,
sig ( 14 ) ,
onuEponB ( 15 ) ,
onu6FeC ( 16 ) ,
onu8FeD ( 17 ) ,
onu16FeD ( 18 ) ,
onu8PotsA ( 19 ) ,
onu8PotsB ( 20 ) ,
onu8FxsA ( 21 ) ,
onu8FxsB ( 22 ) ,
oltMain ( 23 ) ,
olt2Epon ( 24 ) ,
e1 ( 25 ) ,
oltE1 ( 26 ) ,
onuE1A ( 27 ) ,
onuE1B ( 28 ) ,
sw_6900 ( 29 ) ,
olt4epon ( 30 ) ,
olt8epon ( 31 ) ,
olt12epon ( 32 ) ,
gem4ge ( 33 ) ,
gem10ge ( 34 ) ,
fan_6900 ( 35 ) ,
pwu_48 ( 36 ) ,
pwu_220 ( 37 ) ,
olt4epon4ge(38) ,
pwu_220_6900m(39) ,
fan_6900s(40) ,
pwu_48_6900s(41) ,
pwu_220_6900s(42)}
gwEponMibObjects OBJECT IDENTIFIER
::= { gwEponMib 1 }
gwEponCfgGroup OBJECT IDENTIFIER
::= { gwEponMibObjects 1 }
gwEponDevice OBJECT IDENTIFIER
::= { gwEponCfgGroup 1 }
gwEponBoard OBJECT IDENTIFIER
::= { gwEponCfgGroup 2 }
gwEponPon OBJECT IDENTIFIER
::= { gwEponCfgGroup 3 }
gwEponPonOnuAuth OBJECT IDENTIFIER
::= { gwEponCfgGroup 4 }
gwEponLlid OBJECT IDENTIFIER
::= { gwEponCfgGroup 5 }
gwDevTrapGroup OBJECT IDENTIFIER
::= { gwEponCfgGroup 6 }
gwAlarmLevelGroup OBJECT IDENTIFIER
::= { gwEponCfgGroup 7 }
gwConsoleCfgGroup OBJECT IDENTIFIER
::= { gwEponCfgGroup 8 }
gwEponDevTable OBJECT-TYPE
SYNTAX SEQUENCE OF GwEponDevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of device informations"
::= { gwEponDevice 1 }
gwEponDevEntry OBJECT-TYPE
SYNTAX GwEponDevEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing properties and some descriptions"
INDEX { deviceIndex }
::= { gwEponDevTable 1 }
GwEponDevEntry ::= SEQUENCE {
deviceIndex Integer32,
deviceType EponDeviceType,
deviceName DisplayString,
deviceDescription DisplayString,
deviceLocation DisplayString,
deviceVendor DisplayString,
deviceFirmWareVersion DisplayString,
deviceSoftWareVersion DisplayString,
deviceHardWareVersion DisplayString,
deviceOperStatus INTEGER,
deviceAlarmStatus INTEGER,
deviceMacAddress MacAddress,
deviceLastChange TimeTicks,
deviceReset INTEGER,
deviceEntLogicalIndex Integer32,
deviceEntLogicalCommunity DisplayString,
deviceOnuTestDistance Integer32,
deviceUpTime TimeTicks,
deviceStpEnable INTEGER,
deviceChipsetVendor DisplayString,
deviceChipsetMode Integer32,
deviceChipsetRevision DisplayString,
deviceChipsetDate DisplayString,
deviceCapPortDesc DisplayString,
deviceCapEthPortNum Integer32,
deviceCapIadPotsPortNum Integer32,
deviceCapE1PortNum Integer32,
deviceCapUQueueTotal Integer32,
deviceCapUQueuePort Integer32,
deviceCapDQueueTotal Integer32,
deviceCapDQueuePort Integer32,
deviceCapBattery INTEGER,
deviceMulticastSwitch INTEGER,
deviceSystemTime DateAndTime,
deviceRestartupTime DateAndTime,
deviceTrafficServiceStatus INTEGER,
deviceAlarmMask BITS,
deviceModel DisplayString,
deviceMulticastFastLeaveAbility BITS,
deviceMulticastFastLeaveOperState INTEGER,
deviceMulticastFastLeaveAdminState INTEGER,
onuMacTableAlarmThreshold Integer32,
onuMacNumbers Integer32
}
deviceIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index of device"
::= { gwEponDevEntry 1 }
deviceType OBJECT-TYPE
SYNTAX EponDeviceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the type of this device"
::= { gwEponDevEntry 2 }
deviceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A string indicates or configure device name"
::= { gwEponDevEntry 3 }
deviceDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Description for this device"
::= { gwEponDevEntry 4 }
deviceLocation OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "A string indicates and configure the device location"
::= { gwEponDevEntry 5 }
deviceVendor OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A string indicates the vendor"
::= { gwEponDevEntry 6 }
deviceFirmWareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the version of firmware"
::= { gwEponDevEntry 7 }
deviceSoftWareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the version of software"
::= { gwEponDevEntry 8 }
deviceHardWareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the version of PCB"
::= { gwEponDevEntry 9 }
deviceOperStatus OBJECT-TYPE
SYNTAX INTEGER { up ( 1 ) , down ( 2 ) , unknown ( 3 ) , dormant ( 4 ) , powerDown ( 5 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current operational state of the device, 'down(2)' indicates
that the ONU is off-line. 'dormant(4)' indicates the device is
waiting for external actions (such as no bandwidth for any service),
'powerDown(5)' indicates the device is power down or dying gasp."
DEFVAL { down }
::= { gwEponDevEntry 10 }
deviceAlarmStatus OBJECT-TYPE
SYNTAX INTEGER { vital ( 1 ) , major ( 2 ) , minor ( 3 ) , warning ( 4 ) , clear ( 5 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates alarm status for this device, it means unique alarm occur that unique bit is set '1', on the other hand, unique bit is set 0 while this alarm is cleared."
::= { gwEponDevEntry 11 }
deviceMacAddress OBJECT-TYPE
SYNTAX MacAddress ( SIZE ( 6 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates and confgure device MAC address"
::= { gwEponDevEntry 12 }
deviceLastChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the last time for this device change"
::= { gwEponDevEntry 15 }
deviceReset OBJECT-TYPE
SYNTAX INTEGER { noop ( 1 ) , reset ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Description"
DEFVAL { noop }
::= { gwEponDevEntry 16 }
deviceEntLogicalIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object uniquely identifies the logical
entity. The value should be a small positive integer; index
values for different logical entities are are not
necessarily contiguous."
::= { gwEponDevEntry 17 }
deviceEntLogicalCommunity OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An SNMPv1 or SNMPv2C community-string which can be used to
access detailed management information for this logical
entity. The agent should allow read access with this
community string (to an appropriate subset of all managed
objects) and may also return a community string based on the
privileges of the request used to read this object. Note
that an agent may return a community string with read-only
privileges, even if this object is accessed with a read-
write community string. However, the agent must take care
not to return a community string which allows more
privileges than the community string used to access this
object.
A compliant SNMP agent may wish to conserve naming scopes by
representing multiple logical entities in a single 'default'
naming scope. This is possible when the logical entities
represented by the same value of entLogicalCommunity have no
object instances in common. For example, 'bridge1' and
'repeater1' may be part of the main naming scope, but at
least one additional community string is needed to represent
'bridge2' and 'repeater2'.
Logical entities 'bridge1' and 'repeater1' would be
represented by sysOREntries associated with the 'default'
naming scope.
For agents not accessible via SNMPv1 or SNMPv2C, the value
of this object is the empty string. This object may also
contain an empty string if a community string has not yet
been assigned by the agent, or no community string with
suitable access rights can be returned for a particular SNMP
request.
Note that this object is deprecated. Agents which implement
SNMPv3 access should use the entLogicalContextEngineID and
entLogicalContextName objects to identify the context
associated with each logical entity. SNMPv3 agents may
return a zero-length string for this object, or may continue
to return a community string (e.g., tri-lingual agent
support)."
::= { gwEponDevEntry 18 }
deviceOnuTestDistance OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the distance between OLT and unique ONU, unit:meter"
::= { gwEponDevEntry 19 }
deviceUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object uniquely identifies up time about this device."
::= { gwEponDevEntry 20 }
deviceStpEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "OLT or ONU spanning tree contral, enable(1)-
enable the spanning tree protocol, disable(2)-
disable the spanning tree protocol."
::= { gwEponDevEntry 21 }
deviceChipsetVendor OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON chipset vendor ID"
::= { gwEponDevEntry 22 }
deviceChipsetMode OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON chipset type"
::= { gwEponDevEntry 23 }
deviceChipsetRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON chipset revision"
::= { gwEponDevEntry 24 }
deviceChipsetDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON chipset design date"
::= { gwEponDevEntry 25 }
deviceCapPortDesc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Port capabilities description, include GE/FE/E1/POTS etc."
::= { gwEponDevEntry 26 }
deviceCapEthPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of ethernet port supported"
::= { gwEponDevEntry 27 }
deviceCapIadPotsPortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of POTS port of IAD supported"
::= { gwEponDevEntry 28 }
deviceCapE1PortNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of E1 port supported"
::= { gwEponDevEntry 29 }
deviceCapUQueueTotal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of upstream queues"
::= { gwEponDevEntry 30 }
deviceCapUQueuePort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum queues per port upstream"
::= { gwEponDevEntry 31 }
deviceCapDQueueTotal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Number of downstream queues"
::= { gwEponDevEntry 32 }
deviceCapDQueuePort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Maximum queues per port downstream"
::= { gwEponDevEntry 33 }
deviceCapBattery OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Battery Backup"
::= { gwEponDevEntry 34 }
deviceMulticastSwitch OBJECT-TYPE
SYNTAX INTEGER { snooping ( 1 ) , ctc ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "ONU multicast switch"
::= { gwEponDevEntry 35 }
deviceSystemTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Current system clock-time.
OCTET-STRING consisting of eleven octets whose contents
are defined by RFC2579."
::= { gwEponDevEntry 36 }
deviceRestartupTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The time of device(OLT or ONU) restartup-time.
OCTET-STRING consisting of eleven octets whose contents
are defined by RFC2579."
::= { gwEponDevEntry 37 }
deviceTrafficServiceStatus OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "ONU traffic service state. 'enable(1)' indicates the traffic is
in-service. 'disable(2)' indicates the traffic is out of service,
but is still registered."
DEFVAL { enable }
::= { gwEponDevEntry 38 }
deviceAlarmMask OBJECT-TYPE
SYNTAX BITS { power ( 0 ) , fan ( 1 ) , cpu ( 2 ) , temperature ( 3 ) , register ( 4 ) , present ( 5 ) , ethlink ( 6 ) , ethfer ( 7 ) , ethflr ( 8 ) , ethti ( 9 ) , ethloop ( 10 ) , ponber ( 11 ) , ponfer ( 12 ) , ponabnormal ( 13 ) , ponaps ( 14 ) , ponlink ( 15 ) , onuLaserAlwayOn ( 16 ) , onuOpticalPowerLow ( 17 ) , onuOpticalPowerHigh ( 18 ) , ponLOS ( 19 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "."
::= { gwEponDevEntry 39 }
deviceModel OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 32 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "."
::= { gwEponDevEntry 40 }
deviceMulticastFastLeaveAbility OBJECT-TYPE
SYNTAX BITS { ctc ( 0 ) , snooping ( 1 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fast Leave Mode: If the bit value of 'ctc(0)' is 0, the mode is CTC
and non-fast-leave function, if the bit value of 'ctc(0)' is 1, the
mode is CTC and fast-leave function; If the bit value of 'snooping(1)'
is 0, the mode is snooping and non-fast-leave function, If the bit value
of 'snooping(1)' is 1, the mode is snooping and fast-leave function."
::= { gwEponDevEntry 41 }
deviceMulticastFastLeaveOperState OBJECT-TYPE
SYNTAX INTEGER { active ( 1 ) , deactive ( 2 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Fast Leave Function is active or deactive"
::= { gwEponDevEntry 42 }
deviceMulticastFastLeaveAdminState OBJECT-TYPE
SYNTAX INTEGER { active ( 1 ) , deactive ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "active or deactivate Fast Leave Function"
::= { gwEponDevEntry 43 }
onuMacTableAlarmThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "onu MAC table alarm threshold"
::= { gwEponDevEntry 44 }
onuMacNumbers OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "show onu actual mac number"
::= { gwEponDevEntry 45 }
gwEponBoardTable OBJECT-TYPE
SYNTAX SEQUENCE OF GwEponBoardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of board informations"
::= { gwEponBoard 1 }
gwEponBoardEntry OBJECT-TYPE
SYNTAX GwEponBoardEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containig status and configrue information about boards"
INDEX { deviceIndex, boardIndex }
::= { gwEponBoardTable 1 }
GwEponBoardEntry ::= SEQUENCE {
boardIndex Integer32,
curBoardType ChassisSlotBoardType,
boardDescription DisplayString,
boardActMode INTEGER,
boardOperStatus INTEGER,
boardAlarmLevel INTEGER,
boardLastChangeTime TimeTicks,
boardSupprotType ChassisSlotSupportType,
boardReset INTEGER,
boardTemperature Integer32,
boardEntLogicalIndex Integer32,
boardEntLogicalCommunity DisplayString,
boardSoftwareVersion DisplayString,
boardFirmwareVersion DisplayString,
boardBootVersion DisplayString,
boardHardwareVersion DisplayString,
boardManufactureDate DisplayString,
boardSerialNo DisplayString,
boardCpuUsage Integer32,
boardMemoryUsage Integer32,
boardHasSnmpAgent INTEGER,
boardSnmpAgentIpAddr IpAddress,
boardSnmpAgentReadCommunity DisplayString,
boardSnmpAgentWriteCommunity DisplayString,
boardTemperatureHighThresholds Integer32,
boardCpuUsageThresholds Integer32,
boardMemoryUsageThresholds Integer32,
boardMemorySize Integer32,
boardTemperatureLowThresholds Integer32,
boardAdminStatus INTEGER
}
boardIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of boards in unique device which is specified by 'deviceIndex'"
::= { gwEponBoardEntry 1 }
curBoardType OBJECT-TYPE
SYNTAX ChassisSlotBoardType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the type of this board."
::= { gwEponBoardEntry 2 }
boardDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 255 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates and confgure board description"
::= { gwEponBoardEntry 3 }
boardActMode OBJECT-TYPE
SYNTAX INTEGER { master-active ( 1 ) , master-redundancy ( 2 ) , slave ( 3 ) , unknown ( 4 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates acting mode of unique board"
::= { gwEponBoardEntry 4 }
boardOperStatus OBJECT-TYPE
SYNTAX INTEGER { null ( 1 ) , initing ( 2 ) , upgrating ( 3 ) , running ( 4 ) , exception ( 5 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The Value indicates board operating status"
::= { gwEponBoardEntry 5 }
boardAlarmLevel OBJECT-TYPE
SYNTAX INTEGER { vital ( 1 ) , major ( 2 ) , minor ( 3 ) , warning ( 4 ) , noAlarm ( 5 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates alarm level for unique board"
::= { gwEponBoardEntry 6 }
boardLastChangeTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the time of last change about this board"
::= { gwEponBoardEntry 7 }
boardSupprotType OBJECT-TYPE
SYNTAX ChassisSlotSupportType
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the type of board this slot surpports."
::= { gwEponBoardEntry 8 }
boardReset OBJECT-TYPE
SYNTAX INTEGER { noop ( 1 ) , reset ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value of this object determines whether reset this board.
'noop(1)' - only read value. 'reset(2)' - only write value,
if the active master board is resetted, and another master
board is running, then, the two boards will be switchover."
DEFVAL { noop }
::= { gwEponBoardEntry 9 }
boardTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value indicates the temperature of this board"
::= { gwEponBoardEntry 10 }
boardEntLogicalIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object uniquely identifies the logical
entity. The value should be a small positive integer; index
values for different logical entities are are not
necessarily contiguous."
::= { gwEponBoardEntry 11 }
boardEntLogicalCommunity OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An SNMPv1 or SNMPv2C community-string which can be used to
access detailed management information for this logical
entity. The agent should allow read access with this
community string (to an appropriate subset of all managed
objects) and may also return a community string based on the
privileges of the request used to read this object. Note
that an agent may return a community string with read-only
privileges, even if this object is accessed with a read-
write community string. However, the agent must take care
not to return a community string which allows more
privileges than the community string used to access this
object.
A compliant SNMP agent may wish to conserve naming scopes by
representing multiple logical entities in a single 'default'
naming scope. This is possible when the logical entities
represented by the same value of entLogicalCommunity have no
object instances in common. For example, 'bridge1' and
'repeater1' may be part of the main naming scope, but at
least one additional community string is needed to represent
'bridge2' and 'repeater2'.
Logical entities 'bridge1' and 'repeater1' would be
represented by sysOREntries associated with the 'default'
naming scope.
For agents not accessible via SNMPv1 or SNMPv2C, the value
of this object is the empty string. This object may also
contain an empty string if a community string has not yet
been assigned by the agent, or no community string with
suitable access rights can be returned for a particular SNMP
request.
Note that this object is deprecated. Agents which implement
SNMPv3 access should use the entLogicalContextEngineID and
entLogicalContextName objects to identify the context
associated with each logical entity. SNMPv3 agents may
return a zero-length string for this object, or may continue
to return a community string (e.g., tri-lingual agent
support)."
::= { gwEponBoardEntry 12 }
boardSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value indicates the version of software"
::= { gwEponBoardEntry 13 }
boardFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value indicates the version of firmware"
::= { gwEponBoardEntry 14 }
boardBootVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Boot Version"
::= { gwEponBoardEntry 15 }
boardHardwareVersion OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Hardware Version"
::= { gwEponBoardEntry 16 }
boardManufactureDate OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Manufacture Date"
::= { gwEponBoardEntry 17 }
boardSerialNo OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Manufacture Serial No"
::= { gwEponBoardEntry 18 }
boardCpuUsage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The percentage of CPU usage"
::= { gwEponBoardEntry 19 }
boardMemoryUsage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The percentage of used memory"
::= { gwEponBoardEntry 20 }
boardHasSnmpAgent OBJECT-TYPE
SYNTAX INTEGER { notpresent ( 0 ) , snmpv1 ( 1 ) , snmpv2c ( 2 ) , snmpv3 ( 3 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the object indicates whether there is a SNMP agent running on this board."
::= { gwEponBoardEntry 21 }
boardSnmpAgentIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION "this object indicates and configure IP address of SNMP agent running on this board. now, only GT861's IAD boards surpport this function."
::= { gwEponBoardEntry 22 }
boardSnmpAgentReadCommunity OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 16 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the object indicates and configure the read-only community of SNMP agent running on the board. now, only GT861's IAD boards surpport this function."
::= { gwEponBoardEntry 23 }
boardSnmpAgentWriteCommunity OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 16 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the object indicates and configure the read-write community of SNMP agent running on the board. now, only GT861's IAD boards surpport this function."
::= { gwEponBoardEntry 24 }
boardTemperatureHighThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { gwEponBoardEntry 25 }
boardCpuUsageThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { gwEponBoardEntry 26 }
boardMemoryUsageThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The percentage of used memory"
::= { gwEponBoardEntry 27 }
boardMemorySize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { gwEponBoardEntry 28 }
boardTemperatureLowThresholds OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { gwEponBoardEntry 29 }
boardAdminStatus OBJECT-TYPE
SYNTAX INTEGER { up(1), down(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired state of the board."
::= { gwEponBoardEntry 30 }
ponPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF PonPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of pon port informations"
::= { gwEponPon 1 }
ponPortEntry OBJECT-TYPE
SYNTAX PonPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing status and configure information about pon port"
INDEX { deviceIndex, boardIndex, ponPortIndex }
::= { ponPortTable 1 }
PonPortEntry ::= SEQUENCE {
ponPortIndex Integer32,
ponPortIfIndex Integer32,
ponPortDot1dBasePort Integer32,
ponPortPartnerDev Integer32,
ponPortPartnerBrd Integer32,
ponPortPartnerPort Integer32,
ponPortProtectionDev Integer32,
ponPortProtectionBrd Integer32,
ponPortProtectionPort Integer32,
ponPortType INTEGER,
ponPortMaxOnu Integer32,
ponPortCurrOnu Integer32,
ponPortOperStatus INTEGER,
ponPortAlarmStatus BITS,
ponPortAlarmMask BITS,
ponPortMaxBW Integer32,
ponPortActBW Integer32,
ponPortRemainBW Integer32,
ponPortApsCtrl INTEGER,
ponPortApsStatus INTEGER,
ponPortEncryptSet INTEGER,
ponPortOnuLpbCtrl INTEGER,
ponPortOnuLpbSource INTEGER,
ponPortOnuLpbTime Integer32,
ponPortOnuLpbTxFrms Counter32,
ponPortOnuLpbRxFrms Counter32,
ponEntLogicalIndex Integer32,
ponEntLogicalCommunity DisplayString,
ponPortLinkedOnuCounter Integer32,
ponPortAdminStatus INTEGER,
ponPortReset INTEGER,
ponPortWindowRange INTEGER,
ponPortDownlinkPolicingEbl INTEGER,
ponPortAllOnuAlmLevel OnuAlarmLevelList
}
ponPortIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of pon port"
::= { ponPortEntry 1 }
ponPortIfIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value equipped to the index of this pon port in the IF-MIB"
::= { ponPortEntry 2 }
ponPortDot1dBasePort OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 65536 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "port id in the bridge, equipped to the value in the bridge 'dot1dBasePort'"
::= { ponPortEntry 3 }
ponPortPartnerDev OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of the device which contains parter pon port"
::= { ponPortEntry 4 }
ponPortPartnerBrd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of board which contains parter pon port "
::= { ponPortEntry 5 }
ponPortPartnerPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "partnet physical pon port index"
::= { ponPortEntry 6 }
ponPortProtectionDev OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PON Automatic Protection Switching, index of device"
::= { ponPortEntry 7 }
ponPortProtectionBrd OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PON Automatic Protection Switching, index of board"
::= { ponPortEntry 8 }
ponPortProtectionPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PON Automatic Protection Switching, index of pon port"
::= { ponPortEntry 9 }
ponPortType OBJECT-TYPE
SYNTAX INTEGER { eponMauType1000BasePXOLT ( 1 ) , eponMauType1000BasePXONU ( 2 ) , eponMauType1000BasePX10DOLT ( 3 ) , eponMauType1000BasePX10DONU ( 4 ) , eponMauType1000BasePX10UOLT ( 5 ) , eponMauType1000BasePX10UONU ( 6 ) , eponMauType1000BasePX20DOLT ( 7 ) , eponMauType1000BasePX20DONU ( 8 ) , eponMauType1000BasePX20UOLT ( 9 ) , eponMauType1000BasePX20UONU ( 10 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "type of pon port"
::= { ponPortEntry 10 }
ponPortMaxOnu OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max number of supported ONUs in this PON port."
DEFVAL { 64 }
::= { ponPortEntry 11 }
ponPortCurrOnu OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 64 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of registered ONUs in this PON port."
::= { ponPortEntry 12 }
ponPortOperStatus OBJECT-TYPE
SYNTAX INTEGER { up ( 1 ) , down ( 2 ) , unknown ( 3 ) , loop ( 4 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "operation status of unique pon port"
DEFVAL { down }
::= { ponPortEntry 13 }
ponPortAlarmStatus OBJECT-TYPE
SYNTAX BITS { ber ( 0 ) , fer ( 1 ) , abnormal ( 2 ) , aps ( 3 ) , link ( 4 ) , onuLaserAlwaysOn ( 5 ) , onuOpticalPowerLow ( 6 ) , onuOpticalPowerHigh ( 7 ) , ponLOS ( 8 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON port alarm status, it indicates an alarm with bit=1,
if all bit is 0, indicates no alarm."
::= { ponPortEntry 14 }
ponPortAlarmMask OBJECT-TYPE
SYNTAX BITS { ber ( 0 ) , fer ( 1 ) , abnormal ( 2 ) , aps ( 3 ) , link ( 4 ) , onuLaserAlwaysOn ( 5 ) , onuOpticalPowerLow ( 6 ) , onuOpticalPowerHigh ( 7 ) , ponLOS ( 8 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PON Port Alarm mask, the bit=1 indicates mask."
::= { ponPortEntry 15 }
ponPortMaxBW OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 1000000 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max bandwidth supported, unit:KB."
::= { ponPortEntry 16 }
ponPortActBW OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the actual bandwidth, unit:KB."
::= { ponPortEntry 17 }
ponPortRemainBW OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 1000000 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current available bandwidth, unit:KB."
DEFVAL { 1024 }
::= { ponPortEntry 18 }
ponPortApsCtrl OBJECT-TYPE
SYNTAX INTEGER { disable ( 1 ) , auto ( 2 ) , force ( 3 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PON automatic-protection-switching control."
DEFVAL { auto }
::= { ponPortEntry 19 }
ponPortApsStatus OBJECT-TYPE
SYNTAX INTEGER { unknown ( 1 ) , active ( 2 ) , passive ( 3 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON automatic-protection-switching status."
DEFVAL { active }
::= { ponPortEntry 20 }
ponPortEncryptSet OBJECT-TYPE
SYNTAX INTEGER { pure ( 1 ) , downstreamonly ( 2 ) , bidirectional ( 3 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Encryption set according to every ONU, this value is ignored when the pon port belongs to OLT."
DEFVAL { pure }
::= { ponPortEntry 21 }
ponPortOnuLpbCtrl OBJECT-TYPE
SYNTAX INTEGER { noop ( 1 ) , lpbStart ( 2 ) , lpbStop ( 3 ) , inProcess ( 4 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "ONU Loopback Control, 'noop(1)' is no operation, i.e. the
current status is idle; 'lpbStart(2)' is start loopback,
only when the object value is 'noop', it can be configurated
'lpbStart(2)', otherwise forbidden, and if success, its
value become 'inProcess(4)'; 'lpbStop(3)' is stop loopback,
only when the object value is 'inProcess(4)', it can be
configurated 'lpbStop(3)', and if success, its value become
'noop(1)'; 'inProcess(4)' is loopbacking status now."
DEFVAL { noop }
::= { ponPortEntry 22 }
ponPortOnuLpbSource OBJECT-TYPE
SYNTAX INTEGER { internal ( 1 ) , external ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Loopback Data Source, 'internal' indicates internal data source, to
use testing the link up or down, like ping function; 'external'
indicates external data source, to use testing the bandwidth of the
ONU ethernet."
DEFVAL { internal }
::= { ponPortEntry 23 }
ponPortOnuLpbTime OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 2147483647 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Loopback Timeout, if the object value is 0, indicate the
loopback is processing at all time, if the value is none 0,
indicate the loopback time from begin to end, when the time
is end it will be auto-stopped. unit:second."
DEFVAL { 0 }
::= { ponPortEntry 24 }
ponPortOnuLpbTxFrms OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of frames transmit by this ONU Logical Link."
::= { ponPortEntry 25 }
ponPortOnuLpbRxFrms OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of frames transmit by this ONU Logical Link."
::= { ponPortEntry 26 }
ponEntLogicalIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of this object uniquely identifies the logical
entity. The value should be a small positive integer; index
values for different logical entities are are not
necessarily contiguous."
::= { ponPortEntry 27 }
ponEntLogicalCommunity OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 1 .. 20 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An SNMPv1 or SNMPv2C community-string which can be used to
access detailed management information for this logical
entity. The agent should allow read access with this
community string (to an appropriate subset of all managed
objects) and may also return a community string based on the
privileges of the request used to read this object. Note
that an agent may return a community string with read-only
privileges, even if this object is accessed with a read-
write community string. However, the agent must take care
not to return a community string which allows more
privileges than the community string used to access this
object.
A compliant SNMP agent may wish to conserve naming scopes by
representing multiple logical entities in a single 'default'
naming scope. This is possible when the logical entities
represented by the same value of entLogicalCommunity have no
object instances in common. For example, 'bridge1' and
'repeater1' may be part of the main naming scope, but at
least one additional community string is needed to represent
'bridge2' and 'repeater2'.
Logical entities 'bridge1' and 'repeater1' would be
represented by sysOREntries associated with the 'default'
naming scope.
For agents not accessible via SNMPv1 or SNMPv2C, the value
of this object is the empty string. This object may also
contain an empty string if a community string has not yet
been assigned by the agent, or no community string with
suitable access rights can be returned for a particular SNMP
request.
Note that this object is deprecated. Agents which implement
SNMPv3 access should use the entLogicalContextEngineID and
entLogicalContextName objects to identify the context
associated with each logical entity. SNMPv3 agents may
return a zero-length string for this object, or may continue
to return a community string (e.g., tri-lingual agent
support)."
::= { ponPortEntry 28 }
ponPortLinkedOnuCounter OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 64 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current number of linked ONUs in this PON port."
::= { ponPortEntry 29 }
ponPortAdminStatus OBJECT-TYPE
SYNTAX INTEGER { up ( 1 ) , down ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The desired state of the PON port."
::= { ponPortEntry 30 }
ponPortReset OBJECT-TYPE
SYNTAX INTEGER { noop ( 1 ) , reset ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "PON interface reset."
::= { ponPortEntry 31 }
ponPortWindowRange OBJECT-TYPE
SYNTAX INTEGER { disable ( 1 ) , wr20km ( 2 ) , wr40km ( 3 ) , wr60km ( 4 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The max window range of ONU register."
::= { ponPortEntry 32 }
ponPortDownlinkPolicingEbl OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Config onu downlink-policer enable"
::= { ponPortEntry 33 }
ponPortAllOnuAlmLevel OBJECT-TYPE
SYNTAX OnuAlarmLevelList
MAX-ACCESS read-only
STATUS current
DESCRIPTION "All ONUs alarm-level list."
::= { ponPortEntry 34 }
ponOnuMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF PonOnuMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "table of pon-ONU map"
::= { gwEponPon 2 }
ponOnuMapEntry OBJECT-TYPE
SYNTAX PonOnuMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table"
INDEX { deviceIndex, boardIndex, ponPortIndex, mappingOnuIndex }
::= { ponOnuMapTable 1 }
PonOnuMapEntry ::= SEQUENCE {
mappingOnuIndex Integer32,
onuDevIndex Integer32,
onuName DisplayString
}
mappingOnuIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 64 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "index of mapping onu"
::= { ponOnuMapEntry 1 }
onuDevIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "device index of this ONU"
::= { ponOnuMapEntry 2 }
onuName OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 255 ) )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "device name of this ONU"
::= { ponOnuMapEntry 3 }
ponPerfMonTable OBJECT-TYPE
SYNTAX SEQUENCE OF PonPerfMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of pon performence"
::= { gwEponPon 3 }
ponPerfMonEntry OBJECT-TYPE
SYNTAX PonPerfMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing pon performence monitor information ."
INDEX { deviceIndex, boardIndex, ponPortIndex }
::= { ponPerfMonTable 1 }
PonPerfMonEntry ::= SEQUENCE {
ponPerfBER Counter32,
ponPerfFER Counter32,
ponPerfBerAlmEnable INTEGER,
ponPerfFerAlmEnable INTEGER,
ponPerfUpBandwidth Counter32,
ponPerfDownBandwidth Counter32
}
ponPerfBER OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "byte error rate of specified pon port upstream, UNIT: 10E-6"
::= { ponPerfMonEntry 1 }
ponPerfFER OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "frame error rate of specified pon port downstream, UNIT: 10E-6"
::= { ponPerfMonEntry 4 }
ponPerfBerAlmEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates whether enable pon performence BER alarm"
DEFVAL { enable }
::= { ponPerfMonEntry 5 }
ponPerfFerAlmEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates whether enable pon performence FER alarm"
DEFVAL { enable }
::= { ponPerfMonEntry 6 }
ponPerfUpBandwidth OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value indicates upstream bandwidth on this port"
::= { ponPerfMonEntry 7 }
ponPerfDownBandwidth OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "the value indicates downstream bandwidth on this port"
::= { ponPerfMonEntry 8 }
ponHisCtrlTable OBJECT-TYPE
SYNTAX SEQUENCE OF PonHisCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of pon performence"
::= { gwEponPon 4 }
ponHisCtrlEntry OBJECT-TYPE
SYNTAX PonHisCtrlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing pon performence monitor information ."
INDEX { deviceIndex, boardIndex, ponPortIndex }
::= { ponHisCtrlTable 1 }
PonHisCtrlEntry ::= SEQUENCE {
ponHis15MinuteEnable INTEGER,
ponHis24HourEnable INTEGER
}
ponHis15MinuteEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates whether enable history statistic with interval 15 minutes"
DEFVAL { disable }
::= { ponHisCtrlEntry 1 }
ponHis24HourEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The value indicates whether enable history statistic with interval 24 hours"
DEFVAL { disable }
::= { ponHisCtrlEntry 2 }
ponBERThreashold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 8 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Ber measurement threshold, the value defination: 0=1e-0=1, 1=1e-1=0.1,......"
::= { gwEponPon 5 }
ponFERThreashold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 10 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Fer measurement threshold, the value defination: 0=1.00e-0=1, 1=1.00e-1=0.1,......"
::= { gwEponPon 6 }
gwEponPonCtcExt OBJECT IDENTIFIER
::= { gwEponPon 7 }
onuAuthEnable OBJECT-TYPE
SYNTAX INTEGER { disable ( 1 ) , auth_new_only ( 2 ) , auth_all ( 3 ) }
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION ""
::= { gwEponPonOnuAuth 1 }
onuAuthTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table of ONU authentication based MAC address."
::= { gwEponPonOnuAuth 2 }
onuAuthEntry OBJECT-TYPE
SYNTAX OnuAuthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table"
INDEX { eponBoardIndex, eponPonPortIndex, onuAuthIndex }
::= { onuAuthTable 1 }
OnuAuthEntry ::= SEQUENCE {
eponBoardIndex Integer32,
eponPonPortIndex Integer32,
onuAuthIndex Integer32,
onuAuthMacAddress MacAddress,
onuAuthRowStatus RowStatus
}
eponBoardIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The epon board index"
::= { onuAuthEntry 1 }
eponPonPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON port index"
::= { onuAuthEntry 2 }
onuAuthIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC address index"
::= { onuAuthEntry 3 }
onuAuthMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "MAC address"
::= { onuAuthEntry 4 }
onuAuthRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this entry."
::= { onuAuthEntry 5 }
onuToPonBindingEnable OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { gwEponPonOnuAuth 3 }
onuAuthModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAuthModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table of ONU authentication Mode."
::= { gwEponPonOnuAuth 4 }
onuAuthModeEntry OBJECT-TYPE
SYNTAX OnuAuthModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table"
INDEX { onuAuthModeBrdIdx, onuAuthModePonIdx }
::= { onuAuthModeTable 1 }
OnuAuthModeEntry ::= SEQUENCE {
onuAuthModeBrdIdx Integer32,
onuAuthModePonIdx Integer32,
onuAuthMode INTEGER,
onuAuthEnableForPon INTEGER,
onuAuthEntryReorganize INTEGER
}
onuAuthModeBrdIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { onuAuthModeEntry 1 }
onuAuthModePonIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { onuAuthModeEntry 2 }
onuAuthMode OBJECT-TYPE
SYNTAX INTEGER { macAddr(1), loid(2), hybrid(3), loidNoPwd(4), hybridNoPwd(5), disable(6) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "'macAddr(1)' : based ONU MAC address.
'loid(2)' : based ONU logical ID.
'hybrid(3)' : based both macAddr and loid.
'loidNoPwd(4) : based loid, but not check password.
'hybridNoPwd(5)' : based hybrid, but not check password."
::= { onuAuthModeEntry 3 }
onuAuthEnableForPon OBJECT-TYPE
SYNTAX INTEGER { disable ( 1 ) , auth_new_only ( 2 ) , auth_all ( 3 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Description"
::= { onuAuthModeEntry 4 }
onuAuthEntryReorganize OBJECT-TYPE
SYNTAX INTEGER{ organize(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "For PonPort"
::= { onuAuthModeEntry 5 }
onuAuthEntryReorganizeForAll OBJECT-TYPE
SYNTAX INTEGER { organize(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { gwEponPonOnuAuth 9 }
onuAuthLoidTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAuthLoidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table of ONU authentication based LOID(Logical ONU ID)."
::= { gwEponPonOnuAuth 5 }
onuAuthLoidEntry OBJECT-TYPE
SYNTAX OnuAuthLoidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table"
INDEX { onuAuthLoidBrdIdx, onuAuthLoidPonIdx, onuAuthLoidIdx }
::= { onuAuthLoidTable 1 }
OnuAuthLoidEntry ::= SEQUENCE {
onuAuthLoidBrdIdx Integer32,
onuAuthLoidPonIdx Integer32,
onuAuthLoidIdx Integer32,
onuAuthLoid DisplayString,
onuAuthLoidPassword DisplayString,
onuAuthLoidDevIdx Integer32,
onuAuthLoidRowStatus RowStatus
}
onuAuthLoidBrdIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { onuAuthLoidEntry 1 }
onuAuthLoidPonIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { onuAuthLoidEntry 2 }
onuAuthLoidIdx OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 128 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { onuAuthLoidEntry 3 }
onuAuthLoid OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 24 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION ""
::= { onuAuthLoidEntry 4 }
onuAuthLoidPassword OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 12 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION ""
::= { onuAuthLoidEntry 5 }
onuAuthLoidDevIdx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION ""
::= { onuAuthLoidEntry 6 }
onuAuthLoidRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This object indicates the status of this entry."
::= { onuAuthLoidEntry 7 }
onuUnauthenticatedTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAuth1Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The table of unauthenticated ONUs based MAC address."
::= { gwEponPonOnuAuth 6 }
onuUnauthenticatedEntry OBJECT-TYPE
SYNTAX OnuAuth1Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table"
INDEX { eponUnauthenticatedBoardIndex, eponUnauthenticatedPonPortIndex, onuUnauthenticatedIndex }
::= { onuUnauthenticatedTable 1 }
OnuAuth1Entry ::= SEQUENCE {
eponUnauthenticatedBoardIndex Integer32,
eponUnauthenticatedPonPortIndex Integer32,
onuUnauthenticatedIndex Integer32,
onuUnauthenticatedMacAddress MacAddress
}
eponUnauthenticatedBoardIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The epon board index"
::= { onuUnauthenticatedEntry 1 }
eponUnauthenticatedPonPortIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "PON port index"
::= { onuUnauthenticatedEntry 2 }
onuUnauthenticatedIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC address index"
::= { onuUnauthenticatedEntry 3 }
onuUnauthenticatedMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC address"
::= { onuUnauthenticatedEntry 4 }
ponLlidTable OBJECT-TYPE
SYNTAX SEQUENCE OF PonLlidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of the pon llid information"
::= { gwEponLlid 1 }
ponLlidEntry OBJECT-TYPE
SYNTAX PonLlidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the table, containing status or configure information"
INDEX { deviceIndex, ponLlidIndex }
::= { ponLlidTable 1 }
PonLlidEntry ::= SEQUENCE {
ponLlidIndex Integer32,
ponLlidType INTEGER,
ponLlidOltBoard Integer32,
ponLlidOltPort Integer32,
ponLlidOltPortIfIndex Integer32,
ponLlidOnuPortIfIndex Integer32,
ponLlidOnuBoard Integer32,
ponLlidOnuPort Integer32,
ponLlidLLID Integer32,
ponLlidIfIndex Integer32,
ponLlidUpFixedBW Integer32,
ponLlidDownFixedBW Integer32,
ponLlidDesc DisplayString,
ponLlidSurportMacNum Integer32,
ponLlidOnuMacAddress MacAddress,
ponLlidRowStatus RowStatus,
ponLlidUpBWClass Integer32,
ponLlidUpDelay INTEGER,
ponLlidUpAssuredBW Integer32,
ponLlidUpBesteffortBW Integer32,
ponLlidDownBWClass Integer32,
ponLlidDownDelay INTEGER,
ponLlidDownAssuredBW Integer32,
ponLlidDownBesteffortBW Integer32,
ponLlidCtcFecAbility INTEGER,
ponLlidCtcFecMode INTEGER,
ponLlidCtcEncrypCtrl INTEGER,
ponLlidCtcDbaQueSetNum Integer32,
ponLlidCtcDbaQueSetCfgStatus INTEGER
}
ponLlidIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The pon logic link index"
::= { ponLlidEntry 1 }
ponLlidType OBJECT-TYPE
SYNTAX INTEGER { unkown ( 0 ) , ethlink ( 1 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "type of pon logic link"
::= { ponLlidEntry 2 }
ponLlidOltBoard OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value equals to entPhysicalIndex in ENTITY-MIB"
::= { ponLlidEntry 3 }
ponLlidOltPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "the pon port id "
::= { ponLlidEntry 4 }
ponLlidOltPortIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "ifIndex of the olt port "
::= { ponLlidEntry 5 }
ponLlidOnuPortIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "ifIndex of the onu port "
::= { ponLlidEntry 6 }
ponLlidOnuBoard OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value indicates board id for this LLID"
::= { ponLlidEntry 7 }
ponLlidOnuPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value indicates onu port for this LLID"
::= { ponLlidEntry 8 }
ponLlidLLID OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION "the vlaue of LLID "
::= { ponLlidEntry 9 }
ponLlidIfIndex OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 2147483647 )
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value equals to ''ifIndex'' in IF-MIB according this object'"
::= { ponLlidEntry 10 }
ponLlidUpFixedBW OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 1000000 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "upstream fixed bandwidth about this pon port, unit:KBps"
::= { ponLlidEntry 11 }
ponLlidDownFixedBW OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 1000000 )
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION "upstream fixed bandwidth about this pon port, unit:KBps, not support"
::= { ponLlidEntry 12 }
ponLlidDesc OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION "description of the LLID"
::= { ponLlidEntry 13 }
ponLlidSurportMacNum OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 8192 )
MAX-ACCESS read-create
STATUS deprecated
DESCRIPTION "The value of maximum MAC addresses"
::= { ponLlidEntry 14 }
ponLlidOnuMacAddress OBJECT-TYPE
SYNTAX MacAddress ( SIZE ( 6 ) )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The value indicates and confgure onu MAC address"
::= { ponLlidEntry 15 }
ponLlidRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "row status of this entry"
::= { ponLlidEntry 16 }
ponLlidUpBWClass OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 7 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "upstream class level for this pon port bandwidth allocation"
::= { ponLlidEntry 17 }
ponLlidUpDelay OBJECT-TYPE
SYNTAX INTEGER { low ( 1 ) , high ( 2 ) }
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION "upstream delay level for this pon port bandwidth allocation"
::= { ponLlidEntry 18 }
ponLlidUpAssuredBW OBJECT-TYPE
SYNTAX Integer32 ( 64 .. 1000000 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "upstream assured bandwidth about this pon port, unit:KBps"
::= { ponLlidEntry 19 }
ponLlidUpBesteffortBW OBJECT-TYPE
SYNTAX Integer32 ( 64 .. 1000000 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "upstream best-effort bandwidth about this pon port, unit:KBps"
::= { ponLlidEntry 20 }
ponLlidDownBWClass OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 7 )
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION "upstream class level for this pon port bandwidth allocation"
::= { ponLlidEntry 21 }
ponLlidDownDelay OBJECT-TYPE
SYNTAX INTEGER { low ( 1 ) , high ( 2 ) }
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION "upstream delay level for this pon port bandwidth allocation"
::= { ponLlidEntry 22 }
ponLlidDownAssuredBW OBJECT-TYPE
SYNTAX Integer32 ( 64 .. 1000000 )
MAX-ACCESS read-create
STATUS current
DESCRIPTION "downstream assured bandwidth about this pon port, unit:KBps"
::= { ponLlidEntry 23 }
ponLlidDownBesteffortBW OBJECT-TYPE
SYNTAX Integer32 ( 64 .. 1000000 )
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION "downstream best-effort bandwidth about this pon port, unit:KBps"
::= { ponLlidEntry 24 }
ponLlidCtcFecAbility OBJECT-TYPE
SYNTAX INTEGER { unknown ( 1 ) , supported ( 2 ) , notSupported ( 3 ) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION "FEC ability"
::= { ponLlidEntry 25 }
ponLlidCtcFecMode OBJECT-TYPE
SYNTAX INTEGER { unknown ( 1 ) , enable ( 2 ) , disable ( 3 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "FEC mode, unknown(1)-initializing, true state not yet known.
enable(2)-activate FEC. disable(3)-deactivate FEC."
::= { ponLlidEntry 26 }
ponLlidCtcEncrypCtrl OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "CTC encryption control"
::= { ponLlidEntry 27 }
ponLlidCtcDbaQueSetNum OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 8 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "DBA queue set number"
::= { ponLlidEntry 28 }
ponLlidCtcDbaQueSetCfgStatus OBJECT-TYPE
SYNTAX INTEGER { noop ( 1 ) , get ( 2 ) , set ( 3 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The Queue sets configuration status, this object value is always 'noop(1)'
when read, 'get(2)' will refresh the object of ponLlidCtcDbaQueSetNum and
the table of ponLlidCtcDbaQueSetTable, 'set(3)' will config the data,
include ponLlidCtcDbaQueSetNum and ponLlidCtcDbaQueSetTable. 'get(2)' and
'set(3) are only write value."
::= { ponLlidEntry 29 }
ponLlidCtcDbaQueSetTable OBJECT-TYPE
SYNTAX SEQUENCE OF PonLlidCtcDbaQueSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Table of the pon llid DBA information"
::= { gwEponLlid 2 }
ponLlidCtcDbaQueSetEntry OBJECT-TYPE
SYNTAX PonLlidCtcDbaQueSetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "CTC DBA entry"
INDEX { deviceIndex, ponLlidIndex, ponLlidCtcDbaQueSetIndex }
::= { ponLlidCtcDbaQueSetTable 1 }
PonLlidCtcDbaQueSetEntry ::= SEQUENCE {
ponLlidCtcDbaQueSetIndex Integer32,
ponLlidCtcDbaReportBitmap BITS,
ponLlidCtcDbaQueue0Threshold Integer32,
ponLlidCtcDbaQueue1Threshold Integer32,
ponLlidCtcDbaQueue2Threshold Integer32,
ponLlidCtcDbaQueue3Threshold Integer32,
ponLlidCtcDbaQueue4Threshold Integer32,
ponLlidCtcDbaQueue5Threshold Integer32,
ponLlidCtcDbaQueue6Threshold Integer32,
ponLlidCtcDbaQueue7Threshold Integer32
}
ponLlidCtcDbaQueSetIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The DBA queue-sets index"
::= { ponLlidCtcDbaQueSetEntry 1 }
ponLlidCtcDbaReportBitmap OBJECT-TYPE
SYNTAX BITS { queue0 ( 0 ) , queue1 ( 1 ) , queue2 ( 2 ) , queue3 ( 3 ) , queue4 ( 4 ) , queue5 ( 5 ) , queue6 ( 6 ) , queue7 ( 7 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "bit=0 - queue x report is not present,
bit=1 - queue x report is present"
::= { ponLlidCtcDbaQueSetEntry 2 }
ponLlidCtcDbaQueue0Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue0 threshold"
::= { ponLlidCtcDbaQueSetEntry 3 }
ponLlidCtcDbaQueue1Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue1 threshold"
::= { ponLlidCtcDbaQueSetEntry 4 }
ponLlidCtcDbaQueue2Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue2 threshold"
::= { ponLlidCtcDbaQueSetEntry 5 }
ponLlidCtcDbaQueue3Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue3 threshold"
::= { ponLlidCtcDbaQueSetEntry 6 }
ponLlidCtcDbaQueue4Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue4 threshold"
::= { ponLlidCtcDbaQueSetEntry 7 }
ponLlidCtcDbaQueue5Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue5 threshold"
::= { ponLlidCtcDbaQueSetEntry 8 }
ponLlidCtcDbaQueue6Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue6 threshold"
::= { ponLlidCtcDbaQueSetEntry 9 }
ponLlidCtcDbaQueue7Threshold OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 65535 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Queue7 threshold"
::= { ponLlidCtcDbaQueSetEntry 10 }
onuNewRegSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion }
STATUS current
DESCRIPTION "A new ONU register success."
::= { gwDevTrapGroup 1 }
onuReregSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion }
STATUS current
DESCRIPTION "An ONU reregister success."
::= { gwDevTrapGroup 2 }
onuNotPresent NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "An ONU is not present alarm"
::= { gwDevTrapGroup 3 }
devPowerOff NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION " device Power Off Alarm"
::= { gwDevTrapGroup 4 }
devPowerOn NOTIFICATION-TYPE
OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
STATUS current
DESCRIPTION " device Power On Alarm"
::= { gwDevTrapGroup 5 }
cfgDataSaveSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "saving config data to flash successfully"
::= { gwDevTrapGroup 6 }
cfgDataSaveFail NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "saving config data to flash unsuccessfully"
::= { gwDevTrapGroup 7 }
flashClearSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "clear config data successfully"
::= { gwDevTrapGroup 8 }
flashClearFail NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "clear config data unsuccessfully"
::= { gwDevTrapGroup 9 }
softwareUpdateSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "update software successfully"
::= { gwDevTrapGroup 10 }
softwareUpdateFail NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "update software unsuccessfully"
::= { gwDevTrapGroup 11 }
firmwareUpdateSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "firmware update successfully"
::= { gwDevTrapGroup 12 }
firmwareUpdateFail NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "update firmware unsuccessfully"
::= { gwDevTrapGroup 13 }
cfgDataBackupSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "backup configuration data to NMS successfully."
::= { gwDevTrapGroup 14 }
cfgDataBackupFail NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "backup configuration data to NMS unsuccessfully."
::= { gwDevTrapGroup 15 }
cfgDataRestoreSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "restore configuration data from NMS successfully."
::= { gwDevTrapGroup 16 }
cfgDataRestoreFail NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "restore configuration data from NMS unsuccessfully."
::= { gwDevTrapGroup 17 }
autoProtectSwitch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "Auto Protect Switch(APS) occurs"
::= { gwDevTrapGroup 18 }
cpuUsageFactorHigh NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "high cpu usage factor alarm"
::= { gwDevTrapGroup 19 }
ponPortBERAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortBER }
STATUS current
DESCRIPTION "pon port BER alarm"
::= { gwDevTrapGroup 20 }
ponPortBERAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortBER }
STATUS current
DESCRIPTION "pon port BER alarm clear"
::= { gwDevTrapGroup 21 }
ponPortFERAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortFER }
STATUS current
DESCRIPTION "pon port FER alarm"
::= { gwDevTrapGroup 22 }
ponPortFERAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponPortFER }
STATUS current
DESCRIPTION "pon port FER alarm clear"
::= { gwDevTrapGroup 23 }
llidActBWExceeding NOTIFICATION-TYPE
OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponLlidIndex }
STATUS current
DESCRIPTION "llid bandwidth exceed the limit"
::= { gwDevTrapGroup 24 }
llidActBWExceedingClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, ponPortBrdIndex, ponPortIndex, ponLlidIndex }
STATUS current
DESCRIPTION "llid bandwidth return to appropriate value"
::= { gwDevTrapGroup 25 }
devBoardInterted NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, curBoardType }
STATUS current
DESCRIPTION "insert a board"
::= { gwDevTrapGroup 26 }
devBoardPull NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, curBoardType }
STATUS current
DESCRIPTION "pull a board out"
::= { gwDevTrapGroup 27 }
powerOffAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "power OFF alarm"
::= { gwDevTrapGroup 30 }
powerOnAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "power ON alarm"
::= { gwDevTrapGroup 31 }
boardTemperatureHigh NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "board temperature high alarm"
::= { gwDevTrapGroup 32 }
boardTemperatureHighClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "board temperature high alarm clear"
::= { gwDevTrapGroup 33 }
ponBoardReset NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "PON board reset event occur"
::= { gwDevTrapGroup 34 }
swBoardProtectedSwitch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "sw board protected switch event occur"
::= { gwDevTrapGroup 35 }
ponPortAbnormal NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "abnormal status on PON port occur"
::= { gwDevTrapGroup 36 }
onuRegisterConflict NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "onu register conflict"
::= { gwDevTrapGroup 37 }
firmwareLoadSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "firmware load successfully"
::= { gwDevTrapGroup 38 }
firmwareLoadFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "firmware load fail"
::= { gwDevTrapGroup 39 }
dbaUpdateSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "update dba successfully"
::= { gwDevTrapGroup 40 }
dbaUpdateFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "update dba faul"
::= { gwDevTrapGroup 41 }
dbaLoadSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "load dba successfully"
::= { gwDevTrapGroup 42 }
dbaLoadFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "load dba fail"
::= { gwDevTrapGroup 43 }
ponToEthLinkdown NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "."
::= { gwDevTrapGroup 44 }
ponToEthLinkup NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION "."
::= { gwDevTrapGroup 45 }
onuSoftwareLoadSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "load onu software successfully"
::= { gwDevTrapGroup 46 }
onuSoftwareLoadFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "load onu software fail"
::= { gwDevTrapGroup 47 }
ethLinkdown NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port linkdown alarm."
::= { gwDevTrapGroup 54 }
ethLinkup NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port linkup alarm."
::= { gwDevTrapGroup 55 }
bootUpdateSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "boot firmware update successfully notification"
::= { gwDevTrapGroup 56 }
bootUpdateFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "boot firmware update fail notification"
::= { gwDevTrapGroup 57 }
batFileBackupSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "bat file backup successfully notification"
::= { gwDevTrapGroup 58 }
batFileBackupFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "bat file backup fail notification"
::= { gwDevTrapGroup 59 }
batFileRestoreSuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "bat file restore successfully notification"
::= { gwDevTrapGroup 60 }
batFileRestoreFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "bat file restore fail notification"
::= { gwDevTrapGroup 61 }
onuRegAuthFailure NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex, deviceMacAddress }
STATUS current
DESCRIPTION "Illegal ONU register."
::= { gwDevTrapGroup 62 }
deviceColdStart NOTIFICATION-TYPE
OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
STATUS current
DESCRIPTION "Only report OLT cold start. this trap is not sent if a devPowerOn trap
is sent for the same restart. Implementation of this trap is optional."
::= { gwDevTrapGroup 63 }
deviceWarmStart NOTIFICATION-TYPE
OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
STATUS current
DESCRIPTION "Only report OLT warm start."
::= { gwDevTrapGroup 64 }
deviceExceptionRestart NOTIFICATION-TYPE
OBJECTS { deviceIndex, deviceType, deviceSoftWareVersion, deviceFirmWareVersion, deviceHardWareVersion, deviceRestartupTime }
STATUS current
DESCRIPTION "Only report OLT restart because of exception."
::= { gwDevTrapGroup 65 }
ethLoopAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port loop alarm."
::= { gwDevTrapGroup 84 }
ethLoopAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port loop clear."
::= { gwDevTrapGroup 85 }
onuLoopAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "Onu loop alarm."
::= { gwDevTrapGroup 86 }
onuLoopAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "Onu loop clear."
::= { gwDevTrapGroup 87 }
backboneEthLinkdown NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port linkdown alarm."
::= { gwDevTrapGroup 88 }
backboneEthLinkup NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port linkup alarm."
::= { gwDevTrapGroup 89 }
boardCpuUsageAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "cpu usage factor alarm"
::= { gwDevTrapGroup 116 }
boardCpuUsageAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION "cpu usage factor alarm clear"
::= { gwDevTrapGroup 117 }
boardMemoryUsageAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 118 }
boardMemoryUsageAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 119 }
ponPortFullAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 132 }
ponPortAbnormalClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 133 }
ethPortBroadCastFloodControl NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port broadcast flood alarm."
::= { gwDevTrapGroup 136 }
ethPortBroadCastFloodControlClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ethPortIndex }
STATUS current
DESCRIPTION "Ethernet port broadcast flood alarm clear."
::= { gwDevTrapGroup 137 }
sysfileUploadsuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 138 }
sysfileUploadfailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 139 }
sysfileDownloadsuccess NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 140 }
sysfileDownloadfailure NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 141 }
ponPortLosAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 142 }
ponPortLosAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 143 }
ponFWVersionMismatch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 144 }
ponFWVersionMatch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 145 }
ponDBAVersionMismatch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 146 }
ponDBAVersionMatch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 147 }
ponSFPTypeMismatch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 148 }
ponSFPTypeMitch NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 149 }
ponPortBRASAlarm NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex, brasMacAddress }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 150 }
ponPortBRASAlarmClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex, brasMacAddress }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 151 }
ponPortUpNoTraffic NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 152 }
ponPortUpNoTrafficClear NOTIFICATION-TYPE
OBJECTS { deviceIndex, boardIndex, ponPortIndex }
STATUS current
DESCRIPTION ""
::= { gwDevTrapGroup 153 }
onuDeletingNotify NOTIFICATION-TYPE
OBJECTS { onuPredefPonSlotIdx, onuPredefPonPortIdx, onuPredefOnuIdx, onuPredefOnuMacAddr, onuPredefOnuDevIdx }
STATUS current
DESCRIPTION "Illegal ONU register."
::= { gwDevTrapGroup 154 }
onuMacTableOverFlow NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "onu mac table over flow."
::= { gwDevTrapGroup 208 }
onuMacTableOverFlowClear NOTIFICATION-TYPE
OBJECTS { deviceIndex }
STATUS current
DESCRIPTION "onu mac table over flow clear."
::= { gwDevTrapGroup 209 }
onuNotPresentAlmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 1 }
devPowerOffAlmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 2 }
ponPortBERAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 3 }
ponPortFERAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 4 }
llidActBWExceedingAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 5 }
powerOffAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 6 }
boardTemperatureHighAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 7 }
devBoardPullAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 8 }
ethLinkdownAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 9 }
devFanAlarmAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 10 }
ethFlrAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 11 }
ethFerAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 12 }
ethTransmittalIntermitAlarmLevel OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 4 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the value indicates an alarm level is set on this event"
::= { gwAlarmLevelGroup 13 }
gwEponPonCtcExtOamDiscoveryTiming OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 2550 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "extended oam discovery timing, unit: ms"
::= { gwEponPonCtcExt 1 }
gwEponPonCtcExtOamCtcOui OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 16 ) )
MAX-ACCESS read-write
STATUS current
DESCRIPTION ""
::= { gwEponPonCtcExt 2 }
gwEponPonCtcExtOamCtcVer OBJECT-TYPE
SYNTAX Integer32 ( 1 .. 255 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "CTC ext-oam version"
::= { gwEponPonCtcExt 3 }
gwEponPonCtcEncrypUpdKeyTime OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 255 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Update key time, unit: s"
::= { gwEponPonCtcExt 4 }
gwEponPonCtcEncrypNoReplyTimeout OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 2550 )
MAX-ACCESS read-write
STATUS current
DESCRIPTION "No reply timeout, unit: ms"
::= { gwEponPonCtcExt 5 }
gwEponPonCtcEncrypTimingThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Encryption timing threshold"
::= { gwEponPonCtcExt 6 }
gwConsoleBaudRate OBJECT-TYPE
SYNTAX INTEGER { b300 ( 1 ) , b600 ( 2 ) , b1200 ( 3 ) , b2400 ( 4 ) , b4800 ( 5 ) , b9600 ( 6 ) , b19200 ( 7 ) , b38400 ( 8 ) , b115200 ( 9 ) , b230400 ( 10 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the baud rate for the system console"
::= { gwConsoleCfgGroup 1 }
gwConsoleDataBits OBJECT-TYPE
SYNTAX INTEGER { b5 ( 5 ) , b6 ( 6 ) , b7 ( 7 ) , b8 ( 8 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the data bits length for the system console"
::= { gwConsoleCfgGroup 2 }
gwConsoleStopBitSet OBJECT-TYPE
SYNTAX INTEGER { sb1 ( 1 ) , sb2 ( 2 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the stop bits for the system console"
::= { gwConsoleCfgGroup 3 }
gwConsoleParitySet OBJECT-TYPE
SYNTAX INTEGER { none ( 1 ) , even ( 2 ) , odd ( 3 ) , space ( 4 ) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the parity set for the system console"
::= { gwConsoleCfgGroup 4 }
gwConsoleFlowCtrlSet OBJECT-TYPE
SYNTAX INTEGER { enable( 1 ) , disable(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "the flow control set for the system console"
::= { gwConsoleCfgGroup 5 }
END
|