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
|
-- ===========================================================
-- Copyright (c) 2004-2018 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Epon MIB
-- Reference: IF-MIB
-- Version: V2.0
-- History:
-- V1.0 created by liuhongxu.
-- Initial version 2006-01-10
-- V1.1 Updated by chenzhaojie
-- Add enumeration values to hh3cEponUniVlanType
-- V1.2 Updated by chenzhaojie 2006-08-02
-- Add hh3cEponUniOutDroppedFrames
-- V1.3 Updated by chenzhaojie 2007-05-21
-- Add hh3cEponUniScalarGroup
-- Add enumeration values to hh3cEponUniVlanType
-- Add hh3cEponUniPortIsolate, hh3cEponUniVlanConfiguration
-- hh3cEponUniAutoNegotiation, hh3cEponUniRestartAutoNeg,
-- hh3cEponUniLinkStatus, hh3cEponUniInterfaceType
-- to hh3cEponUniSysManTable.
-- Add hh3cEponUniPortPolicyTable, hh3cEponUniMulticastTable.
-- Add hh3cEponUniMulticastControlTable, hh3cEponUniQosConfIndexNextTable,
-- hh3cEponUniQosConfTable, hh3cEponUniQosRuleTable.
-- V1.4 Updated by liuhongxu,andapeng 2007-10-13
-- Add hh3cEponUniMulticastFastleave to hh3cEponUniMulticastTable
-- Add hh3cEponUniMulticastIndex to hh3cEponUniMulticastControlTable
-- Add hh3cEponUniVitualCableTest to hh3cEponUniSysManTable
-- Add hh3cEponUniMirrorGroupTable, hh3cEponUniMirrorGroupIdNextTable
-- Add hh3cEponUniMulticastCtrlInfoTable
-- Add hh3cEponUniPortPolicyInboundCir,hh3cEponUniPortPolicyInboundBucketDepth,
-- hh3cEponUniPortPolicyInboundExtraBurst,hh3cEponUniPortPolicyOutboundCir
-- to hh3cEponUniPortPolicyTable.
-- Add hh3cEponUniMulticastIndexNextTable
-- Modify hh3cEponUniInterfaceType
-- V1.5 Updated by maguoqiang,wangke,zhaodan 2008-1-14
-- Deleted default values of these leaves:
-- hh3cEponUniMdi, hh3cEponUniPriority, hh3cEponUniVlanType, hh3cEponUniFlowControl,
-- hh3cEponUniDuplex, hh3cEponUniVlanVPNStatus, hh3cEponUniPortIsolate,
-- hh3cEponUniAutoNegotiation, hh3cEponUniVitualCableTest
-- Add hh3cEponUniMulticastSourceIpList to hh3cEponUniMulticastControlTable
-- Add hh3cEponUniMulticastResetInterval to hh3cEponUniMulticastControlTable
-- Modify hh3cEponUniVCTCableStatus and add 9 nodes:
-- Add hh3cEponUniVCTCableLength
-- hh3cEponUniVCTImpedanceMismatch
-- hh3cEponUniVCTPairSkew
-- hh3cEponUniVCTPairSwap
-- hh3cEponUniVCTPolaritySwap
-- hh3cEponUniVCTInsertionLoss
-- hh3cEponUniVCTReturnLoss
-- hh3cEponUniVCTNearendCrosstalk to hh3cEponUniSysManTable
-- V1.6 Updated by zoudian 2008-3-17
-- Add hh3cEponUniPortPolicyOutboundPir to hh3cEponUniPortPolicyTable
-- Modify hh3cEponUniPortPolicyOutboundCir
-- V1.7 Updated by zhaodan 2008-06-04
-- Add hh3cEponUniLinkUpTrap and hh3cEponUniLinkDownTrap.
-- Modify the MAX-ACCESS of hh3cEponUniIndex to accessible-for-notify.
-- V1.8 Updated by chenchao 2012-11-16
-- Add hh3cEponUniLoopBackDetectedTrap and hh3cEponUniLoopBackRecoveredTrap.
-- V1.9 Updated by zhuhaifeng 2018-02-02.
-- Add hh3cEponCTCAlarmTable and hh3cEponUniErrorInfo.
-- Add hh3cEponCTCAlarmTrap and hh3cEponCTCAlarmRecoverTrap.
-- Add hh3cUniStatisticsTable.
-- Add hh3cEponUniMacMax to hh3cEponUniSysManTable.
-- Modify hh3cEponUniVlanType and hh3cEponUniVlanConfiguration to hh3cEponUniSysManTable.
-- V2.0 Updated by zhuhaifeng 2018-11-28.
-- Add hh3cUniPoeTable, hh3cUniPoeInfoTable.
-- =================================================================
HH3C-EPON-UNI-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cEpon
FROM HH3C-OID-MIB
ifIndex, ifDescr
FROM IF-MIB
Integer32, Unsigned32, IpAddress, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE
FROM SNMPv2-SMI
MacAddress, TruthValue, RowStatus
FROM SNMPv2-TC;
hh3cEponUni MODULE-IDENTITY
LAST-UPDATED "201811281049Z" -- November 28, 2018
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Technologies Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip: 100085"
DESCRIPTION
"The objects in this MIB module are used to manage and
display current configuration of UNI (user network interface)
which is based on the ONU(Optical Network Unit)."
REVISION "201811281049Z" -- November 28, 2018
DESCRIPTION "Add hh3cUniPoeTable, hh3cUniPoeInfoTable."
REVISION "201706061145Z" -- June 06, 2017
DESCRIPTION "Add hh3cEponUniMacMax to hh3cEponUniSysManTable."
REVISION "201703061145Z" -- March 06, 2017
DESCRIPTION "Add the objects of hh3cEponCTCAlarmTable, hh3cEponUniErrorInfo,
hh3cEponCTCAlarmTrap, hh3cEponCTCAlarmRecoverTrap, and hh3cUniStatisticsTable."
::= { hh3cEpon 5 }
hh3cEponUniSysMan OBJECT IDENTIFIER ::= { hh3cEponUni 1 }
hh3cEponUniSysManTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table defines several UNI system parameters."
::= { hh3cEponUniSysMan 1 }
hh3cEponUniSysManEntry OBJECT-TYPE
SYNTAX Hh3cEponUniSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cEponUniSysManTable."
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniSysManTable 1 }
Hh3cEponUniSysManEntry ::= SEQUENCE
{
hh3cEponUniIndex Integer32,
hh3cEponUniDescr OCTET STRING,
hh3cEponUniAdminStatus INTEGER,
hh3cEponUniMdi INTEGER,
hh3cEponUniPriority Integer32,
hh3cEponUniVlanType INTEGER,
hh3cEponUniAccessVlan Integer32,
hh3cEponUniTrunkPvid INTEGER,
hh3cEponUniVLANTrunkAllowListLow OCTET STRING,
hh3cEponUniVLANTrunkAllowListHigh OCTET STRING,
hh3cEponUniInboundLineRate Integer32,
hh3cEponUniOutboundLineRate Integer32,
hh3cEponUniFlowControl TruthValue,
hh3cEponUniSpeed INTEGER,
hh3cEponUniDuplex INTEGER,
hh3cEponUniVlanVPNStatus TruthValue,
hh3cEponUniCountReset INTEGER,
hh3cEponUniPortIsolate INTEGER,
hh3cEponUniVlanConfiguration OCTET STRING,
hh3cEponUniAutoNegotiation INTEGER,
hh3cEponUniRestartAutoNeg INTEGER,
hh3cEponUniLinkStatus INTEGER,
hh3cEponUniInterfaceType INTEGER,
hh3cEponUniVitualCableTest INTEGER,
hh3cEponUniVCTCableStatus INTEGER,
hh3cEponUniVCTCableLength Integer32,
hh3cEponUniVCTImpedanceMismatch INTEGER,
hh3cEponUniVCTPairSkew Integer32,
hh3cEponUniVCTPairSwap INTEGER,
hh3cEponUniVCTPolaritySwap INTEGER,
hh3cEponUniVCTInsertionLoss Integer32,
hh3cEponUniVCTReturnLoss Integer32,
hh3cEponUniVCTNearendCrosstalk Integer32,
hh3cEponUniVlan Integer32,
hh3cEponUniMacMax Integer32
}
hh3cEponUniIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The index value which uniquely identifies the FE(fast Ethernet)
interface of the ONU."
::= { hh3cEponUniSysManEntry 1 }
hh3cEponUniDescr OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the interface. This
string should include the name of the manufacturer, the product name
and the version of the interface hardware and software."
::= { hh3cEponUniSysManEntry 2 }
hh3cEponUniAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2),
testing(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The desired state of the user network interface. When a managed
system initializes, all user network interfaces start with down(2)
state. The testing(3)state indicates that no operational packets
can be passed. As a result of either explicit management action or
per configuration information retained by the managed system,
hh3cEponUniAdminStatus is then changed to either the up(1) or
testing(3) states (or remains in the down(2) state)."
::= { hh3cEponUniSysManEntry 3 }
hh3cEponUniMdi OBJECT-TYPE
SYNTAX INTEGER
{
mdi-ii(1),
mdi-x(2),
mdi-auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of the line connected to UNI interface:
mdi-ii(straight-through cable),
mdi-x (crossover cable),
mdi-auto (auto-sensing)."
::= { hh3cEponUniSysManEntry 4 }
hh3cEponUniPriority OBJECT-TYPE
SYNTAX Integer32(0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The priority of user network interface. If the value is larger,
the priority will be higher."
::= { hh3cEponUniSysManEntry 5 }
hh3cEponUniVlanType OBJECT-TYPE
SYNTAX INTEGER
{
vlantrunk(1),
access(2),
hybrid(3),
untagged(4),
transparent(5),
doubletagged(6),
tag(7),
translation(8),
aggregation(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"UNI vlan types."
::= { hh3cEponUniSysManEntry 6 }
hh3cEponUniAccessVlan OBJECT-TYPE
SYNTAX Integer32(1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The vlan ID assigned to untagged frames or Priority-Tagged
frames received on user network interface."
::= { hh3cEponUniSysManEntry 7 }
hh3cEponUniTrunkPvid OBJECT-TYPE
SYNTAX INTEGER(1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PVID(port vlan ID), the vlan ID assigned to untagged frames or
Priority-Tagged frames received on user network interface."
::= { hh3cEponUniSysManEntry 8 }
hh3cEponUniVLANTrunkAllowListLow OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each octet within this value specifies a set of eight VLANs,
with the first octet specifying VLANs 1 through 8, the second
octet specifying VLANs 9 through 16, etc. Within each octet,
the most significant bit represents the highest numbered VLAN,
and the least significant bit represents the lowest numbered VLAN.
Thus, each allowed vlan of the trunk port is represented by a
single bit within the value of this object. If that bit has a value
of '1' then that vlan is allowed in the set of VLANs. The vlan
is not allowed if its bit has a value of '0'."
::= { hh3cEponUniSysManEntry 9 }
hh3cEponUniVLANTrunkAllowListHigh OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Each octet within this value specifies a set of eight VLANs,
with the first octet specifying VLANs 2049 through 2056, the
second octet specifying VLANs 2057 through 2064, etc. Within
each octet, the most significant bit represents the highest
numbered vlan, and the least significant bit represents the
lowest numbered vlan. Thus, each allowed vlan of the trunk port
is represented by a single bit within the value of this object.
If that bit has a value of '1' then that vlan is allowed in the
set of VLANs. The vlan is not allowed if its bit has a value of '0'.
"
::= { hh3cEponUniSysManEntry 10 }
hh3cEponUniInboundLineRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the inbound line-rate. measured with kbps.
The upper limit of the line-rate is the value of
hh3cEponUniLineRateMax in the entry. It must be multiple
of the value of hh3cEponUniLineRateStep. The default value of
hh3cEponUniLineRate is the value of hh3cEponUniLineRateMax."
::= { hh3cEponUniSysManEntry 11 }
hh3cEponUniOutboundLineRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the outbound line-rate. measured with kbps.
The upper limit of the line-rate is the value of
hh3cEponUniLineRateMax in the entry. It must be multiple
of the value of hh3cEponUniLineRateStep. The default value of
hh3cEponUniLineRate is the value of hh3cEponUniLineRateMax."
::= { hh3cEponUniSysManEntry 12 }
hh3cEponUniFlowControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Flow control status.
true(1) - Flow control status enable.
false(2) - Flow control status disable."
::= { hh3cEponUniSysManEntry 13 }
hh3cEponUniSpeed OBJECT-TYPE
SYNTAX INTEGER
{
auto(0),
s10M(10),
s100M(100),
s1000M(1000),
s10000M(10000),
s24000M(24000)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User network interface speed."
::= { hh3cEponUniSysManEntry 14 }
hh3cEponUniDuplex OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
half(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"User network interface mode."
::= { hh3cEponUniSysManEntry 15 }
hh3cEponUniVlanVPNStatus OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"vlan VPN status.
true(1) - vlan VPN status enable.
false(2) - vlan VPN disable."
::= { hh3cEponUniSysManEntry 16 }
hh3cEponUniCountReset OBJECT-TYPE
SYNTAX INTEGER
{
reset(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the counter which is about packets of the interface,
then the counter will change to zero. There is no sense in
reading this object."
::= { hh3cEponUniSysManEntry 17 }
hh3cEponUniPortIsolate OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
enable - enable UNI port isolate setting.
disable - disable UNI port isolate setting.
"
::= { hh3cEponUniSysManEntry 18 }
hh3cEponUniVlanConfiguration OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The vlan configuration of the related vlan mode.
Transparent vlan mode: hh3cEponUniVlanConfiguration is a
zero length string.
Tag vlan mode: the first four octets were the tag
assigned to untagged frames received on UNI, including TPID,
VID, CFI and priority.
Translation vlan mode: the first four octets were the old tag
(including TPID, VID, CFI and priority), which is replaced
by the new tag(including TPID, VID, CFI and priority),
the second four octets.
Doubletagged vlan mode: the first four octets were the tag
assigned to untagged or tagged frames received on UNI, including TPID,
VID, CFI and priority.
Vlantrunk vlan mode: the first four octets were the old tag
(including TPID, VID, CFI and priority), which is replaced
by the new tag(including TPID, VID, CFI and priority) of
the second four octets, the frames which assigned tag ranges from
the third four octets to fourth four octets were transmited freely
and so on for following octets.
Aggregation vlan mode: the first four octets were the old tag
(including TPID, VID, CFI and priority), which is replaced
by the new tag(including TPID, VID, CFI and priority) of
the second four octets, the frames which assigned tag ranges from
the third four octets to fourth four octets(using low two octets as vlan tag)
were replaced by the new tag(using high two octets as target vlan tag)
and so on for following octets.
"
::= { hh3cEponUniSysManEntry 23 }
hh3cEponUniAutoNegotiation OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
enable - enable auto negotiation.
disable - disable auto negotiation.
"
::= { hh3cEponUniSysManEntry 25 }
hh3cEponUniRestartAutoNeg OBJECT-TYPE
SYNTAX INTEGER
{
autoNegotiation(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Force to restart the auto negotiation process.
"
::= { hh3cEponUniSysManEntry 26 }
hh3cEponUniLinkStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The link status of UNI.
"
::= { hh3cEponUniSysManEntry 29 }
hh3cEponUniInterfaceType OBJECT-TYPE
SYNTAX INTEGER
{
gigabitethernetport(1),
fastethernetport(2),
voipport(3),
e1port(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI interface type.
"
::= { hh3cEponUniSysManEntry 30 }
-- BEGIN for UNI VCT
hh3cEponUniVitualCableTest OBJECT-TYPE
SYNTAX INTEGER{true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
True(1): Virtual cable test enable.
False(2): Virtual cable test disable."
DEFVAL{ false }
::= { hh3cEponUniSysManEntry 31 }
hh3cEponUniVCTCableStatus OBJECT-TYPE
SYNTAX INTEGER{normal(1),
abnormal(2),
abnormalOpen(3),
abnormalShort(4),
failure(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the cable status.
Normal(1),cable is normal.
Abnormal(2),cable is abnormal.
AbnormalOpen(3),cable is abnormal because of open circuit.
AbnormalShort(4),cable is abnormal because of short circuit.
Failure(5),cable is abnormal because of testing failure.
"
::= { hh3cEponUniSysManEntry 32 }
hh3cEponUniVCTCableLength OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the cable length.
When hh3cEponUniVCTCableStatus is normal,
the node stands for the length from the UNI port to the port opposite.
When hh3cEponUniVCTCableStatus is abnormal,
it stands for the length from the UNI port to the failure place.
Unit:meter(m).
"
::= { hh3cEponUniSysManEntry 33 }
hh3cEponUniVCTImpedanceMismatch OBJECT-TYPE
SYNTAX INTEGER{not-support(1),
true(2),
false(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the cable impedance.
Not-support(1),the UNI port does not support this function.
True(2),impedance match.
False(3),impedance mismatch."
::= { hh3cEponUniSysManEntry 34 }
hh3cEponUniVCTPairSkew OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Get the symmetry of cable.
If the function is not supported,
the default value 0 will be returned.
Unit:nanosecond(ns).
"
::= { hh3cEponUniSysManEntry 35 }
hh3cEponUniVCTPairSwap OBJECT-TYPE
SYNTAX INTEGER{notSupport(1),
true(2),
false(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
NotSupport(1),the UNI port does not support this function.
True(2),pair swap.
False(3),not pair swap."
::= { hh3cEponUniSysManEntry 36 }
hh3cEponUniVCTPolaritySwap OBJECT-TYPE
SYNTAX INTEGER{notSupport(1),
true(2),
false(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
NotSupport(1),the UNI port does not support this function.
True(2),polarity swap.
False(3),not polarity swap."
::= { hh3cEponUniSysManEntry 37 }
hh3cEponUniVCTInsertionLoss OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
If the function is not supported,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { hh3cEponUniSysManEntry 38 }
hh3cEponUniVCTReturnLoss OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
If the function is not supported,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { hh3cEponUniSysManEntry 39 }
hh3cEponUniVCTNearendCrosstalk OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
If the function is not supported,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { hh3cEponUniSysManEntry 40 }
hh3cEponUniVlan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
If the function is not supported,
the default value 0 will be returned.
Unit:decibel(db).
"
::= { hh3cEponUniSysManEntry 41 }
hh3cEponUniMacMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The maximum number of MAC addresses that the UNI port can learn.
no-limit(65535)
others(0~65534)
"
DEFVAL { 65535 }
::= { hh3cEponUniSysManEntry 42 }
-- END for UNI VCT
hh3cEponUniCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface counter about frames entries."
::= { hh3cEponUniSysMan 2 }
hh3cEponUniCountEntry OBJECT-TYPE
SYNTAX Hh3cEponUniCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable
to a particular interface."
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniCountTable 1 }
Hh3cEponUniCountEntry ::= SEQUENCE
{
hh3cEponUniInStatsPkts Unsigned32,
hh3cEponUniInStatsUnicastPkts Unsigned32,
hh3cEponUniInStatsBroadcastPkts Unsigned32,
hh3cEponUniInStatsMulticastPkts Unsigned32,
hh3cEponUniInPausePkts Unsigned32,
hh3cEponUniInTotalErrors Unsigned32,
hh3cEponUniInStatsCRCAlignErrors Unsigned32,
hh3cEponUniInStatsUndersizePkts Unsigned32,
hh3cEponUniInStatsOversizePkts Unsigned32,
hh3cEponUniInErrorbyOther Unsigned32,
hh3cEponUniOutStatsPkts Unsigned32,
hh3cEponUniOutStatsUnicastPkts Unsigned32,
hh3cEponUniOutStatsBroadcastPkts Unsigned32,
hh3cEponUniOutStatsMulticastPkts Unsigned32,
hh3cEponUniOutStatsPausePkts Unsigned32,
hh3cEponUniOutTotalErrors Unsigned32,
hh3cEponUniOutStatsCollisions Unsigned32,
hh3cEponUniOutDelayExceededDiscards Unsigned32,
hh3cEponUniOutErrorbyOther Unsigned32,
hh3cEponUniOutDroppedFrames Unsigned32
}
hh3cEponUniInStatsPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad frames,
broadcast frames, and multicast frames) received."
::= { hh3cEponUniCountEntry 1 }
hh3cEponUniInStatsUnicastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames received that are
directed to the unicast address. Note that this
does not include multicast and broadcast frames."
::= { hh3cEponUniCountEntry 2 }
hh3cEponUniInStatsBroadcastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames received that are
directed to the broadcast address. Note that this
does not include multicast frames."
::= { hh3cEponUniCountEntry 3 }
hh3cEponUniInStatsMulticastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames received that are
directed to a multicast address. Note that this number
does not include frames directed to the broadcast address."
::= { hh3cEponUniCountEntry 4 }
hh3cEponUniInPausePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MAC Control frames received on this
interface by the pause(flow control) operation.
This counter does not increment when the
interface is in a half-duplex mode.
Discontinuities in the value of this counter can
occur at re-initialization of the management
system."
::= { hh3cEponUniCountEntry 5 }
hh3cEponUniInTotalErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of the error frames received on this interface."
::= { hh3cEponUniCountEntry 6 }
hh3cEponUniInStatsCRCAlignErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that
had a length (excluding framing bits, but
including FCS octets) of between 64 and 1518
octets, inclusive, but had either a bad
Frame Check Sequence (FCS) with an integral
number of octets (FCS Error) or a bad FCS with
a non-integral number of octets (Alignment Error)."
::= { hh3cEponUniCountEntry 7 }
hh3cEponUniInStatsUndersizePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that are
less than 64 octets long (excluding framing bits,
but including FCS octets) and are otherwise well formed."
::= { hh3cEponUniCountEntry 8 }
hh3cEponUniInStatsOversizePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames received that are
longer than 1518 octets (excluding framing bits,
but including FCS octets) and are otherwise well formed."
::= { hh3cEponUniCountEntry 9 }
hh3cEponUniInErrorbyOther OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error frames received on this interface."
::= { hh3cEponUniCountEntry 10 }
hh3cEponUniOutStatsPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames (including bad frames,
broadcast frames, and multicast frames) sent."
::= { hh3cEponUniCountEntry 11 }
hh3cEponUniOutStatsUnicastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames sent that are
directed to the unicast address. Note that this
does not include multicast and broadcast frames."
::= { hh3cEponUniCountEntry 12 }
hh3cEponUniOutStatsBroadcastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames sent that are
directed to the broadcast address. Note that this
does not include multicast frames."
::= { hh3cEponUniCountEntry 13 }
hh3cEponUniOutStatsMulticastPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good frames sent that are
directed to a multicast address. Note that this number
does not include frames directed to the broadcast address."
::= { hh3cEponUniCountEntry 14 }
hh3cEponUniOutStatsPausePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of MAC control frames sent on this
interface by the pause operation. This counter does
not increment when the interface is in a half-duplex mode.
Discontinuities in the value of this counter can
occur at re-initialization of the management system."
::= { hh3cEponUniCountEntry 15 }
hh3cEponUniOutTotalErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error frames sent on this interface."
::= { hh3cEponUniCountEntry 16 }
hh3cEponUniOutStatsCollisions OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The best estimate of the total number of collisions
on this Ethernet segment.
The value returned will depend on the location of the
RMON probe. Section 8.2.1.3 (10BASE-5) and section
10.3.1.3 (10BASE-2) of IEEE standard 802.3 states that a
station must detect a collision, in the receive mode, if
three or more stations are transmitting simultaneously. A
repeater port must detect a collision when two or more
stations are transmitting simultaneously. Thus a probe
placed on a repeater port could record more collisions
than a probe connected to a station on the same segment
could. Probe location plays a much smaller role when considering
10BASE-T. 14.2.1.4 (10BASE-T) of IEEE standard 802.3
defines a collision as the simultaneous presence of signals
on the DO and RD circuits (transmitting and receiving
at the same time). A 10BASE-T station can only detect
collisions when it is transmitting. Thus probes placed on
a station and a repeater, should report the same number of
collisions. Note also that an RMON probe inside a repeater should
ideally report collisions between the repeater and one or
more other hosts (transmit collisions as defined by IEEE
802.3k) plus receiver collisions observed on any coax
segments to which the repeater is connected."
::= { hh3cEponUniCountEntry 17 }
hh3cEponUniOutDelayExceededDiscards OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of frames discarded by this port due
to excessive transit delay through the bridge. It
is incremented by both transparent and source route bridges."
::= { hh3cEponUniCountEntry 18 }
hh3cEponUniOutErrorbyOther OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of other error frames sent on this interface.
Other error frames means the error frames out of collision frames
and excessive delayed frames."
::= { hh3cEponUniCountEntry 19 }
hh3cEponUniOutDroppedFrames OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The total number of frames dropped because of buffer failure.
"
::= { hh3cEponUniCountEntry 20 }
hh3cEponUniIgmpInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniIgmpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores igmp information of UNI interface."
::= { hh3cEponUniSysMan 3 }
hh3cEponUniIgmpInfoEntry OBJECT-TYPE
SYNTAX Hh3cEponUniIgmpInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of hh3cEponUniIgmpInfoTable."
INDEX
{
ifIndex,
hh3cEponUniIndex,
hh3cEponUniMacIndex
}
::= { hh3cEponUniIgmpInfoTable 1 }
Hh3cEponUniIgmpInfoEntry ::= SEQUENCE
{
hh3cEponUniMacIndex Integer32,
hh3cEponUniIgmpMacAddress MacAddress,
hh3cEponUniIgmpVlanId Integer32
}
hh3cEponUniMacIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index uniquely identifies the igmp information in current
UNI interface."
::= { hh3cEponUniIgmpInfoEntry 1 }
hh3cEponUniIgmpMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 6-octet read-only value carrying the individual MAC address
indicates which igmp group the UNI interface belonging to."
::= { hh3cEponUniIgmpInfoEntry 2 }
hh3cEponUniIgmpVlanId OBJECT-TYPE
SYNTAX Integer32(1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An integer range from 1 to 4094 indicates the vlan which the igmp
Mac address has joined in."
::= { hh3cEponUniIgmpInfoEntry 3 }
hh3cEponUniParaMan OBJECT IDENTIFIER ::= { hh3cEponUniSysMan 4 }
hh3cEponUniLineRateMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of the line-rate(kbps) that user network
interface can be set."
::= { hh3cEponUniParaMan 1 }
hh3cEponUniLineRateStep OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The step of line-rate(kbps)."
::= { hh3cEponUniParaMan 2 }
hh3cEponUniNumberOnOnu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user network interface number on ONU."
::= { hh3cEponUniParaMan 3 }
hh3cEponUniScalarGroup OBJECT IDENTIFIER ::= { hh3cEponUniSysMan 5 }
--
-- hh3cEponUniPortPolicyTable
--
hh3cEponUniPortPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniPortPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI port policy configuration.
"
::= { hh3cEponUniSysMan 6 }
hh3cEponUniPortPolicyEntry OBJECT-TYPE
SYNTAX Hh3cEponUniPortPolicyEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of hh3cEponUniPortPolicyTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniPortPolicyTable 1 }
Hh3cEponUniPortPolicyEntry ::= SEQUENCE
{
hh3cEponUniPortPolicyStatus INTEGER,
hh3cEponUniPortPolicyCir Integer32,
hh3cEponUniPortPolicyBucketDepth Integer32,
hh3cEponUniPortPolicyExtraBurst Integer32,
hh3cEponUniPortPolicyInboundCir Integer32,
hh3cEponUniPortPolicyInboundBucketDepth Integer32,
hh3cEponUniPortPolicyInboundExtraBurst Integer32,
hh3cEponUniPortPolicyOutboundCir Integer32,
hh3cEponUniPortPolicyOutboundPir Integer32
}
hh3cEponUniPortPolicyStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
enable - enable UNI upstream port policing.
disable - disable UNI upstream port policing.
"
DEFVAL { disable }
::= { hh3cEponUniPortPolicyEntry 1 }
hh3cEponUniPortPolicyCir OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The committed information rate,
ranging from 1 to 102400, measured in kbps.
"
DEFVAL { 102400 }
::= { hh3cEponUniPortPolicyEntry 2 }
hh3cEponUniPortPolicyBucketDepth OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The depth of the token bucket to tolerant the certain burst(CBS),
ranging from 0 to 65535, measured in bytes.
"
DEFVAL { 0 }
::= { hh3cEponUniPortPolicyEntry 3 }
hh3cEponUniPortPolicyExtraBurst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The extra token to permit the forwarding engine to finish the packet
being sent when the bucket depth is exhausted, ranging from 0 to 65535,
measured in bytes.
"
DEFVAL { 0 }
::= { hh3cEponUniPortPolicyEntry 4 }
hh3cEponUniPortPolicyInboundCir OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The inbound committed information rate, measured in kbps.
"
::= { hh3cEponUniPortPolicyEntry 5 }
hh3cEponUniPortPolicyInboundBucketDepth OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The inbound depth of the token bucket to tolerant the certain burst(CBS),
ranging from 0 to 65535, measured in bytes.
"
DEFVAL { 0 }
::= { hh3cEponUniPortPolicyEntry 6 }
hh3cEponUniPortPolicyInboundExtraBurst OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The inbound extra token to permit the forwarding engine to finish the packet
being sent when the bucket depth is exhausted, ranging from 0 to 65535,
measured in bytes.
"
DEFVAL { 0 }
::= { hh3cEponUniPortPolicyEntry 7 }
hh3cEponUniPortPolicyOutboundCir OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The outbound committed information rate, stepped by 64, measured in kbps.
"
::= { hh3cEponUniPortPolicyEntry 8 }
hh3cEponUniPortPolicyOutboundPir OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The outbound peak information rate, stepped by 64, measured in kbps.
"
::= { hh3cEponUniPortPolicyEntry 9 }
--
-- hh3cEponUniMulticastTable
--
hh3cEponUniMulticastTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniMulticastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI multicast configuration.
"
::= { hh3cEponUniSysMan 7 }
hh3cEponUniMulticastEntry OBJECT-TYPE
SYNTAX Hh3cEponUniMulticastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of hh3cEponUniPortPolicyTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniMulticastTable 1 }
Hh3cEponUniMulticastEntry ::= SEQUENCE
{
hh3cEponUniMulticastGroupNumber Integer32,
hh3cEponUniMulticastVlanList OCTET STRING,
hh3cEponUniMulticastStripStatus INTEGER,
hh3cEponUniMulticastFastleave TruthValue
}
hh3cEponUniMulticastGroupNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The allowed multicast group number that can be handled
at the same time by UNI.
"
DEFVAL { 64 }
::= { hh3cEponUniMulticastEntry 1 }
hh3cEponUniMulticastVlanList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The multicast vlan list.
The first two octets of the string represent the first VLAN ID;
the second two octets of the string represent the second VLAN ID,
and so on. It is a zero length string by default.
"
::= { hh3cEponUniMulticastEntry 2 }
hh3cEponUniMulticastStripStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
true - strip the vlan tag of multicast packet.
false - does not strip the vlan tag of multicast packet.
"
DEFVAL { disable }
::= { hh3cEponUniMulticastEntry 3 }
hh3cEponUniMulticastFastleave OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
true(1) - fast leave of IGMP enable on ONU.
false(2) - fast leave of IGMP disable on ONU.
"
DEFVAL { false }
::= { hh3cEponUniMulticastEntry 4 }
--
-- hh3cEponUniTechAbilityTable
--
hh3cEponUniTechAbilityTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniTechAbilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI multicast configuration.
"
::= { hh3cEponUniSysMan 8 }
hh3cEponUniTechAbilityEntry OBJECT-TYPE
SYNTAX Hh3cEponUniTechAbilityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of hh3cEponUniTechAbilityTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniTechAbilityTable 1 }
Hh3cEponUniTechAbilityEntry ::= SEQUENCE
{
hh3cEponUniLocalTechAbility OCTET STRING,
hh3cEponUniAdvertisedTechAbility OCTET STRING
}
hh3cEponUniLocalTechAbility OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The local port capabilities of the UNI.
Each two octets stand for a capability of UNI:
the first two octets represent one capability and
the second two octets represent another capability,
and so on.
The capabilities list:
1 - undefined,
2 - initializing, true ability not yet known,
14 - 10BASE-T,
142 - full duplex 10BASE-T,
23 - 100BASE-T4,
25 - 100BASE-TX,
252 - full duplex 100BASE-TX,
312 - PAUSE operation for full duplex links,
313 - asymmetric PAUSE operation for full duplex links,
314 - symmetric PAUSE operation for full duplex links,
32 - 100BASE-T2,
322 - full duplex 100BASE-T2,
36 - 1000BASE-X,
362 - full duplex 1000BASE-X,
40 - 1000BASE-T UTP PHY,
402 - full duplex 1000BASE-T UTP PHY,
37 - remote fault bit 1(RF1),
372 - remote fault bit 2(RF2),
8029 - 802.9ISLAN-16T.
"
::= { hh3cEponUniTechAbilityEntry 1 }
hh3cEponUniAdvertisedTechAbility OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The advertised port capabilities of the UNI.
The capabilities list references the description of hh3cEponUniLocalTechAbility.
"
::= { hh3cEponUniTechAbilityEntry 2 }
--
-- hh3cEponUniMulticastControlTable
--
hh3cEponUniMulticastControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniMulticastControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI multicast control parameters.
"
::= { hh3cEponUniSysMan 9 }
hh3cEponUniMulticastControlEntry OBJECT-TYPE
SYNTAX Hh3cEponUniMulticastControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniMulticastControlTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex,
hh3cEponUniMulticastIndex
}
::= { hh3cEponUniMulticastControlTable 1 }
Hh3cEponUniMulticastControlEntry ::= SEQUENCE
{
hh3cEponUniMulticastVlanIndex Integer32,
hh3cEponUniMulticastAddressList OCTET STRING,
hh3cEponUniMulticastAccessRule INTEGER,
hh3cEponUniMulticastChannelLimit Integer32,
hh3cEponUniMulticastPreTimeSlice Integer32,
hh3cEponUniMulticastPreTimes Integer32,
hh3cEponUniMulticastPreInterval Integer32,
hh3cEponUniMulticastRowStatus RowStatus,
hh3cEponUniMulticastIndex INTEGER,
hh3cEponUniMulticastSourceIpList OCTET STRING,
hh3cEponUniMulticastResetInterval Integer32
}
hh3cEponUniMulticastVlanIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The multicast vlan ID.
"
::= { hh3cEponUniMulticastControlEntry 1 }
hh3cEponUniMulticastAddressList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The multicast address, each four octets represents a multicast address,
the address section ranging from the first four octets to the second
four octets, and the like.
"
::= { hh3cEponUniMulticastControlEntry 2 }
hh3cEponUniMulticastAccessRule OBJECT-TYPE
SYNTAX INTEGER
{
deny(1),
permit(2),
preview(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
deny - deny the multicast packet.
permit - permit the multicast packet.
preview - permit the multicast packet with conditions.
"
::= { hh3cEponUniMulticastControlEntry 3 }
hh3cEponUniMulticastChannelLimit OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The limitation of multicast preview channel number.
"
::= { hh3cEponUniMulticastControlEntry 4 }
hh3cEponUniMulticastPreTimeSlice OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The time slice of multicast preview.
"
::= { hh3cEponUniMulticastControlEntry 5 }
hh3cEponUniMulticastPreTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The number of multicast preview times.
"
::= { hh3cEponUniMulticastControlEntry 6 }
hh3cEponUniMulticastPreInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The interval between two consecutive previews, measured in minute.
"
::= { hh3cEponUniMulticastControlEntry 7 }
hh3cEponUniMulticastRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The status of this table entry. The active,
createAndGo and the destory statuses are supported.
"
::= { hh3cEponUniMulticastControlEntry 8 }
hh3cEponUniMulticastIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The index of the entry.
"
::= { hh3cEponUniMulticastControlEntry 9 }
hh3cEponUniMulticastSourceIpList OBJECT-TYPE
SYNTAX OCTET STRING(SIZE(0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
This list contains many source ip addresses.
Each ip address is contained in four octets.
"
::= { hh3cEponUniMulticastControlEntry 10 }
hh3cEponUniMulticastResetInterval OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The interval is measured in minute.
From the last preview limitation is reached, a customer can preview again
after this interval is expired.
"
::= { hh3cEponUniMulticastControlEntry 11 }
--
-- hh3cEponUniQosIndexNextTable
--
hh3cEponUniQosIndexNextTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniQosIndexNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The next index table.
"
::= { hh3cEponUniSysMan 10 }
hh3cEponUniQosIndexNextEntry OBJECT-TYPE
SYNTAX Hh3cEponUniQosIndexNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniQosIndexNextTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniQosIndexNextTable 1 }
Hh3cEponUniQosIndexNextEntry ::= SEQUENCE
{
hh3cEponUniQosConfIndexNext Integer32
}
hh3cEponUniQosConfIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This object contains an appropriate value to be used for
hh3cEponUniQosConfIndex when creating rows in the
hh3cEponUniQosConfTable.
"
::= { hh3cEponUniQosIndexNextEntry 1 }
--
-- hh3cEponUniQosConfTable
--
hh3cEponUniQosConfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniQosConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI Qos configuration.
"
::= { hh3cEponUniSysMan 11 }
hh3cEponUniQosConfEntry OBJECT-TYPE
SYNTAX Hh3cEponUniQosConfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniQosConfTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex,
hh3cEponUniQosConfIndex
}
::= { hh3cEponUniQosConfTable 1 }
Hh3cEponUniQosConfEntry ::= SEQUENCE
{
hh3cEponUniQosConfIndex Integer32,
hh3cEponUniQosConfRuleIndexNext Integer32,
hh3cEponUniQosConfMappedQueue Integer32,
hh3cEponUniQosConfMarkedPriority Integer32,
hh3cEponUniQosConfRowStatus RowStatus
}
hh3cEponUniQosConfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The rule index.
"
::= { hh3cEponUniQosConfEntry 1 }
hh3cEponUniQosConfRuleIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This object contains an appropriate value to be used for
hh3cEponUniQosRuleIndex when creating rows in the
hh3cEponUniQosRuleTable.
"
::= { hh3cEponUniQosConfEntry 2 }
hh3cEponUniQosConfMappedQueue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The queue that the ethernet frames will be mapped.
"
::= { hh3cEponUniQosConfEntry 3 }
hh3cEponUniQosConfMarkedPriority OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Priority of the ethernet frames to be marked, which
compliant with the 802.1D user priority standard.
"
::= { hh3cEponUniQosConfEntry 4 }
hh3cEponUniQosConfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The status of this table entry. The active,
createAndGo and the destory statuses are supported.
"
::= { hh3cEponUniQosConfEntry 5 }
--
-- hh3cEponUniQosRuleTable
--
hh3cEponUniQosRuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniQosRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Qos sub rule of the UNI.
"
::= { hh3cEponUniSysMan 12 }
hh3cEponUniQosRuleEntry OBJECT-TYPE
SYNTAX Hh3cEponUniQosRuleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniQosRuleTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex,
hh3cEponUniQosConfIndex,
hh3cEponUniQosRuleIndex
}
::= { hh3cEponUniQosRuleTable 1 }
Hh3cEponUniQosRuleEntry ::= SEQUENCE
{
hh3cEponUniQosRuleIndex Integer32,
hh3cEponUniQosRuleSelector INTEGER,
hh3cEponUniQosRuleValue Integer32,
hh3cEponUniQosRuleMacAddress MacAddress,
hh3cEponUniQosRuleOperator INTEGER,
hh3cEponUniQosRuleRowStatus RowStatus
}
hh3cEponUniQosRuleIndex OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The sub rule index.
"
::= { hh3cEponUniQosRuleEntry 1 }
hh3cEponUniQosRuleSelector OBJECT-TYPE
SYNTAX INTEGER
{
dstmac(1),
srcmac(2),
ethernetpriority(3),
vlanid(4),
ethernettype(5),
dstip(6),
srcip(7),
ipprototype(8),
ipv4tosdscp(9),
ipv6precedence(10),
srcport(11),
dstport(12)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The ethernet frame selector.
dstmac - based on destination MAC address.
srcmac - based on source MAC address.
ethernetpriority - based on ethernet priority.
vlanid - based on VLAN ID.
ethernettype - based on ethernet type.
dstip - based on destination IP address.
srcip - based on source IP address.
ipprototype - based on IP type(ipv4 or ipv6).
ipv4tosdscp - based on IP TOS/DSCP.
ipv6 - based IP precedence.
srcport - based on layer 4 source port.
dstport - based on layer 4 destination port.
"
::= { hh3cEponUniQosRuleEntry 2 }
hh3cEponUniQosRuleValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The rule value based on the hh3cEponUniQosRuleSelector.
"
::= { hh3cEponUniQosRuleEntry 3 }
hh3cEponUniQosRuleMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
MAC Address.
"
::= { hh3cEponUniQosRuleEntry 4 }
hh3cEponUniQosRuleOperator OBJECT-TYPE
SYNTAX INTEGER
{
nevermatch(1),
equal(2),
notequal(3),
lessthanequal(4),
greaterthanequal(5),
fieldexist(6),
fieldnotexist(7),
alwaysmatch(8)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
nervermatch - value never match.
equal - field equal to the value.
notequal - field not equal to the value.
lessthanequal - field less than or equal to the value.
greaterthanequal - field greater than or equal to the value.
fieldexist - value is ignored if field exists.
fieldnotexist - value is ignored if field does not exist.
alwaysmatch - value always match.
"
::= { hh3cEponUniQosRuleEntry 5 }
hh3cEponUniQosRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
The status of this table entry. Only active,
createAndGo and the destory are supported.
"
::= { hh3cEponUniQosRuleEntry 6 }
--
-- hh3cEponUniMirrorGroupTable
--
hh3cEponUniMirrorGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniMirrorGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Qos sub rule of the UNI.
"
::= { hh3cEponUniSysMan 13 }
hh3cEponUniMirrorGroupEntry OBJECT-TYPE
SYNTAX Hh3cEponUniMirrorGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the hh3cEponUniMirrorGroupTable.
"
INDEX
{
ifIndex,
hh3cEponUniMirrorGroupID
}
::= { hh3cEponUniMirrorGroupTable 1 }
Hh3cEponUniMirrorGroupEntry ::= SEQUENCE
{
hh3cEponUniMirrorGroupID Integer32,
hh3cEponUniMirrorInboundPortList OCTET STRING,
hh3cEponUniMirrorOutboundPortList OCTET STRING,
hh3cEponUniMonitorPort Integer32,
hh3cEponUniMirrorRowStatus RowStatus
}
hh3cEponUniMirrorGroupID OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Epon UNI mirror group ID."
::= { hh3cEponUniMirrorGroupEntry 1 }
hh3cEponUniMirrorInboundPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
UNI inbound port list.
Each octet within this value specifies a set of eight ports,
with the first octet specifying ports 1 through 8, the second
octet specifying ports 9 through 16, etc. Within each octet,
the most significant bit represents the highest numbered UNI,
and the least significant bit represents the lowest numbered UNI.
Thus, each UNI port is represented by a single bit within the
value of this object. If that bit has a value of '1' then that
port is allowed in the set of ports. the port is not allowed if
its bit has a value of '0'.
"
::= { hh3cEponUniMirrorGroupEntry 2 }
hh3cEponUniMirrorOutboundPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
UNI outbound port list. For more information, see hh3cEponUniMirrorInboundPortList.
"
::= { hh3cEponUniMirrorGroupEntry 3 }
hh3cEponUniMonitorPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
UNI monitor port.
"
::= { hh3cEponUniMirrorGroupEntry 4 }
hh3cEponUniMirrorRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
RowStatus, Now support three status: createAndGo, active, destroy.
"
::= { hh3cEponUniMirrorGroupEntry 5 }
--
-- hh3cEponUniMirrorGroupIdNextTable
--
hh3cEponUniMirrorGroupIdNextTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniMirrorGroupIdNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The next index table, which is used by hh3cEponUniMirrorGroupTable.
"
::= { hh3cEponUniSysMan 14 }
hh3cEponUniMirrorGroupIdNextEntry OBJECT-TYPE
SYNTAX Hh3cEponUniMirrorGroupIdNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniMirrorGroupIdNextEntry.
"
INDEX
{
ifIndex
}
::= { hh3cEponUniMirrorGroupIdNextTable 1 }
Hh3cEponUniMirrorGroupIdNextEntry ::= SEQUENCE
{
hh3cEponUniMirrorGroupIDNext Integer32
}
hh3cEponUniMirrorGroupIDNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This object contains an appropriate value to be used for
hh3cEponUniMirrorGroupID when creating rows in the
hh3cEponUniMirrorGroupTable.
"
::= { hh3cEponUniMirrorGroupIdNextEntry 1 }
--
-- hh3cEponUniMulticastCtrlInfoTable
--
hh3cEponUniMulticastCtrlInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniMulticastCtrlInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
UNI multicast information which is active .
"
::= { hh3cEponUniSysMan 15 }
hh3cEponUniMulticastCtrlInfoEntry OBJECT-TYPE
SYNTAX Hh3cEponUniMulticastCtrlInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniMulticastCtrlInfoTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex,
hh3cEponUniMultActVlan,
hh3cEponUniMultActAddress
}
::= { hh3cEponUniMulticastCtrlInfoTable 1 }
Hh3cEponUniMulticastCtrlInfoEntry ::= SEQUENCE
{
hh3cEponUniMultActVlan Integer32,
hh3cEponUniMultActAddress IpAddress,
hh3cEponUniMultActAccessRule INTEGER,
hh3cEponUniMultActPreTimes Integer32,
hh3cEponUniMultActPreRemain Integer32
}
hh3cEponUniMultActVlan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The multicast vlan ID which is active.
"
::= { hh3cEponUniMulticastCtrlInfoEntry 1 }
hh3cEponUniMultActAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The multicast address which is active.
"
::= { hh3cEponUniMulticastCtrlInfoEntry 2 }
hh3cEponUniMultActAccessRule OBJECT-TYPE
SYNTAX INTEGER
{
deny(1),
permit(2),
preview(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
deny - deny the multicast packet.
permit - permit the multicast packet.
preview - permit the multicast packet with conditions.
"
::= { hh3cEponUniMulticastCtrlInfoEntry 3 }
hh3cEponUniMultActPreTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The number of multicast preview times which is active.
"
::= { hh3cEponUniMulticastCtrlInfoEntry 4 }
hh3cEponUniMultActPreRemain OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The remanent time slice of multicast preview which is active.
"
::= { hh3cEponUniMulticastCtrlInfoEntry 5 }
--
-- hh3cEponUniMulticastIndexNextTable
--
hh3cEponUniMulticastIndexNextTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponUniMulticastIndexNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The next index table, which is used by hh3cEponUniMulticastControlTable.
"
::= { hh3cEponUniSysMan 16 }
hh3cEponUniMulticastIndexNextEntry OBJECT-TYPE
SYNTAX Hh3cEponUniMulticastIndexNextEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEponUniMulticastIndexNextEntry.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cEponUniMulticastIndexNextTable 1 }
Hh3cEponUniMulticastIndexNextEntry ::= SEQUENCE
{
hh3cEponUniMulticastConfIndexNext Integer32
}
hh3cEponUniMulticastConfIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
This object contains an appropriate value to be used for
hh3cEponUniMulticastIndex when creating rows in the
hh3cEponUniMulticastControlTable.
"
::= { hh3cEponUniMulticastIndexNextEntry 1 }
--
-- hh3cEponCTCAlarmTable
--
hh3cEponCTCAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEponCTCAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table is used for setting CTC alarm of an ONU.
"
::= { hh3cEponUniSysMan 17 }
hh3cEponCTCAlarmEntry OBJECT-TYPE
SYNTAX Hh3cEponCTCAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the hh3cEponCTCAlarmTable.
"
INDEX
{
ifIndex,
hh3cEponCTCAlarmID
}
::= { hh3cEponCTCAlarmTable 1 }
Hh3cEponCTCAlarmEntry ::= SEQUENCE
{
hh3cEponCTCAlarmID INTEGER,
hh3cEponCTCAlarmProtocol INTEGER,
hh3cEponCTCAlarmEnable TruthValue,
hh3cEponCTCAlarmTriggerThresVal OCTET STRING,
hh3cEponCTCAlarmClearThresVal OCTET STRING
}
hh3cEponCTCAlarmID OBJECT-TYPE
SYNTAX INTEGER
{
-- ONU alarm ID
onuEquipmentAlarm(1),
onuPowerAlarm(2),
onuBatteryMissing(3),
onuBatteryFailure(4),
onuBatteryVoltLow(5),
onuPhysicalIntrusionAlarm(6),
onuONUSelfTestFailure(7),
onuONUTempHighAlarm(9),
onuONUTempLowAlarm(10),
onuIADConnectionFailure(11),
onuPonIFSwitch(12),
onuSleepStatusUpdate(13),
-- PON alarm ID
ponRXPowerHighAlarm(257),
ponRXPowerLowAlarm(258),
ponTXPowerHighAlarm(259),
ponTXPowerLowAlarm(260),
ponTXBiasHighAlarm(261),
ponTXBiasLowAlarm(262),
ponVccHighAlarm(263),
ponVccLowAlarm(264),
ponTempHighAlarm(265),
ponTempLowAlarm(266),
ponRXPowerHighWarning(267),
ponRXPowerLowWarning(268),
ponTXPowerHighWarning(269),
ponTXPowerLowWarning(270),
ponTXBiasHighWarning(271),
ponTXBiasLowWarning(272),
ponVccHighWarning(273),
ponVccLowWarning(274),
ponTempHighWarning(275),
ponTempLowWarning(276),
ponDownstreamDropEventsAlarm(277),
ponUpstreamDropEventsAlarm(278),
ponDownstreamCRCErrorFramesAlarm(279),
ponUpstreamCRCErrorFramesAlarm(280),
ponDownstreamUndersizeFramesAlarm(281),
ponUpstreamUndersizeFramesAlarm(282),
ponDownstreamOversizeFramesAlarm(283),
ponUpstreamOversizeFramesAlarm(284),
ponDownstreamFragmentsAlarm(285),
ponUpstreamFragmentsAlarm(286),
ponDownstreamJabbersAlarm(287),
ponUpstreamJabbersAlarm(288),
ponDownstreamDiscardsAlarm(289),
ponUpstreamDiscardsAlarm(290),
ponDownstreamErrorsAlarm(291),
ponUpstreamErrorsAlarm(292),
ponDownstreamDropEventsWarning(293),
ponUpstreamDropEventsWarning(294),
ponDownstreamCRCErrorFramesWarning(295),
ponUpstreamCRCErrorFramesWarning(296),
ponDownstreamUndersizeFramesWarning(297),
ponUpstreamUndersizeFramesWarning(298),
ponDownstreamOversizeFramesWarning(299),
ponUpstreamOversizeFramesWarning(300),
ponDownstreamFragmentsWarning(301),
ponUpstreamFragmentsWarning(302),
ponDownstreamJabbersWarning(303),
ponUpstreamJabbersWarning(304),
ponDownstreamDiscardsWarning(305),
ponUpstreamDiscardsWarning(306),
ponDownstreamErrorsWarning(307),
ponUpstreamErrorsWarning(308),
-- UNI alarm ID
uniEthPortAutoNegFailure(769),
uniEthPortLOS(770),
uniEthPortFailure(771),
uniEthPortLoopback(772),
uniEthPortCongestion(773),
uniDownstreamDropEventsAlarm(774),
uniUpstreamDropEventsAlarm(775),
uniDownstreamCRCErrorFramesAlarm(776),
uniUpstreamCRCErrorFramesAlarm(777),
uniDownstreamUndersizeFramesAlarm(778),
uniUpstreamUndersizeFramesAlarm(779),
uniDownstreamOversizeFramesAlarm(780),
uniUpstreamOversizeFramesAlarm(781),
uniDownstreamFragmentsAlarm(782),
uniUpstreamFragmentsAlarm(783),
uniDownstreamJabbersAlarm(784),
uniUpstreamJabbersAlarm(785),
uniDownstreamDiscardsAlarm(786),
uniUpstreamDiscardsAlarm(787),
uniDownstreamErrorsAlarm(788),
uniUpstreamErrorsAlarm(789),
uniStatusChangeTimesAlarm(790),
uniDownstreamDropEventsWarning(791),
uniUpstreamDropEventsWarning(792),
uniDownstreamCRCErrorFramesWarning(793),
uniUpstreamCRCErrorFramesWarning(794),
uniDownstreamUndersizeFramesWarning(795),
uniUpstreamUndersizeFramesWarning(796),
uniDownstreamOversizeFramesWarning(797),
uniUpstreamOversizeFramesWarning(798),
uniDownstreamFragmentsWarning(799),
uniUpstreamFragmentsWarning(800),
uniDownstreamJabbersWarning(801),
uniUpstreamJabbersWarning(802),
uniDownstreamDiscardsWarning(803),
uniUpstreamDiscardsWarning(804),
uniDownstreamErrorsWarning(805),
uniUpstreamErrorsWarning(806),
uniStatusChangeTimesWarning(807),
uniPOTSPortFailure(1025),
uniE1PortFailure(1281),
uniE1TimingUnlock(1282),
uniE1LOS(1283)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The CTC alarm ID. There are 3 types of CTC alarms.
ONU alarm: 0x0001~0x00ff
PON alarm: 0x0101~0x01ff
UNI alarm: 0x0301~0x05ff
"
::= { hh3cEponCTCAlarmEntry 1 }
hh3cEponCTCAlarmProtocol OBJECT-TYPE
SYNTAX INTEGER
{
auto(0),
ctc21(33),
ctc30(48)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Choose a CTC protocol to set CTC alarm of an ONU.
auto(0) - Automatically select a CTC protocol.
ctc21(33) - Use CTC2.1 protocol.
ctc30(48) - Use CTC3.0 or later protocols.
"
DEFVAL { auto }
::= { hh3cEponCTCAlarmEntry 2 }
hh3cEponCTCAlarmEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Enable or disable a CTC alarm of an ONU.
true(1) - alarm enable.
false(2) - alarm disable.
"
::= { hh3cEponCTCAlarmEntry 3 }
hh3cEponCTCAlarmTriggerThresVal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Trigger threshold value of a CTC alarm on an ONU.
For different CTC alarms, there are different units(dBm, mA, V, C).
"
::= { hh3cEponCTCAlarmEntry 4 }
hh3cEponCTCAlarmClearThresVal OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Clear threshold value of a CTC alarm on an ONU.
For different CTC alarms, there are different units(dBm, mA, V, C).
"
::= { hh3cEponCTCAlarmEntry 5 }
hh3cEponUniErrorInfo OBJECT IDENTIFIER ::= { hh3cEponUniSysMan 18 }
hh3cEponCTCAlarmInfo OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"
The information of an ONU CTC alarm.
"
::= { hh3cEponUniErrorInfo 1 }
--
-- hh3cUniStatisticsTable
--
hh3cUniStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cUniStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table is used for enabling or disabling statistics and setting period of a UNI.
"
::= { hh3cEponUniSysMan 19 }
hh3cUniStatisticsEntry OBJECT-TYPE
SYNTAX Hh3cUniStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the hh3cUniStatisticsTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cUniStatisticsTable 1 }
Hh3cUniStatisticsEntry ::= SEQUENCE
{
hh3cUniStatisticsPeriodVal Unsigned32,
hh3cUniStatisticsEnable TruthValue
}
hh3cUniStatisticsPeriodVal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
UNI statistics period value.
"
::= { hh3cUniStatisticsEntry 1 }
hh3cUniStatisticsEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Enable or disable statistics of an UNI.
true(1) - statistics enable.
false(2) - statistics disable.
"
::= { hh3cUniStatisticsEntry 2 }
--
-- hh3cUniPoeTable
--
hh3cUniPoeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cUniPoeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table is used for configuring the PoE function for UNIs.
"
::= { hh3cEponUniSysMan 20 }
hh3cUniPoeEntry OBJECT-TYPE
SYNTAX Hh3cUniPoeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the hh3cUniPoeTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cUniPoeTable 1 }
Hh3cUniPoeEntry ::= SEQUENCE
{
hh3cUniPoeEnable TruthValue,
hh3cUniPoeMode INTEGER,
hh3cUniPoePriority INTEGER,
hh3cUniPoeMaxPowerClass INTEGER,
hh3cUniPoeMaxPowerValue Integer32,
hh3cUniPoeLegacyEnable TruthValue
}
hh3cUniPoeEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Enable PoE for an UNI.
"
DEFVAL { false }
::= { hh3cUniPoeEntry 1 }
hh3cUniPoeMode OBJECT-TYPE
SYNTAX INTEGER
{
signal(0),
spare(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Set the PoE mode for an UNI.
"
DEFVAL { 0 }
::= { hh3cUniPoeEntry 2 }
hh3cUniPoePriority OBJECT-TYPE
SYNTAX INTEGER
{
high(0),
critical(1),
low(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Set the PoE priority for an UNI.
"
DEFVAL { 0 }
::= { hh3cUniPoeEntry 3 }
hh3cUniPoeMaxPowerClass OBJECT-TYPE
SYNTAX INTEGER
{
default(0),
class0(1),
class1(2),
class2(3),
class3(4),
class4(5),
undefined(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Set the PoE max power class for an UNI.
"
DEFVAL { 0 }
::= { hh3cUniPoeEntry 4 }
hh3cUniPoeMaxPowerValue OBJECT-TYPE
SYNTAX Integer32
UNITS "mW"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Set the PoE max power value for an UNI.
"
DEFVAL { 0 }
::= { hh3cUniPoeEntry 5 }
hh3cUniPoeLegacyEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Enable PoE legacy PD detection for an UNI.
"
::= { hh3cUniPoeEntry 6 }
--
-- hh3cUniPoeInfoTable
--
hh3cUniPoeInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cUniPoeInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table is used for getting UNIs' PoE information.
"
::= { hh3cEponUniSysMan 21 }
hh3cUniPoeInfoEntry OBJECT-TYPE
SYNTAX Hh3cUniPoeInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the hh3cUniPoeInfoTable.
"
INDEX
{
ifIndex,
hh3cEponUniIndex
}
::= { hh3cUniPoeInfoTable 1 }
Hh3cUniPoeInfoEntry ::= SEQUENCE
{
hh3cUniPoeInfoCapability INTEGER,
hh3cUniPoeInfoEnable TruthValue,
hh3cUniPoeInfoLegacyEnable TruthValue,
hh3cUniPoeInfoMode INTEGER,
hh3cUniPoeInfoPriority INTEGER,
hh3cUniPoeInfoMaxPwrClass INTEGER,
hh3cUniPoeInfoMaxPwrValue Integer32,
hh3cUniPoeInfoPdClass INTEGER,
hh3cUniPoeInfoPwrSuppStat INTEGER,
hh3cUniPoeInfoSignalErrCnt Integer32,
hh3cUniPoeInfoPwrDeniedCnt Integer32,
hh3cUniPoeInfoPwrOverCnt Integer32,
hh3cUniPoeInfoCurOverCnt Integer32,
hh3cUniPoeInfoPdUndetectCnt Integer32,
hh3cUniPoeInfoMaxPower Integer32,
hh3cUniPoeInfoCurOutputPwr Integer32,
hh3cUniPoeInfoAvgOutputPwr Integer32,
hh3cUniPoeInfoPeakOutputPwr Integer32
}
hh3cUniPoeInfoCapability OBJECT-TYPE
SYNTAX INTEGER
{
incapable(0),
capable(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE capability.
"
::= { hh3cUniPoeInfoEntry 1 }
hh3cUniPoeInfoEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE enabling status.
"
::= { hh3cUniPoeInfoEntry 2 }
hh3cUniPoeInfoLegacyEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE legacy PD detection enabling status.
"
DEFVAL { 0 }
::= { hh3cUniPoeInfoEntry 3 }
hh3cUniPoeInfoMode OBJECT-TYPE
SYNTAX INTEGER
{
signal(0),
spare(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE mode.
"
::= { hh3cUniPoeInfoEntry 4 }
hh3cUniPoeInfoPriority OBJECT-TYPE
SYNTAX INTEGER
{
high(0),
critical(1),
low(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE priority.
"
::= { hh3cUniPoeInfoEntry 5 }
hh3cUniPoeInfoMaxPwrClass OBJECT-TYPE
SYNTAX INTEGER
{
default(0),
class0(1),
class1(2),
class2(3),
class3(4),
class4(5),
undefined(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE max power class.
"
::= { hh3cUniPoeInfoEntry 6 }
hh3cUniPoeInfoMaxPwrValue OBJECT-TYPE
SYNTAX Integer32
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE max power value.
"
::= { hh3cUniPoeInfoEntry 7 }
hh3cUniPoeInfoPdClass OBJECT-TYPE
SYNTAX INTEGER
{
default(0),
class0(1),
class1(2),
class2(3),
class3(4),
class4(5),
undefined(255)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE powered device class.
"
::= { hh3cUniPoeInfoEntry 8 }
hh3cUniPoeInfoPwrSuppStat OBJECT-TYPE
SYNTAX INTEGER
{
noNeed(0),
searching(1),
power(2),
force(3),
forceFailed(4),
powerFailed(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE power supply status.
"
::= { hh3cUniPoeInfoEntry 9 }
hh3cUniPoeInfoSignalErrCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE signal error count.
"
::= { hh3cUniPoeInfoEntry 10 }
hh3cUniPoeInfoPwrDeniedCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE power denied count.
"
::= { hh3cUniPoeInfoEntry 11 }
hh3cUniPoeInfoPwrOverCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE power overload count.
"
::= { hh3cUniPoeInfoEntry 12 }
hh3cUniPoeInfoCurOverCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE current overload count.
"
::= { hh3cUniPoeInfoEntry 13 }
hh3cUniPoeInfoPdUndetectCnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE powered device undetected count.
"
::= { hh3cUniPoeInfoEntry 14 }
hh3cUniPoeInfoMaxPower OBJECT-TYPE
SYNTAX Integer32
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE max power.
"
::= { hh3cUniPoeInfoEntry 15 }
hh3cUniPoeInfoCurOutputPwr OBJECT-TYPE
SYNTAX Integer32
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE current output power.
"
::= { hh3cUniPoeInfoEntry 16 }
hh3cUniPoeInfoAvgOutputPwr OBJECT-TYPE
SYNTAX Integer32
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE average output power.
"
::= { hh3cUniPoeInfoEntry 17 }
hh3cUniPoeInfoPeakOutputPwr OBJECT-TYPE
SYNTAX Integer32
UNITS "mW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
UNI PoE peak output power.
"
::= { hh3cUniPoeInfoEntry 18 }
--
-- hh3cEponUni NOTIFICATION
--
hh3cEponUniTrap OBJECT IDENTIFIER ::= { hh3cEponUni 2 }
hh3cEponUniTrapPrefix OBJECT IDENTIFIER ::= { hh3cEponUniTrap 0 }
hh3cEponUniLinkUpTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEponUniIndex,
hh3cEponUniDescr,
hh3cEponUniAdminStatus
}
STATUS current
DESCRIPTION
"
A hh3cEponUniLinkUpTrap notification is sent
when the UNI up event is detected
and the transmitting switch is turned on.
"
::= { hh3cEponUniTrapPrefix 1 }
hh3cEponUniLinkDownTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEponUniIndex,
hh3cEponUniDescr,
hh3cEponUniAdminStatus
}
STATUS current
DESCRIPTION
"
A hh3cEponUniLinkDownTrap notification is sent
when the UNI down event is detected
and the transmitting switch is turned on.
"
::= { hh3cEponUniTrapPrefix 2 }
hh3cEponUniLoopBackDetectedTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEponUniIndex,
hh3cEponUniDescr,
hh3cEponUniVlan
}
STATUS current
DESCRIPTION
"
A hh3cEponUniLoopBackDetectedTrap notification is sent
when the UNI loopback event is detected.
"
::= { hh3cEponUniTrapPrefix 3 }
hh3cEponUniLoopBackRecoveredTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEponUniIndex,
hh3cEponUniDescr,
hh3cEponUniVlan
}
STATUS current
DESCRIPTION
"
A hh3cEponUniLoopBackRecoveredTrap notification is sent
when the UNI loopback is recovered.
"
::= { hh3cEponUniTrapPrefix 4 }
hh3cEponCTCAlarmTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEponCTCAlarmID,
hh3cEponUniIndex,
hh3cEponUniDescr,
hh3cEponCTCAlarmInfo
}
STATUS current
DESCRIPTION
"
A hh3cEponCTCAlarmTrap notification is sent
when an ONU CTC alarm is detected.
"
::= { hh3cEponUniTrapPrefix 5 }
hh3cEponCTCAlarmRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEponCTCAlarmID,
hh3cEponUniIndex,
hh3cEponUniDescr,
hh3cEponCTCAlarmInfo
}
STATUS current
DESCRIPTION
"
A hh3cEponCTCAlarmRecoverTrap notification is sent
when an ONU CTC alarm is cleared.
"
::= { hh3cEponUniTrapPrefix 6 }
END
|