1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
|
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Friday, July 07, 2017 at 17:25:47
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Wednesday, May 17, 2017 at 18:58:46
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Tuesday, July 14, 2015 at 17:19:55
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Wednesday, June 10, 2015 at 13:57:02
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Friday, May 15, 2015 at 11:07:25
--
-- FD-ONU-MIB.txt
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Tuesday, November 04, 2014 at 15:12:17
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88
-- Tuesday, November 04, 2014 at 14:03:23
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
-- Tuesday, January 08, 2013 at 20:37:51
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
-- Thursday, December 27, 2012 at 19:17:08
--
-- FD-ONU-MIB.my
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
-- Thursday, July 19, 2012 at 17:36:42
--
-- FD-ONU-MIB.mib
-- MIB generated by MG-SOFT Visual MIB Builder Version 3.0 Build 253
-- Thursday, May 27, 2010 at 18:35:03
--
FD-ONU-MIB DEFINITIONS ::= BEGIN
IMPORTS
epon, DeviceType, DeviceStatus, OperSwitch, DeviceOperation
FROM EPON-EOC-MIB
oltId, linkId
FROM FD-OLT-MIB
ponCardSlotId
FROM FD-SYSTEM-MIB
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
IpAddress, Integer32, Counter32, OBJECT-TYPE, MODULE-IDENTITY
FROM SNMPv2-SMI
DisplayString, MacAddress
FROM SNMPv2-TC;
-- 1.3.6.1.4.1.34592.1.3.4
-- November 04, 2014 at 13:58 GMT
-- 1.3.6.1.4.1.34592.1.3.4
-- November 04, 2014 at 13:58 GMT
-- 1.3.6.1.4.1.34592.1.3.4
fdOnu MODULE-IDENTITY
LAST-UPDATED "201411041358Z" -- November 04, 2014 at 13:58 GMT
ORGANIZATION
"epon eoc factory."
CONTACT-INFO
" "
DESCRIPTION
"ONU mib module"
::= { epon 4 }
--
-- Node definitions
--
-- Node definitions
--
-- Node definitions
--
-- 1.3.6.1.4.1.34592.1.3.4.1
-- 1.3.6.1.4.1.34592.1.3.4.1
-- 1.3.6.1.4.1.34592.1.3.4.1
onuBaseManageTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuBaseManageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { fdOnu 1 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.1.1
onuBaseManageEntry OBJECT-TYPE
SYNTAX OnuBaseManageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId }
::= { onuBaseManageTable 1 }
OnuBaseManageEntry ::=
SEQUENCE {
onuId
Integer32,
onuDeviceType
DeviceType,
onuFactorySerial
OCTET STRING,
onuUserInfo
DisplayString,
onuHwRev
DisplayString,
onuFwRev
DisplayString,
onuBaseMac
MacAddress,
maxAllowedLLIDs
Integer32,
registeredLLIDNum
Integer32,
onuOnLineStatus
DeviceStatus,
onuUserTrafficEnable
OperSwitch,
onuRangeValue
Integer32,
supportUniPorts
Integer32,
onuOperation
DeviceOperation,
onuUpgradeStat
INTEGER,
onuLinkIdMap
OCTET STRING,
onuMgmtType
INTEGER,
onuLaserRxPower
Integer32,
onuLaserTxPower
Integer32,
onuLaserVoltage
Integer32,
onuLaserBias
Integer32,
onuLaserTemperature
Integer32,
onuVenderId
Integer32,
onuCtcDeviceType
INTEGER,
onuLoid
OCTET STRING,
onuPasswd
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.1.1.1
onuId OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Serial No allocated for each ONU which register on each
PON port for identify them conveniencly. The ID allocated
for each ONU will stay until the ONU is deleted."
::= { onuBaseManageEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.1.1.2
onuDeviceType OBJECT-TYPE
SYNTAX DeviceType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.1.1.3
onuFactorySerial OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..30))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.1.1.4
onuUserInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.1.1.5
onuHwRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.1.1.6
onuFwRev OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.1.1.7
onuBaseMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.1.1.9
maxAllowedLLIDs OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.10
-- 1.3.6.1.4.1.34592.1.3.4.1.1.10
-- 1.3.6.1.4.1.34592.1.3.4.1.1.10
registeredLLIDNum OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.11
-- 1.3.6.1.4.1.34592.1.3.4.1.1.11
-- 1.3.6.1.4.1.34592.1.3.4.1.1.11
onuOnLineStatus OBJECT-TYPE
SYNTAX DeviceStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.12
-- 1.3.6.1.4.1.34592.1.3.4.1.1.12
-- 1.3.6.1.4.1.34592.1.3.4.1.1.12
onuUserTrafficEnable OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 12 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.13
-- 1.3.6.1.4.1.34592.1.3.4.1.1.13
-- 1.3.6.1.4.1.34592.1.3.4.1.1.13
onuRangeValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuBaseManageEntry 13 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.14
-- 1.3.6.1.4.1.34592.1.3.4.1.1.14
-- 1.3.6.1.4.1.34592.1.3.4.1.1.14
supportUniPorts OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 14 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.32
-- 1.3.6.1.4.1.34592.1.3.4.1.1.32
-- 1.3.6.1.4.1.34592.1.3.4.1.1.32
onuOperation OBJECT-TYPE
SYNTAX DeviceOperation
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Only off line ONUs can be delete by seting the value of this object to 'delete', for the OnuS , add 'deregister(7)' operation."
::= { onuBaseManageEntry 32 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.33
-- 1.3.6.1.4.1.34592.1.3.4.1.1.33
-- 1.3.6.1.4.1.34592.1.3.4.1.1.33
onuUpgradeStat OBJECT-TYPE
SYNTAX INTEGER
{
booting(1),
normalRun(2),
upgrading(6),
upgradeOk(7),
upgradeErr(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 33 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.34
-- 1.3.6.1.4.1.34592.1.3.4.1.1.34
-- 1.3.6.1.4.1.34592.1.3.4.1.1.34
onuLinkIdMap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..17))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 34 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.35
-- 1.3.6.1.4.1.34592.1.3.4.1.1.35
-- 1.3.6.1.4.1.34592.1.3.4.1.1.35
onuMgmtType OBJECT-TYPE
SYNTAX INTEGER
{
tk(1),
ctc(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 35 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.36
-- 1.3.6.1.4.1.34592.1.3.4.1.1.36
-- 1.3.6.1.4.1.34592.1.3.4.1.1.36
onuLaserRxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 36 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.37
-- 1.3.6.1.4.1.34592.1.3.4.1.1.37
-- 1.3.6.1.4.1.34592.1.3.4.1.1.37
onuLaserTxPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 37 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.38
onuLaserVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 38 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.39
onuLaserBias OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 39 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.40
onuLaserTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 40 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.38
-- 1.3.6.1.4.1.34592.1.3.4.1.1.41
onuVenderId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 41 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.42
onuCtcDeviceType OBJECT-TYPE
SYNTAX INTEGER
{
sfu(1),
hgu(2),
sbu(3),
fixMdu(4),
ethChassisMdu(5),
dslChassisMdu(6),
mediumDslChassisMdu(7),
mixChassisMdu(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 42 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.43
onuLoid OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..25))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 43 }
-- 1.3.6.1.4.1.34592.1.3.4.1.1.44
onuPasswd OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..25))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuBaseManageEntry 44 }
-- 1.3.6.1.4.1.34592.1.3.4.2
-- 1.3.6.1.4.1.34592.1.3.4.2
-- 1.3.6.1.4.1.34592.1.3.4.2
onuAdvancedManage OBJECT IDENTIFIER ::= { fdOnu 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1
-- 1.3.6.1.4.1.34592.1.3.4.2.1
-- 1.3.6.1.4.1.34592.1.3.4.2.1
onuChipInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuChipInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuAdvancedManage 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1
onuChipInfoEntry OBJECT-TYPE
SYNTAX OnuChipInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId }
::= { onuChipInfoTable 1 }
OnuChipInfoEntry ::=
SEQUENCE {
onuChipProCode
Integer32,
onuChipProVer
Integer32,
onuChipId
Integer32,
onuChipVer
Integer32,
onuBootVer
Integer32,
onuPersVer
Integer32,
onuChipApp0Ver
Integer32,
onuChipApp1Ver
Integer32,
onuChipDiagVer
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.1
onuChipProCode OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.2
onuChipProVer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.3
onuChipId OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.4
onuChipVer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.5
onuBootVer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.6
onuPersVer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.7
onuChipApp0Ver OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.8
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.8
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.8
onuChipApp1Ver OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.2.1.1.9
onuChipDiagVer OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuChipInfoEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2
-- 1.3.6.1.4.1.34592.1.3.4.2.2
-- 1.3.6.1.4.1.34592.1.3.4.2.2
onuAdvancedConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAdvancedConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contain the information which is not normally
used but may be usefull in some special circumstance"
::= { onuAdvancedManage 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1
onuAdvancedConfigEntry OBJECT-TYPE
SYNTAX OnuAdvancedConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table contain the information for one ONU"
INDEX { ponCardSlotId, oltId, onuId }
::= { onuAdvancedConfigTable 1 }
OnuAdvancedConfigEntry ::=
SEQUENCE {
onuAddiVlanEthType
OCTET STRING,
onuRstpEnable
OperSwitch,
onuLocalSwitch
OperSwitch,
onuCatv
OperSwitch,
onuCatvRfLevel
INTEGER,
onuMgmtIpAddr
IpAddress,
onuMgmtNetmask
IpAddress,
onuMgmtGateway
IpAddress,
onuMgmtCVlan
Integer32,
onuMgmtSVlan
Integer32,
onuMgmtPriority
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.1
onuAddiVlanEthType OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description. Reserved.
Additional Ethernet type to identify vlan frames.
0 1 2 3
---------------------------------------------
vlan EthType| tag upstream | tag downstream |
---------------------------------------------
2byte 1byte 1byte
vlan EthType: default 0x8100
tag upstream: 1->use this type to tag upstream, 0->untag
tag downstream: 1->use this type to tag downstream, 0->untag"
::= { onuAdvancedConfigEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.2
onuRstpEnable OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.3
onuLocalSwitch OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.4
onuCatv OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.5
onuCatvRfLevel OBJECT-TYPE
SYNTAX INTEGER
{
level0(0),
level1(1),
level2(2),
level3(3),
level4(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ONU Catv RF Level:
Level0: P0<=-9dBm
Level1: -9dBm<=P0<-6dBm
Level2: -6dBm<=P0<-3dBm
Level3: -3dBm<=P0<0dBm
Level4: P0>=0dBm"
::= { onuAdvancedConfigEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.6
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.6
onuMgmtIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.7
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.7
onuMgmtNetmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.8
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.8
onuMgmtGateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.9
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.9
onuMgmtCVlan OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.10
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.10
onuMgmtSVlan OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.11
-- 1.3.6.1.4.1.34592.1.3.4.2.2.1.11
onuMgmtPriority OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuAdvancedConfigEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3
onuStormCtrl OBJECT IDENTIFIER ::= { onuAdvancedManage 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1
onuStormCtrlIntervalTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuStormCtrlIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStormCtrl 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1.1
onuStormCtrlIntervalEntry OBJECT-TYPE
SYNTAX OnuStormCtrlIntervalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId }
::= { onuStormCtrlIntervalTable 1 }
OnuStormCtrlIntervalEntry ::=
SEQUENCE {
onuStormCtrlInterval
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.1.1.1
onuStormCtrlInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuStormCtrlIntervalEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2
onuUniStormCtrlBroadcastTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUniStormCtrlBroadcastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStormCtrl 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1
onuUniStormCtrlBroadcastEntry OBJECT-TYPE
SYNTAX OnuUniStormCtrlBroadcastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuUniStormCtrlBroadcastTable 1 }
OnuUniStormCtrlBroadcastEntry ::=
SEQUENCE {
onuUniStormCtrlBroadcastEnable
INTEGER,
onuUniStormCtrlBroadcastMode
INTEGER,
onuUniStormCtrlBroadcastAction
INTEGER,
onuUniStormCtrlBroadcastInRate
Integer32,
onuUniStormCtrlBroadcastOutRate
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.1
onuUniStormCtrlBroadcastEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0-disable,1-enable."
::= { onuUniStormCtrlBroadcastEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.2
onuUniStormCtrlBroadcastMode OBJECT-TYPE
SYNTAX INTEGER
{
bps(0),
pps(1),
ratio(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0-bps,1-pps,2-ratio."
::= { onuUniStormCtrlBroadcastEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.3
onuUniStormCtrlBroadcastAction OBJECT-TYPE
SYNTAX INTEGER
{
block(0),
shutdown(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlBroadcastEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.4
onuUniStormCtrlBroadcastInRate OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlBroadcastEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.2.1.5
onuUniStormCtrlBroadcastOutRate OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlBroadcastEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3
onuUniStormCtrlMulticastTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUniStormCtrlMulticastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStormCtrl 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1
onuUniStormCtrlMulticastEntry OBJECT-TYPE
SYNTAX OnuUniStormCtrlMulticastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuUniStormCtrlMulticastTable 1 }
OnuUniStormCtrlMulticastEntry ::=
SEQUENCE {
onuUniStormCtrlMulticastEnable
INTEGER,
onuUniStormCtrlMulticastMode
INTEGER,
onuUniStormCtrlMulticastAction
INTEGER,
onuUniStormCtrlMulticastInRate
Integer32,
onuUniStormCtrlMulticastOutRate
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.1
onuUniStormCtrlMulticastEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0-disable,1-enable."
::= { onuUniStormCtrlMulticastEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.2
onuUniStormCtrlMulticastMode OBJECT-TYPE
SYNTAX INTEGER
{
bps(0),
pps(1),
ratio(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0-bps,1-pps,2-ratio."
::= { onuUniStormCtrlMulticastEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.3
onuUniStormCtrlMulticastAction OBJECT-TYPE
SYNTAX INTEGER
{
block(0),
shutdown(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlMulticastEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.4
onuUniStormCtrlMulticastInRate OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlMulticastEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.3.1.5
onuUniStormCtrlMulticastOutRate OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlMulticastEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4
onuUniStormCtrlUnicastTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUniStormCtrlUnicastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStormCtrl 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1
onuUniStormCtrlUnicastEntry OBJECT-TYPE
SYNTAX OnuUniStormCtrlUnicastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuUniStormCtrlUnicastTable 1 }
OnuUniStormCtrlUnicastEntry ::=
SEQUENCE {
onuUniStormCtrlUnicastEnable
INTEGER,
onuUniStormCtrlUnicastMode
INTEGER,
onuUniStormCtrlUnicastAction
INTEGER,
onuUniStormCtrlUnicastInRate
Integer32,
onuUniStormCtrlUnicastOutRate
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.1
onuUniStormCtrlUnicastEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0-disable,1-enable."
::= { onuUniStormCtrlUnicastEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.2
onuUniStormCtrlUnicastMode OBJECT-TYPE
SYNTAX INTEGER
{
bps(0),
pps(1),
ratio(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"0-bps,1-pps,2-ratio."
::= { onuUniStormCtrlUnicastEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.3
onuUniStormCtrlUnicastAction OBJECT-TYPE
SYNTAX INTEGER
{
block(0),
shutdown(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlUnicastEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.4
onuUniStormCtrlUnicastInRate OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlUnicastEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.4.1.5
onuUniStormCtrlUnicastOutRate OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { onuUniStormCtrlUnicastEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5
onuUniStormCtrlMixTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUniStormCtrlMixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStormCtrl 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1
onuUniStormCtrlMixEntry OBJECT-TYPE
SYNTAX OnuUniStormCtrlMixEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuUniStormCtrlMixTable 1 }
OnuUniStormCtrlMixEntry ::=
SEQUENCE {
onuUniStormCtrlType
INTEGER,
onuUniStormCtrlMode
INTEGER,
onuUniStormCtrlAction
INTEGER,
onuUniStormCtrlInRate
Integer32,
onuUniStormCtrlOutRate
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.2
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.2
onuUniStormCtrlType OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
broadcast(1),
multicast(2),
bcMc(3),
unicast(4),
bcUc(5),
mcUc(6),
bcMcUc(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Storm filter control type. bc:broadcast,umc:unknown multicast,uuc:unknown unitcast. 0-disable,1-bc,2-umc,3-bc+umc,4-uuc,5-bc+uuc,6-umc+uuc,7-bc+umc+uuc."
::= { onuUniStormCtrlMixEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.3
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.3
onuUniStormCtrlMode OBJECT-TYPE
SYNTAX INTEGER
{
kbps(0),
pps(1),
ratio(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Storm filter control mode: pps,kbps OR ratio."
::= { onuUniStormCtrlMixEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.4
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.4
onuUniStormCtrlAction OBJECT-TYPE
SYNTAX INTEGER
{
block(0),
shutdown(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"the storm control action: block OR shutdown ."
::= { onuUniStormCtrlMixEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.5
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.5
onuUniStormCtrlInRate OBJECT-TYPE
SYNTAX Integer32 (8..1048568)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Input stream :
The rate unit is 1 kbps and the range is from 8k to 1048568k.
The granularity of rate is 8 kbps. The ifg_include parameter is used
"
::= { onuUniStormCtrlMixEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.6
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.6
-- 1.3.6.1.4.1.34592.1.3.4.2.3.5.1.6
onuUniStormCtrlOutRate OBJECT-TYPE
SYNTAX Integer32 (8..1048568)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Output stream :
The rate unit is 1 kbps and the range is from 8k to 1048568k.
The granularity of rate is 8 kbps. The ifg_include parameter is used"
::= { onuUniStormCtrlMixEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.3
-- 1.3.6.1.4.1.34592.1.3.4.3
-- 1.3.6.1.4.1.34592.1.3.4.3
onuUniPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUniPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { fdOnu 3 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1
-- 1.3.6.1.4.1.34592.1.3.4.3.1
-- 1.3.6.1.4.1.34592.1.3.4.3.1
onuUniPortEntry OBJECT-TYPE
SYNTAX OnuUniPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuUniPortTable 1 }
OnuUniPortEntry ::=
SEQUENCE {
uniPortId
INTEGER,
uniPortUserInfo
DisplayString,
uniPortLink
INTEGER,
uniPortAutoNego
OperSwitch,
uniPortSpeed
INTEGER,
uniPortDuplex
INTEGER,
uniPortFlowCtrl
OperSwitch,
uniPortMacEntryLimit
Integer32,
uniPortMacAgeTime
Integer32,
uniPortFowardMode
INTEGER,
uniPortEnable
OperSwitch,
uniPortRstpState
INTEGER,
uniPortName
DisplayString,
uniPortType
INTEGER,
uniPortIndex
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.3.1.1
uniPortId OBJECT-TYPE
SYNTAX INTEGER
{
uniPort1(1),
uniPort2(2),
uniPort3(3),
uniPort4(4),
uniPort5(5),
uniPort6(6),
uniPort7(7),
uniPort8(8),
uniPort9(9),
uniPort10(10),
uniPort11(11),
uniPort12(12),
uniPort13(13),
uniPort14(14),
uniPort15(15),
uniPort16(16),
uniPort17(17),
uniPort18(18),
uniPort19(19),
uniPort20(20),
uniPort21(21),
uniPort22(22),
uniPort23(23),
uniPort24(24),
uniPort25(25),
uniPort26(26),
uniPort27(27),
uniPort28(28),
uniPort29(29),
uniPort30(30),
uniPort31(31),
uniPort32(32),
uniPort33(33),
uniPort34(34),
uniPort35(35),
uniPort36(36),
uniPort37(37),
uniPort38(38),
uniPort39(39),
uniPort40(40),
uniPort41(41),
uniPort42(42),
uniPort43(43),
uniPort44(44),
uniPort45(45),
uniPort46(46),
uniPort47(47),
uniPort48(48)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.3.1.2
uniPortUserInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.3
-- 1.3.6.1.4.1.34592.1.3.4.3.1.3
-- 1.3.6.1.4.1.34592.1.3.4.3.1.3
uniPortLink OBJECT-TYPE
SYNTAX INTEGER
{
linkup(1),
linkdown(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.4
-- 1.3.6.1.4.1.34592.1.3.4.3.1.4
-- 1.3.6.1.4.1.34592.1.3.4.3.1.4
uniPortAutoNego OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.5
-- 1.3.6.1.4.1.34592.1.3.4.3.1.5
-- 1.3.6.1.4.1.34592.1.3.4.3.1.5
uniPortSpeed OBJECT-TYPE
SYNTAX INTEGER
{
mbps10(1),
mbps100(2),
mbps1000(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.6
-- 1.3.6.1.4.1.34592.1.3.4.3.1.6
-- 1.3.6.1.4.1.34592.1.3.4.3.1.6
uniPortDuplex OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
half(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.7
-- 1.3.6.1.4.1.34592.1.3.4.3.1.7
-- 1.3.6.1.4.1.34592.1.3.4.3.1.7
uniPortFlowCtrl OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.8
-- 1.3.6.1.4.1.34592.1.3.4.3.1.8
-- 1.3.6.1.4.1.34592.1.3.4.3.1.8
uniPortMacEntryLimit OBJECT-TYPE
SYNTAX Integer32 (0..64)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.9
-- 1.3.6.1.4.1.34592.1.3.4.3.1.9
-- 1.3.6.1.4.1.34592.1.3.4.3.1.9
uniPortMacAgeTime OBJECT-TYPE
SYNTAX Integer32 (0..286)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" aging timeout, unit is 1s"
::= { onuUniPortEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.10
-- 1.3.6.1.4.1.34592.1.3.4.3.1.10
-- 1.3.6.1.4.1.34592.1.3.4.3.1.10
uniPortFowardMode OBJECT-TYPE
SYNTAX INTEGER
{
d8021mode(1),
dropUntilLearned(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.11
-- 1.3.6.1.4.1.34592.1.3.4.3.1.11
-- 1.3.6.1.4.1.34592.1.3.4.3.1.11
uniPortEnable OBJECT-TYPE
SYNTAX OperSwitch
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuUniPortEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.12
-- 1.3.6.1.4.1.34592.1.3.4.3.1.12
-- 1.3.6.1.4.1.34592.1.3.4.3.1.12
uniPortRstpState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
blocking(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"onu port rstp state:normal or blocking"
::= { onuUniPortEntry 12 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.13
uniPortName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniPortEntry 13 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.14
uniPortType OBJECT-TYPE
SYNTAX INTEGER
{
fe(1),
ge(2),
pon(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniPortEntry 14 }
-- 1.3.6.1.4.1.34592.1.3.4.3.1.15
uniPortIndex OBJECT-TYPE
SYNTAX INTEGER
{
uniPort1(1),
uniPort2(2),
uniPort3(3),
uniPort4(4),
uniPort5(5),
uniPort6(6),
uniPort7(7),
uniPort8(8),
uniPort9(9),
uniPort10(10),
uniPort11(11),
uniPort12(12),
uniPort13(13),
uniPort14(14),
uniPort15(15),
uniPort16(16),
uniPort17(17),
uniPort18(18),
uniPort19(19),
uniPort20(20),
uniPort21(21),
uniPort22(22),
uniPort23(23),
uniPort24(24),
uniPort25(25),
uniPort26(26),
uniPort27(27),
uniPort28(28),
uniPort29(29),
uniPort30(30),
uniPort31(31),
uniPort32(32),
uniPort33(33),
uniPort34(34),
uniPort35(35),
uniPort36(36),
uniPort37(37),
uniPort38(38),
uniPort39(39),
uniPort40(40),
uniPort41(41),
uniPort42(42),
uniPort43(43),
uniPort44(44),
uniPort45(45),
uniPort46(46),
uniPort47(47),
uniPort48(48)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniPortEntry 15 }
-- 1.3.6.1.4.1.34592.1.3.4.4
-- 1.3.6.1.4.1.34592.1.3.4.4
-- 1.3.6.1.4.1.34592.1.3.4.4
onuQueueCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuQueueCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { fdOnu 4 }
-- 1.3.6.1.4.1.34592.1.3.4.4.1
-- 1.3.6.1.4.1.34592.1.3.4.4.1
-- 1.3.6.1.4.1.34592.1.3.4.4.1
onuQueueCfgEntry OBJECT-TYPE
SYNTAX OnuQueueCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId }
::= { onuQueueCfgTable 1 }
OnuQueueCfgEntry ::=
SEQUENCE {
onuQueueCfgData
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.4.1.1
onuQueueCfgData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" contain all queue config information for one ONU.
the value format is:
Get/SET:
--------------------------------------------------------------
| value length | number of links | link0 queues |queue0 size |...
--------------------------------------------------------------
1 1 1 1
|<-repeat queues->
|<---repeat link's numbers--->
---------------------------------------------------------------------------------------------
...| port numbers | port0 queues | queue0 size |...|flooding queues | flooding queue size |
---------------------------------------------------------------------------------------------
1 1 1 1 1
|<-repeat queues->|
|<-----repeat port number times-->|
para comment:
value length: dont include itself's size
port numbers: for FD104B, fixed value, 1
flooding queues: for now, fixed 1
flooding queue id:
"
::= { onuQueueCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.5
-- 1.3.6.1.4.1.34592.1.3.4.5
-- 1.3.6.1.4.1.34592.1.3.4.5
onuAclRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuAclRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { fdOnu 5 }
-- 1.3.6.1.4.1.34592.1.3.4.5.1
-- 1.3.6.1.4.1.34592.1.3.4.5.1
-- 1.3.6.1.4.1.34592.1.3.4.5.1
onuAclRuleEntry OBJECT-TYPE
SYNTAX OnuAclRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, onuIntPortId }
::= { onuAclRuleTable 1 }
OnuAclRuleEntry ::=
SEQUENCE {
onuIntPortId
INTEGER,
onuAclRuleCfgData
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.5.1.1
-- 1.3.6.1.4.1.34592.1.3.4.5.1.1
-- 1.3.6.1.4.1.34592.1.3.4.5.1.1
onuIntPortId OBJECT-TYPE
SYNTAX INTEGER
{
onuPonPort(1),
onuIntUniPort(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuAclRuleEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.5.1.2
-- 1.3.6.1.4.1.34592.1.3.4.5.1.2
-- 1.3.6.1.4.1.34592.1.3.4.5.1.2
onuAclRuleCfgData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" onu ACL rule data format.
when read or write, the data format is:
-------------------------------------------------------------------------------
| data length | global flags | rule numbers | rule flag | precedence | action |
-------------------------------------------------------------------------------
2 1 1 1 1 1
|<----repeat rule number times-----
----------------------------------------------------------------
| action para | clause number | field | match value | operator |
----------------------------------------------------------------
2 1 1 8 1
|<---repeat clause number times-->|
---------------------------------------------------------------->
para comment:
data length: don't include the length area itself.
"
::= { onuAclRuleEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.6
-- 1.3.6.1.4.1.34592.1.3.4.6
-- 1.3.6.1.4.1.34592.1.3.4.6
onuPortVlanTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuPortVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { fdOnu 6 }
-- 1.3.6.1.4.1.34592.1.3.4.6.1
-- 1.3.6.1.4.1.34592.1.3.4.6.1
-- 1.3.6.1.4.1.34592.1.3.4.6.1
onuPortVlanEntry OBJECT-TYPE
SYNTAX OnuPortVlanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, onuPortId }
::= { onuPortVlanTable 1 }
OnuPortVlanEntry ::=
SEQUENCE {
onuPortId
INTEGER,
onuPortVlanData
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.6.1.1
-- 1.3.6.1.4.1.34592.1.3.4.6.1.1
-- 1.3.6.1.4.1.34592.1.3.4.6.1.1
onuPortId OBJECT-TYPE
SYNTAX INTEGER
{
ponPort(1),
uniPort1(2),
uniPort2(3),
uniPort3(4),
uniPort4(5),
uniPort5(6),
uniPort6(7),
uniPort7(8),
uniPort8(9),
uniPort9(10),
uniPort10(11),
uniPort11(12),
uniPort12(13),
uniPort13(14),
uniPort14(15),
uniPort15(16),
uniPort16(17),
uniPort17(18),
uniPort18(19),
uniPort19(20),
uniPort20(21),
uniPort21(22),
uniPort22(23),
uniPort23(24),
uniPort24(25),
uniPort25(26),
uniPort26(27),
uniPort27(28),
uniPort28(29),
uniPort29(30),
uniPort30(31),
uniPort31(32),
uniPort32(33),
uniPort33(34),
uniPort34(35),
uniPort35(36),
uniPort36(37),
uniPort37(38),
uniPort38(39),
uniPort39(40),
uniPort40(41),
uniPort41(42),
uniPort42(43),
uniPort43(44),
uniPort44(45),
uniPort45(46),
uniPort46(47),
uniPort47(48)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuPortVlanEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.6.1.2
-- 1.3.6.1.4.1.34592.1.3.4.6.1.2
-- 1.3.6.1.4.1.34592.1.3.4.6.1.2
onuPortVlanData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Self defines data strucure for onu port vlan information.
Data format:
size(unit:byte)| 1 2 1 2 2 ...
--------------------------------------------------------------------------
para | data length |option bit| forwarding policy | pvid | vlan number |...
--------------------------------------------------------------------------
2 1 1 2 1 1
--------------------------------------------- ----------------------------------------------
| vlan tag |egress tag modification| reserved|...|vlan tag | egress tag modification | reserved |
--------------------------------------------- ----------------------------------------------
|<.................vlan 1...................>|...|<...............vlan n.......................>|
So, the total data length should be: 8+4*(vlan nun).
"
::= { onuPortVlanEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.7
-- 1.3.6.1.4.1.34592.1.3.4.7
-- 1.3.6.1.4.1.34592.1.3.4.7
onuPortQos OBJECT IDENTIFIER ::= { fdOnu 7 }
-- 1.3.6.1.4.1.34592.1.3.4.7.1
-- 1.3.6.1.4.1.34592.1.3.4.7.1
-- 1.3.6.1.4.1.34592.1.3.4.7.1
portEgressShappingTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortEgressShappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuPortQos 1 }
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1
portEgressShappingEntry OBJECT-TYPE
SYNTAX PortEgressShappingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { portEgressShappingTable 1 }
PortEgressShappingEntry ::=
SEQUENCE {
scheduleAlgorithm
INTEGER,
maxTrafficOutputRate
Integer32,
outputModule
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.1
scheduleAlgorithm OBJECT-TYPE
SYNTAX INTEGER
{
weightedFair(1),
strictPriority(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { portEgressShappingEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.2
maxTrafficOutputRate OBJECT-TYPE
SYNTAX Integer32 (0..1024000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { portEgressShappingEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.7.1.1.3
outputModule OBJECT-TYPE
SYNTAX INTEGER
{
disable(1),
enable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { portEgressShappingEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.7.2
-- 1.3.6.1.4.1.34592.1.3.4.7.2
-- 1.3.6.1.4.1.34592.1.3.4.7.2
portIngressPolicingTable OBJECT-TYPE
SYNTAX SEQUENCE OF PortIngressPolicingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuPortQos 2 }
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1
portIngressPolicingEntry OBJECT-TYPE
SYNTAX PortIngressPolicingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { portIngressPolicingTable 1 }
PortIngressPolicingEntry ::=
SEQUENCE {
policingTrafficType
INTEGER,
maxTrafficInputRate
Integer32,
inputModule
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.1
policingTrafficType OBJECT-TYPE
SYNTAX INTEGER
{
broadCast(1),
multiCast(2),
broadcastMulticastAndFloodedUnicast(3),
allFrameTypes(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { portIngressPolicingEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.2
maxTrafficInputRate OBJECT-TYPE
SYNTAX Integer32 (0..1024000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { portIngressPolicingEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.7.2.1.3
inputModule OBJECT-TYPE
SYNTAX INTEGER
{
disable(1),
enable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Description."
::= { portIngressPolicingEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.8
-- 1.3.6.1.4.1.34592.1.3.4.8
-- 1.3.6.1.4.1.34592.1.3.4.8
igmpSnooping OBJECT IDENTIFIER ::= { fdOnu 8 }
-- 1.3.6.1.4.1.34592.1.3.4.8.1
-- 1.3.6.1.4.1.34592.1.3.4.8.1
-- 1.3.6.1.4.1.34592.1.3.4.8.1
igmpSnoopParaTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpSnoopParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { igmpSnooping 1 }
-- 1.3.6.1.4.1.34592.1.3.4.8.1.1
-- 1.3.6.1.4.1.34592.1.3.4.8.1.1
-- 1.3.6.1.4.1.34592.1.3.4.8.1.1
igmpSnoopParaEntry OBJECT-TYPE
SYNTAX IgmpSnoopParaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId }
::= { igmpSnoopParaTable 1 }
IgmpSnoopParaEntry ::=
SEQUENCE {
igmpSnoopParaData
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.8.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.8.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.8.1.1.1
igmpSnoopParaData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" IGMP SNOOPING paras value. format:
--------------------------------------------------------------
| robustness count | last member query count | port number |...
---------------------------------------------------------------
1 1 1
------------------------------------------------------------------------
| groups num 1 | relative queue 1 |...|groups num n | relative queue n |
------------------------------------------------------------------------
1 1 1 1
--------------------------------------
| qualifier bitmatp | option bit map |
--------------------------------------
2 1
para explain:
para value range comment
robust count: 0~12
last member count: 0~12
port number: for FD104B, port number is 4
groups number : 0~64 this two paras repeast port number times
relative queue:
qualifier bit: 0 reserved
option bit map: 0 reserved
"
::= { igmpSnoopParaEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.8.2
-- 1.3.6.1.4.1.34592.1.3.4.8.2
-- 1.3.6.1.4.1.34592.1.3.4.8.2
igmpSnoopGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF IgmpSnoopGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { igmpSnooping 2 }
-- 1.3.6.1.4.1.34592.1.3.4.8.2.1
-- 1.3.6.1.4.1.34592.1.3.4.8.2.1
-- 1.3.6.1.4.1.34592.1.3.4.8.2.1
igmpSnoopGroupEntry OBJECT-TYPE
SYNTAX IgmpSnoopGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { igmpSnoopGroupTable 1 }
IgmpSnoopGroupEntry ::=
SEQUENCE {
igmpSnoopGroupData
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.8.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.8.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.8.2.1.1
igmpSnoopGroupData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" igmp group data. this variable is used to add, delete or get igmp groups.
the data contained in this variable is different for get and add/delete.
when get, the data format is:
-------------------------------------------------------------
| group numbers | group ip address | port bit map |.... repeat group number times
-------------------------------------------------------------
1 4 1
when add or delete, the data format is:
-----------------------------------------------------------------
| operate code | group numbers | group pvid | port bit map |
------------------------------------------------------------------
1 1 2 4
para comment:
operate code: 1->add, 2->delete
"
::= { igmpSnoopGroupEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.9
-- 1.3.6.1.4.1.34592.1.3.4.9
-- 1.3.6.1.4.1.34592.1.3.4.9
onuLoopTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuLoopTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { fdOnu 9 }
-- 1.3.6.1.4.1.34592.1.3.4.9.1
-- 1.3.6.1.4.1.34592.1.3.4.9.1
-- 1.3.6.1.4.1.34592.1.3.4.9.1
onuLoopTestEntry OBJECT-TYPE
SYNTAX OnuLoopTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId }
::= { onuLoopTestTable 1 }
OnuLoopTestEntry ::=
SEQUENCE {
onuLoopTestData
OCTET STRING,
onuLoopTestResult
OCTET STRING
}
-- 1.3.6.1.4.1.34592.1.3.4.9.1.1
-- 1.3.6.1.4.1.34592.1.3.4.9.1.1
-- 1.3.6.1.4.1.34592.1.3.4.9.1.1
onuLoopTestData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" test cmd data, format:
---------------------------------------------------------------
| location | frame number | frame length | reserved | vlan tag |
---------------------------------------------------------------
1 2 2 1 2
para comment:
value range comment
location: 1,2
frame number: 1~10000
frame length: 46~1500
reserved: 0 this area is not used for now, must be 0
vlan tag: 0~4094
"
::= { onuLoopTestEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.9.1.2
-- 1.3.6.1.4.1.34592.1.3.4.9.1.2
-- 1.3.6.1.4.1.34592.1.3.4.9.1.2
onuLoopTestResult OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" loopback test results.
Data Format:
-----------------------------------------------------------------------------------------
|status|frames sent|frames received ok|corrupted frames|min delay|max delay|average delay|
-----------------------------------------------------------------------------------------
1 2 2 2 2 2 2
para comment:
status:
1->finished ok
2->testing
3->time out
4->test command error
"
::= { onuLoopTestEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.10
-- 1.3.6.1.4.1.34592.1.3.4.10
-- 1.3.6.1.4.1.34592.1.3.4.10
onuDynMac OBJECT IDENTIFIER ::= { fdOnu 10 }
-- 1.3.6.1.4.1.34592.1.3.4.10.1
-- 1.3.6.1.4.1.34592.1.3.4.10.1
-- 1.3.6.1.4.1.34592.1.3.4.10.1
onuDynMacOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuDynMacOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuDynMac 1 }
-- 1.3.6.1.4.1.34592.1.3.4.10.1.1
-- 1.3.6.1.4.1.34592.1.3.4.10.1.1
-- 1.3.6.1.4.1.34592.1.3.4.10.1.1
onuDynMacOperEntry OBJECT-TYPE
SYNTAX OnuDynMacOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuDynMacOperTable 1 }
OnuDynMacOperEntry ::=
SEQUENCE {
onuDynMacOperation
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.10.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.10.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.10.1.1.1
onuDynMacOperation OBJECT-TYPE
SYNTAX INTEGER
{
refresh(2),
clear(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { onuDynMacOperEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.10.2
-- 1.3.6.1.4.1.34592.1.3.4.10.2
-- 1.3.6.1.4.1.34592.1.3.4.10.2
onuDynMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuDynMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuDynMac 2 }
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1
onuDynMacEntry OBJECT-TYPE
SYNTAX OnuDynMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
INDEX { ponCardSlotId, oltId, onuId, uniPortId, onuDynMacIndex
}
::= { onuDynMacTable 1 }
OnuDynMacEntry ::=
SEQUENCE {
onuDynMacIndex
Integer32,
onuDynMacAddr
MacAddress
}
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1.1
onuDynMacIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Administratorly assigned entry index object"
::= { onuDynMacEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.10.2.1.2
onuDynMacAddr OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" "
::= { onuDynMacEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11
-- 1.3.6.1.4.1.34592.1.3.4.11
-- 1.3.6.1.4.1.34592.1.3.4.11
onuVoiceService OBJECT IDENTIFIER ::= { fdOnu 11 }
-- 1.3.6.1.4.1.34592.1.3.4.11.1
-- 1.3.6.1.4.1.34592.1.3.4.11.1
-- 1.3.6.1.4.1.34592.1.3.4.11.1
onuIADInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuIADInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" IAD Info"
::= { onuVoiceService 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1
onuIADInfoEntry OBJECT-TYPE
SYNTAX OnuIADInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" IAD Info"
INDEX { ponCardSlotId, oltId, onuId }
::= { onuIADInfoTable 1 }
OnuIADInfoEntry ::=
SEQUENCE {
onuIADMac
MacAddress,
onuIADProtocol
INTEGER,
onuIADSwVersion
DisplayString,
onuIADSwTime
DisplayString,
onuIADVoipNum
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.1
onuIADMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IAD MAC address"
::= { onuIADInfoEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.2
onuIADProtocol OBJECT-TYPE
SYNTAX INTEGER
{
h248(0),
sip(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ProtocolSupported
0x00: H.248
0x01: SIP"
::= { onuIADInfoEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.3
onuIADSwVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Iad Software Version"
::= { onuIADInfoEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.4
onuIADSwTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Iad software time
Version time format uses: YYYYMMDDHHMMSS"
::= { onuIADInfoEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.1.1.5
onuIADVoipNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"VoipUserCount
Indicate POTS number of IAD module"
::= { onuIADInfoEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2
-- 1.3.6.1.4.1.34592.1.3.4.11.2
-- 1.3.6.1.4.1.34592.1.3.4.11.2
onuIADParamCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuIADParamCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ONU IAD Global Parameter Co nfigure"
::= { onuVoiceService 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1
onuIADParamCfgEntry OBJECT-TYPE
SYNTAX OnuIADParamCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ONU IAD Global Parameter Co nfigure"
INDEX { ponCardSlotId, oltId, onuId }
::= { onuIADParamCfgTable 1 }
OnuIADParamCfgEntry ::=
SEQUENCE {
onuIADMode
INTEGER,
onuIADIpAddr
IpAddress,
onuIADNetMask
IpAddress,
onuIADDefaultGw
IpAddress,
onuIADPppoeMode
INTEGER,
onuIADPppoeUsrnm
DisplayString,
onuIADPppoePw
DisplayString,
onuIADTagMode
INTEGER,
onuIADVoiceCVlan
Integer32,
onuIADVoiceSVlan
Integer32,
onuIADVoicePriority
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.1
onuIADMode OBJECT-TYPE
SYNTAX INTEGER
{
static(0),
dhcp(1),
pppoe(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address configuration mode:
0x00: Static IP
0x01: DHCP
0x02: PPPoE/PPPOE+"
::= { onuIADParamCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.2
onuIADIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When Voice IP Mode= 0x00, indicate the device
static configured IP address, otherwise, this field
is invalid, and the value is 0x00."
::= { onuIADParamCfgEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.3
onuIADNetMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When Voice IP Mode = 0x00, indicate the device
static configured IP address mask, otherwise,
this field is invalid, and the value is 0x00."
::= { onuIADParamCfgEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.4
onuIADDefaultGw OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When Voice IP Mode = 0x00, indicate the device
static configured IAD default GW, otherwise, the
field is invalid, and the value is 0x00"
::= { onuIADParamCfgEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.5
onuIADPppoeMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(0),
chap(1),
pap(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PPPOE mode:
0x00: AUTO (default)
0x01: Challenge Handshake Authentication Protocol (CHAP)
0x02: Password Authentication Protocol (PAP)"
::= { onuIADParamCfgEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.6
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.6
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.6
onuIADPppoeUsrnm OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PPPOE username"
::= { onuIADParamCfgEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.7
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.7
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.7
onuIADPppoePw OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PPPOE password"
::= { onuIADParamCfgEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.8
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.8
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.8
onuIADTagMode OBJECT-TYPE
SYNTAX INTEGER
{
passThrough(0),
tag(1),
vlanStack(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tagged flag
Indicate whether Voice data uses tag, and the default is 0x01:
0x00: Pass through
0x01: Tag
0x02: VLAN stacking"
::= { onuIADParamCfgEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.9
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.9
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.9
onuIADVoiceCVlan OBJECT-TYPE
SYNTAX Integer32 (0..4096)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Voice CVlan"
::= { onuIADParamCfgEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.10
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.10
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.10
onuIADVoiceSVlan OBJECT-TYPE
SYNTAX Integer32 (0..4096)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Voice SVLAN
If it is single layer of VLAN, the value is 0x00."
::= { onuIADParamCfgEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.11
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.11
-- 1.3.6.1.4.1.34592.1.3.4.11.2.1.11
onuIADVoicePriority OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Voice Priority"
::= { onuIADParamCfgEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3
onuIADH248Param OBJECT IDENTIFIER ::= { onuVoiceService 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1
h248ParamCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF H248ParamCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuIADH248Param 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1
h248ParamCfgEntry OBJECT-TYPE
SYNTAX H248ParamCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId }
::= { h248ParamCfgTable 1 }
H248ParamCfgEntry ::=
SEQUENCE {
h248MgPort
Integer32,
h248MgcIp
IpAddress,
h248MgcPort
Integer32,
h248BakMacIp
IpAddress,
h248BakMgcPort
Integer32,
h248ActiveMgc
INTEGER,
h248RegMode
INTEGER,
h248MID
DisplayString,
h248HbMode
INTEGER,
h248HbCycle
Integer32,
h248HbCount
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.1
h248MgPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MGPortNo
The default is 2944."
::= { h248ParamCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.2
h248MgcIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MGCIP
Active softswitch platform IP address.
"
::= { h248ParamCfgEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.3
h248MgcPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MgcComPortNo
Active softswitch platform port number."
::= { h248ParamCfgEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.4
h248BakMacIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Backup MgcIp
Backup softswitch platform IP address. If it is
0x00000000, dual homing is not enabled."
::= { h248ParamCfgEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.5
h248BakMgcPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Backup MgcComPortNo
If it is 0x0000, dual homing is not enabled."
::= { h248ParamCfgEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.6
h248ActiveMgc OBJECT-TYPE
SYNTAX INTEGER
{
backup(0),
active(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Active MGC
0x00: Backup softswitch platform
0x01: Active softswitch platform
When SET, ONU ignores this field.
When GET, ONU returns registered MGC."
::= { h248ParamCfgEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.7
h248RegMode OBJECT-TYPE
SYNTAX INTEGER
{
ipAddress(0),
domainName(1),
deviceName(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RegMode
0x00: IP address
0x01: domain name
0x02: device name"
::= { h248ParamCfgEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.8
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.8
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.8
h248MID OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MID
If RegMode=0x00, the field is empty.
If the registration mode is device name or
domain name, the corresponding strings are
padded."
::= { h248ParamCfgEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.9
h248HbMode OBJECT-TYPE
SYNTAX INTEGER
{
close(0),
h248ctc(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Heartbeat Mode
0x00: Close
0x01: H.248-CTC standard Notify command"
::= { h248ParamCfgEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.10
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.10
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.10
h248HbCycle OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HeartbeatCycle
The default is 60s."
::= { h248ParamCfgEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.11
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.11
-- 1.3.6.1.4.1.34592.1.3.4.11.3.1.1.11
h248HbCount OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HeartbeatCount
The default is 3."
::= { h248ParamCfgEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2
h248UserTIDTable OBJECT-TYPE
SYNTAX SEQUENCE OF H248UserTIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuIADH248Param 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1
h248UserTIDEntry OBJECT-TYPE
SYNTAX H248UserTIDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId, onuIADPotsId }
::= { h248UserTIDTable 1 }
H248UserTIDEntry ::=
SEQUENCE {
onuVoipPortId
Integer32,
h248UserTIDName
DisplayString
}
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1.1
onuVoipPortId OBJECT-TYPE
SYNTAX Integer32 (1..2048)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { h248UserTIDEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.2.1.2
h248UserTIDName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User TID Name"
::= { h248UserTIDEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3
h248RtpTIDCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF H248RtpTIDCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuIADH248Param 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1
h248RtpTIDCfgEntry OBJECT-TYPE
SYNTAX H248RtpTIDCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId }
::= { h248RtpTIDCfgTable 1 }
H248RtpTIDCfgEntry ::=
SEQUENCE {
h248RtpTIDNum
Integer32,
h248RtpTIDPrefix
DisplayString,
h248RtpTIDDigitBegin
Integer32,
h248RtpTIDMode
INTEGER,
h248RtpTIDDigitLen
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.1
h248RtpTIDNum OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of RTP TID"
::= { h248RtpTIDCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.2
h248RtpTIDPrefix OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP TID Prefix"
::= { h248RtpTIDCfgEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.3
h248RtpTIDDigitBegin OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP TID Digit Begin
RTP TID digital portion start value"
::= { h248RtpTIDCfgEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.4
h248RtpTIDMode OBJECT-TYPE
SYNTAX INTEGER
{
align(0),
nonAlign(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP TID Mode
0x00: alignment mode
0x01: non-alignment mode"
::= { h248RtpTIDCfgEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.3.3.1.5
h248RtpTIDDigitLen OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RTP TID Digit Length"
::= { h248RtpTIDCfgEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4
h248RtpTIDInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H248RtpTIDInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" H248 RTP TID Info"
::= { onuIADH248Param 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1
h248RtpTIDInfoEntry OBJECT-TYPE
SYNTAX H248RtpTIDInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" H248 RTP TID Info"
INDEX { ponCardSlotId, oltId, onuId }
::= { h248RtpTIDInfoTable 1 }
H248RtpTIDInfoEntry ::=
SEQUENCE {
h248RtpTIDCount
Integer32,
h248FstRtpTIDName
DisplayString
}
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1.1
h248RtpTIDCount OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of RTP TID"
::= { h248RtpTIDInfoEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.3.4.1.2
h248FstRtpTIDName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"First RTP TID Name"
::= { h248RtpTIDInfoEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4
-- 1.3.6.1.4.1.34592.1.3.4.11.4
-- 1.3.6.1.4.1.34592.1.3.4.11.4
onuIADSipParam OBJECT IDENTIFIER ::= { onuVoiceService 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1
sipParamCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF SipParamCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" SIP Parameter Configure"
::= { onuIADSipParam 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1
sipParamCfgEntry OBJECT-TYPE
SYNTAX SipParamCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" SIP Parameter Configure"
INDEX { ponCardSlotId, oltId, onuId }
::= { sipParamCfgTable 1 }
SipParamCfgEntry ::=
SEQUENCE {
sipMgPort
Integer32,
sipProxySvrIp
IpAddress,
sipProxySvrPort
Integer32,
sipBakProxySvrIp
IpAddress,
sipBakProxySvrPort
Integer32,
sipActiveProxySvr
IpAddress,
sipRegSvrIp
IpAddress,
sipRegSvrPort
Integer32,
sipBakRegSvrIp
IpAddress,
sipBakRegSvrPort
Integer32,
sipOutBoundSvrIp
IpAddress,
sipOutBoundSvrPort
Integer32,
sipRegInterval
Integer32,
sipHbSwitch
INTEGER,
sipHbCycle
Integer32,
sipHbCount
Integer32
}
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.1
sipMgPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"MGPortNo
The default is 5060."
::= { sipParamCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.2
sipProxySvrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SipProxyServIp
Active SIP agent server IP address"
::= { sipParamCfgEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.3
sipProxySvrPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SipProxyServComPortNo
Active SIP agent server port number"
::= { sipParamCfgEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.4
sipBakProxySvrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"BackupSipProxyServIp
Backup SIP agent server IP address, if this field is
0x00000000, do not enable dual homing function."
::= { sipParamCfgEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.5
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.5
sipBakProxySvrPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"BackupSipProxyServComPortNo
Backup SIP agent server port number. If this field
is 0x00000000, do not enable dual homing function."
::= { sipParamCfgEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.6
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.6
sipActiveProxySvr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ActiveSipProxyServer
When SET, ONU ignores to process this field.
When GET, ONU returns registered MGC."
::= { sipParamCfgEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.7
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.7
sipRegSvrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SipRegServIP
Active SIP registration server IP address"
::= { sipParamCfgEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.8
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.8
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.8
sipRegSvrPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SipRegServComPortNo
Active SIP registration server port number"
::= { sipParamCfgEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.9
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.9
sipBakRegSvrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"BackupSipRegServIp
Backup SIP registration server IP address. If this
field is 0x00000000, do not enable dual homing."
::= { sipParamCfgEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.10
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.10
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.10
sipBakRegSvrPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"BackupSipRegServComPortNo
Active SIP registration server port number. If this
field is 0x00000000, do not enable dual homing."
::= { sipParamCfgEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.11
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.11
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.11
sipOutBoundSvrIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"OutBoundServIP"
::= { sipParamCfgEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.12
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.12
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.12
sipOutBoundSvrPort OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"OutBoundServPortNo"
::= { sipParamCfgEntry 12 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.13
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.13
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.13
sipRegInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SipRegIntervalSIP
Registration refresh cycle, unit is second, and the
default value is 3600s."
::= { sipParamCfgEntry 13 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.14
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.14
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.14
sipHbSwitch OBJECT-TYPE
SYNTAX INTEGER
{
enable(0),
disable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HeartbeatSwitch
0x00: enable heartbeat switch
0x01: disable heartbeat switch"
::= { sipParamCfgEntry 14 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.15
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.15
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.15
sipHbCycle OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HeartbeatCycle
the default value is 60s"
::= { sipParamCfgEntry 15 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.16
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.16
-- 1.3.6.1.4.1.34592.1.3.4.11.4.1.1.16
sipHbCount OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"HeartbeatCount
the default value is 3"
::= { sipParamCfgEntry 16 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2
sipUserCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF SipUserCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" SIP User Parameter Configure"
::= { onuIADSipParam 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1
sipUserCfgEntry OBJECT-TYPE
SYNTAX SipUserCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" SIP User Parameter Configure"
INDEX { ponCardSlotId, oltId, onuId, onuIADPotsId }
::= { sipUserCfgTable 1 }
SipUserCfgEntry ::=
SEQUENCE {
sipUserAccount
DisplayString,
sipUserName
DisplayString,
sipUserPasswd
DisplayString
}
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.1
sipUserAccount OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User Account
User phone number, and should user ASCII code"
::= { sipUserCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.2
sipUserName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User name
SIP port username, and should use ASCII code."
::= { sipUserCfgEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.4.2.1.3
sipUserPasswd OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User Password
SIP port password, and should use ASCII code."
::= { sipUserCfgEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3
sipDigitMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF SipDigitMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuIADSipParam 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1
sipDigitMapEntry OBJECT-TYPE
SYNTAX SipDigitMapEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId }
::= { sipDigitMapTable 1 }
SipDigitMapEntry ::=
SEQUENCE {
sipDigitMapLen
Integer32,
sipDigitMap
DisplayString
}
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1.1
sipDigitMapLen OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Map length"
::= { sipDigitMapEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.4.3.1.2
sipDigitMap OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"SIP DigitalMap
SIP protocol digital map, ASCII code type"
::= { sipDigitMapEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.5
-- 1.3.6.1.4.1.34592.1.3.4.11.5
-- 1.3.6.1.4.1.34592.1.3.4.11.5
onuIADFaxCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuIADFaxCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Fax/Modem Configure"
::= { onuVoiceService 5 }
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1
onuIADFaxCfgEntry OBJECT-TYPE
SYNTAX OnuIADFaxCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId }
::= { onuIADFaxCfgTable 1 }
OnuIADFaxCfgEntry ::=
SEQUENCE {
onuIADVoiceFaxMode
INTEGER,
onuIADVoiceFaxControl
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1.1
onuIADVoiceFaxMode OBJECT-TYPE
SYNTAX INTEGER
{
passthrough(0),
t38(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VoiceT38Enable
0x00: voice passthrough mode (T30)
0x01: T38 mode"
::= { onuIADFaxCfgEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.5.1.2
onuIADVoiceFaxControl OBJECT-TYPE
SYNTAX INTEGER
{
negotiation(0),
autoVBD(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"VoiceFax/ModemControl
At default, use negotiation mode.
0x00: negotiation mode
0x01: Auto VBD"
::= { onuIADFaxCfgEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.6
-- 1.3.6.1.4.1.34592.1.3.4.11.6
-- 1.3.6.1.4.1.34592.1.3.4.11.6
onuIADOperTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuIADOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" IAD Operation Status "
::= { onuVoiceService 6 }
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1
onuIADOperEntry OBJECT-TYPE
SYNTAX OnuIADOperEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" IAD Operation Status "
INDEX { ponCardSlotId, oltId, onuId }
::= { onuIADOperTable 1 }
OnuIADOperEntry ::=
SEQUENCE {
onuIADOperStatusSet
INTEGER,
onuIADOperStatus
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1.1
onuIADOperStatusSet OBJECT-TYPE
SYNTAX INTEGER
{
reregister(0),
logout(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"iadOperation
0x00000000: Reregister for softswitch platform
0x00000001: Logout from softswitch platform
0x00000002: Reset, only for voice module"
::= { onuIADOperEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.6.1.2
onuIADOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
registering(0),
regSuccess(1),
iadFault(2),
logout(3),
iadRestarting(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"iadOperStatus
0x00000000: Registering
0x00000001: Registration successful
0x00000002: IAD fault
0x00000003: logout
0x00000004: IAD is restarting"
::= { onuIADOperEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.7
-- 1.3.6.1.4.1.34592.1.3.4.11.7
-- 1.3.6.1.4.1.34592.1.3.4.11.7
onuIADPOTSStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuIADPOTSStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"POTS Status"
::= { onuVoiceService 7 }
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1
onuIADPOTSStatusEntry OBJECT-TYPE
SYNTAX OnuIADPOTSStatusEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"POTS Status"
INDEX { ponCardSlotId, oltId, onuId, onuIADPotsId }
::= { onuIADPOTSStatusTable 1 }
OnuIADPOTSStatusEntry ::=
SEQUENCE {
onuIADPotsStatus
INTEGER,
onuIADPotsServiceState
INTEGER,
onuIADPotsCodeMode
INTEGER,
onuIADPotsId
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.1
onuIADPotsStatus OBJECT-TYPE
SYNTAX INTEGER
{
registering(0),
idle(1),
pickUp(2),
dialing(3),
ringing(4),
ringBack(5),
connecting(6),
connected(7),
releasing(8),
regFailure(9),
notActivated(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IADPortStauts
0x00000000: port is registering
0x00000001: port is idle
0x00000002: pick up
0x00000003: dialing
0x00000004: ringing
0x00000005: ring back
0x00000006: connecting
0x00000007: connected
0x00000008: releasing connection
0x00000009: port registration failure
0x0000000A: port is not activated"
::= { onuIADPOTSStatusEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.2
onuIADPotsServiceState OBJECT-TYPE
SYNTAX INTEGER
{
endLocal(0),
endRemote(1),
endAuto(2),
normal(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"iadPortServiceState
0x00000000: endLocal, local end terminates service, caused by user disable port
0x00000001: endRemote, remote end terminates service, caused by MGC sends down command
0x00000002: endAuto, automatically terminate service, caused by MGC fault.
0x00000003: normal service normal"
::= { onuIADPOTSStatusEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.3
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.3
onuIADPotsCodeMode OBJECT-TYPE
SYNTAX INTEGER
{
g711a(0),
g729(1),
g711u(2),
g723(3),
g726(4),
t38(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"iadPortCodecMode 0x00000000: G.711 A
0x00000001: G.729
0x00000002: G.711U
0x00000003: G.723
0x00000004: G.726
0x00000005: T.38"
::= { onuIADPOTSStatusEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.4
-- 1.3.6.1.4.1.34592.1.3.4.11.7.1.4
onuIADPotsId OBJECT-TYPE
SYNTAX INTEGER
{
iadPots1(1),
iadPots2(2),
iadPots3(3),
iadPots4(4),
iadPots5(5),
iadPots6(6),
iadPots7(7),
iadPots8(8)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" "
::= { onuIADPOTSStatusEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.11.8
-- 1.3.6.1.4.1.34592.1.3.4.11.8
-- 1.3.6.1.4.1.34592.1.3.4.11.8
onuIADPOTSEnableTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuIADPOTSEnableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"POTS Enable"
::= { onuVoiceService 8 }
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1
onuIADPOTSEnableEntry OBJECT-TYPE
SYNTAX OnuIADPOTSEnableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"POTS Enable"
INDEX { ponCardSlotId, oltId, onuId, onuIADPotsId }
::= { onuIADPOTSEnableTable 1 }
OnuIADPOTSEnableEntry ::=
SEQUENCE {
potsId
INTEGER,
onuIADPotsEnable
INTEGER
}
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1.1
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1.1
potsId OBJECT-TYPE
SYNTAX INTEGER
{
iadPots1(1),
iadPots2(2),
iadPots3(3),
iadPots4(4),
iadPots5(5),
iadPots6(6),
iadPots7(7),
iadPots8(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Pots Id
"
::= { onuIADPOTSEnableEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1.2
-- 1.3.6.1.4.1.34592.1.3.4.11.8.1.2
onuIADPotsEnable OBJECT-TYPE
SYNTAX INTEGER
{
disable(1),
enable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IADPortEnable
1: disable
2: enable
"
::= { onuIADPOTSEnableEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.12
onuStatisticsTable OBJECT IDENTIFIER ::= { fdOnu 12 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1
onuPonStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuPonStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStatisticsTable 1 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1
onuPonStatisticsEntry OBJECT-TYPE
SYNTAX OnuPonStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId }
::= { onuPonStatisticsTable 1 }
OnuPonStatisticsEntry ::=
SEQUENCE {
onuPonStatDnDropEvents
Counter32,
onuPonStatUpDropEvents
Counter32,
onuPonStatDnOctets
Counter32,
onuPonStatUpOctets
Counter32,
onuPonStatDnFrames
Counter32,
onuPonStatUpFrames
Counter32,
onuPonStatDnBcFrames
Counter32,
onuPonStatUpBcFrames
Counter32,
onuPonStatDnMcFrames
Counter32,
onuPonStatUpMcFrames
Counter32,
onuPonStatDnCrcErrFrames
Counter32,
onuPonStatUpCrcErrFrames
Counter32
}
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.1
onuPonStatDnDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.2
onuPonStatUpDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.3
onuPonStatDnOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.4
onuPonStatUpOctets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.5
onuPonStatDnFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.6
onuPonStatUpFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.7
onuPonStatDnBcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.8
onuPonStatUpBcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.9
onuPonStatDnMcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.10
onuPonStatUpMcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.11
onuPonStatDnCrcErrFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.12.1.1.12
onuPonStatUpCrcErrFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuPonStatisticsEntry 12 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2
onuUniStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF OnuUniStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
::= { onuStatisticsTable 2 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1
onuUniStatisticsEntry OBJECT-TYPE
SYNTAX OnuUniStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Description."
INDEX { ponCardSlotId, oltId, onuId, uniPortId }
::= { onuUniStatisticsTable 1 }
OnuUniStatisticsEntry ::=
SEQUENCE {
onuUniStatDnDropEvents
Counter32,
onuUniStatUpDropEvents
Counter32,
onuUniStatDnOctects
Counter32,
onuUniStatUpOctects
Counter32,
onuUniStatDnFrames
Counter32,
onuUniStatUpFrames
Counter32,
onuUniStatDnBcFrames
Counter32,
onuUniStatUpBcFrames
Counter32,
onuUniStatDnMcFrames
Counter32,
onuUniStatUpMcFrames
Counter32,
onuUniStatDnCrcErrFrames
Counter32,
onuUniStatUpCrcErrFrames
Counter32
}
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.1
onuUniStatDnDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 1 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.2
onuUniStatUpDropEvents OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 2 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.3
onuUniStatDnOctects OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 3 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.4
onuUniStatUpOctects OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 4 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.5
onuUniStatDnFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 5 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.6
onuUniStatUpFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 6 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.7
onuUniStatDnBcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 7 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.8
onuUniStatUpBcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 8 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.9
onuUniStatDnMcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 9 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.10
onuUniStatUpMcFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 10 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.11
onuUniStatDnCrcErrFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 11 }
-- 1.3.6.1.4.1.34592.1.3.4.12.2.1.12
onuUniStatUpCrcErrFrames OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description."
::= { onuUniStatisticsEntry 12 }
-- 1.3.6.1.4.1.34592.1.3.4.15
-- 1.3.6.1.4.1.34592.1.3.4.15
-- 1.3.6.1.4.1.34592.1.3.4.15
fdOnuConformance OBJECT IDENTIFIER ::= { fdOnu 15 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1
-- 1.3.6.1.4.1.34592.1.3.4.15.1
-- 1.3.6.1.4.1.34592.1.3.4.15.1
fdOnuGroups OBJECT IDENTIFIER ::= { fdOnuConformance 1 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.1
-- 1.3.6.1.4.1.34592.1.3.4.15.1.1
-- 1.3.6.1.4.1.34592.1.3.4.15.1.1
fdOnuBaseManageGroup OBJECT-GROUP
OBJECTS { onuDeviceType, onuFactorySerial, onuUserInfo, onuHwRev, onuFwRev,
onuBaseMac, maxAllowedLLIDs, registeredLLIDNum, onuOnLineStatus, onuUserTrafficEnable,
onuRangeValue, onuMgmtType, onuLaserRxPower, onuLaserTxPower, onuOperation,
onuRstpEnable, onuQueueCfgData, onuAclRuleCfgData, onuPortVlanData, maxTrafficOutputRate,
outputModule, scheduleAlgorithm, policingTrafficType, maxTrafficInputRate, inputModule,
onuDynMacOperation, supportUniPorts, onuLinkIdMap, onuVenderId, onuLaserTemperature,
onuLaserBias, onuLaserVoltage, onuPasswd, onuLoid, onuCtcDeviceType,
onuDynMacAddr, onuUpgradeStat }
STATUS current
DESCRIPTION
"A collection of objects providing basic fd ONU
management"
::= { fdOnuGroups 1 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.2
-- 1.3.6.1.4.1.34592.1.3.4.15.1.2
-- 1.3.6.1.4.1.34592.1.3.4.15.1.2
fdOnuAdvanceManageGroup OBJECT-GROUP
OBJECTS { onuChipProCode, onuChipProVer, onuChipId, onuChipVer, onuBootVer,
onuPersVer, onuChipApp0Ver, onuChipApp1Ver, onuChipDiagVer, onuAddiVlanEthType,
onuRstpEnable, onuLocalSwitch, onuCatv, onuCatvRfLevel, onuStormCtrlInterval,
onuUniStormCtrlBroadcastEnable, onuUniStormCtrlBroadcastMode, onuUniStormCtrlBroadcastAction, onuUniStormCtrlBroadcastInRate, onuUniStormCtrlBroadcastOutRate,
onuUniStormCtrlMulticastEnable, onuUniStormCtrlMulticastMode, onuUniStormCtrlMulticastAction, onuUniStormCtrlMulticastInRate, onuUniStormCtrlMulticastOutRate,
onuUniStormCtrlUnicastEnable, onuUniStormCtrlUnicastMode, onuUniStormCtrlUnicastAction, onuMgmtGateway, onuMgmtNetmask,
onuMgmtIpAddr, onuUniStormCtrlUnicastOutRate, onuUniStormCtrlUnicastInRate, onuUniStormCtrlType, onuUniStormCtrlMode,
onuUniStormCtrlAction, onuUniStormCtrlInRate, onuUniStormCtrlOutRate, onuMgmtPriority, onuMgmtSVlan,
onuMgmtCVlan }
STATUS current
DESCRIPTION
"A collection of objects providing advanced ONU feature
management"
::= { fdOnuGroups 2 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.3
-- 1.3.6.1.4.1.34592.1.3.4.15.1.3
-- 1.3.6.1.4.1.34592.1.3.4.15.1.3
fdOnuPortParaGroup OBJECT-GROUP
OBJECTS { uniPortUserInfo, uniPortLink, uniPortAutoNego, uniPortSpeed, uniPortDuplex,
uniPortFlowCtrl, uniPortMacEntryLimit, uniPortMacAgeTime, uniPortFowardMode, uniPortEnable,
uniPortRstpState, uniPortName, uniPortType }
STATUS current
DESCRIPTION
"A collection of objects providing ONU port parameters management"
::= { fdOnuGroups 3 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.4
-- 1.3.6.1.4.1.34592.1.3.4.15.1.4
-- 1.3.6.1.4.1.34592.1.3.4.15.1.4
onuIgmpSnoopGroup OBJECT-GROUP
OBJECTS { igmpSnoopParaData, igmpSnoopGroupData }
STATUS current
DESCRIPTION
"A collection of objects providing igmp snooping feature
management"
::= { fdOnuGroups 4 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.5
-- 1.3.6.1.4.1.34592.1.3.4.15.1.5
-- 1.3.6.1.4.1.34592.1.3.4.15.1.5
fdOnuLpTestGroup OBJECT-GROUP
OBJECTS { onuLoopTestData, onuLoopTestResult }
STATUS current
DESCRIPTION
"A collection of objects providing onu loopback test feature
management"
::= { fdOnuGroups 5 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.6
-- 1.3.6.1.4.1.34592.1.3.4.15.1.6
-- 1.3.6.1.4.1.34592.1.3.4.15.1.6
fdOnuVoiceGroup OBJECT-GROUP
OBJECTS { onuIADMac, onuIADProtocol, onuIADSwVersion, onuIADSwTime, onuIADVoipNum,
onuIADMode, onuIADIpAddr, onuIADNetMask, onuIADDefaultGw, onuIADPppoeMode,
onuIADPppoeUsrnm, onuIADPppoePw, onuIADTagMode, onuIADVoiceCVlan, onuIADVoiceSVlan,
onuIADVoicePriority, h248MgPort, h248MgcIp, h248MgcPort, h248BakMacIp,
h248BakMgcPort, h248ActiveMgc, h248RegMode, h248MID, h248HbMode,
h248HbCycle, h248HbCount, onuVoipPortId, h248UserTIDName, h248RtpTIDNum,
h248RtpTIDPrefix, h248RtpTIDDigitBegin, h248RtpTIDMode, h248RtpTIDDigitLen, h248RtpTIDCount,
h248FstRtpTIDName, sipMgPort, sipProxySvrIp, sipProxySvrPort, sipBakProxySvrIp,
sipBakProxySvrPort, sipActiveProxySvr, sipRegSvrIp, sipRegSvrPort, sipBakRegSvrIp,
sipBakRegSvrPort, sipOutBoundSvrIp, sipOutBoundSvrPort, sipRegInterval, sipHbSwitch,
sipHbCycle, sipHbCount, sipUserAccount, sipUserName, sipUserPasswd,
sipDigitMapLen, sipDigitMap, onuIADVoiceFaxMode, onuIADVoiceFaxControl, onuIADOperStatusSet,
onuIADOperStatus, onuIADPotsStatus, onuIADPotsServiceState, onuIADPotsCodeMode, onuIADPotsEnable,
potsId }
STATUS current
DESCRIPTION
"Description."
::= { fdOnuGroups 6 }
-- 1.3.6.1.4.1.34592.1.3.4.15.1.7
fdOnuStatisticsTable OBJECT-GROUP
OBJECTS { onuPonStatUpOctets, onuPonStatDnOctets, onuPonStatUpFrames, onuPonStatDnBcFrames, onuPonStatUpBcFrames,
onuPonStatDnMcFrames, onuPonStatUpMcFrames, onuPonStatDnCrcErrFrames, onuPonStatUpCrcErrFrames, onuUniStatDnDropEvents,
onuUniStatUpDropEvents, onuUniStatDnFrames, onuUniStatUpFrames, onuUniStatDnBcFrames, onuUniStatUpBcFrames,
onuUniStatDnMcFrames, onuUniStatUpMcFrames, onuUniStatDnCrcErrFrames, onuUniStatUpCrcErrFrames, onuPonStatDnFrames,
onuPonStatUpDropEvents, onuPonStatDnDropEvents, onuUniStatUpOctects, onuUniStatDnOctects }
STATUS current
DESCRIPTION
"Description."
::= { fdOnuGroups 7 }
-- 1.3.6.1.4.1.34592.1.3.4.15.2
-- 1.3.6.1.4.1.34592.1.3.4.15.2
-- 1.3.6.1.4.1.34592.1.3.4.15.2
fdOnuCompliances OBJECT IDENTIFIER ::= { fdOnuConformance 2 }
-- 1.3.6.1.4.1.34592.1.3.4.15.2.1
-- this module
-- this module
-- 1.3.6.1.4.1.34592.1.3.4.15.2.1
-- this module
-- 1.3.6.1.4.1.34592.1.3.4.15.2.1
fdOnuCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement"
MODULE -- this module
MANDATORY-GROUPS { fdOnuBaseManageGroup, fdOnuPortParaGroup, onuIgmpSnoopGroup, fdOnuLpTestGroup, fdOnuVoiceGroup
}
GROUP fdOnuAdvanceManageGroup
DESCRIPTION
"This group may or may not be implemented"
::= { fdOnuCompliances 1 }
END
--
-- FD-ONU-MIB.my
--
|