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
|
-- =================================================================
-- Copyright (c) 2004-2014 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description:
-- Reference:
-- Version: V1.7
-- History:
-- V1.0 created by liujingya.
-- Initial version of the MIB
-- V1.1 2008-1-29 Adjusted the structure of some tables and the value of
-- some objects by liujingya.
-- V1.2 2008-5-19 Added hh3cEOCComUniAdminStatus, hh3cEOCComCnuSoftwareVersion,
-- modified description of hh3cEOCComUniUpLineRate and
-- hh3cEOCComUniDownLineRate by liujingya.
-- V1.3 2008-7-30 updated by xujun
-- add hh3cEOCComCnuRateDropThr, hh3cEOCComCnuTxRate, hh3cEOCComCnuRxRate,
-- hh3cEOCComCnuTxRateDrop, hh3cEOCComCnuRxRateDrop, hh3cEOCCnuTxRateDropTrap,
-- hh3cEOCCnuTxRateDropRecoverTrap, hh3cEOCCnuRxRateDropTrap and
-- hh3cEOCCnuRxRateDropRecoverTrap by xujun
-- V1.4 2009-2-13 Added hh3cEOCCnuFWDownLoadErrTrap,
-- hh3cEOCCnuFWDownLoadErrReTrap, hh3cEOCCnuDeviceTypeErrTrap,
-- hh3cEOCCnuDeviceTypeErrReTrap, hh3cEOCCnuAutoUpdateErrTrap,
-- hh3cEOCCnuAutoUpdateSuccTrap and
-- modified MAX-ACCESS of hh3cEOCComCnuDeviceType by liujingya.
-- V1.5 2010-1-7 Added hh3cEocComCnuTypeIdx, hh3cEOCComCnuDescripton,
-- hh3cEOCComCltMaxAllowToAccess, hh3cEocComCnuNumber by xujun
-- V1.6 2011-12-28 updated by gaoguangping
-- Added hh3cEOCLoopbackDetectTrap, hh3cEOCLoopbackRecoverTrap;
-- Modified hh3cEOCComCnuLinkState.
-- V1.7 2013-08-20 Added hh3cEOCComCnuTempIndex by xujun
-- =================================================================
HH3C-EOC-COMMON-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
ifIndex, ifDescr
FROM IF-MIB
Integer32, Unsigned32, TimeTicks, OBJECT-TYPE, MODULE-IDENTITY,
NOTIFICATION-TYPE, Gauge32
FROM SNMPv2-SMI
IANAifType
FROM IANAifType-MIB
MacAddress, RowStatus, DisplayString, TruthValue
FROM SNMPv2-TC
hh3cHPEOCDownLoadCNUFWResult
FROM HH3C-HPEOC-MIB;
hh3cEOCCommon MODULE-IDENTITY
LAST-UPDATED "200709111008Z"
ORGANIZATION
"New H3C Tech. Co., Ltd."
CONTACT-INFO
"SMB EOC Team New H3C Technologies Co., Ltd.
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:310053."
DESCRIPTION
"
The objects in this MIB module are used to manage and
display common configuration between Ethernet Passive
Optical Network (EOC) port which are based on the Ethernet
in the First Mile (EFM) Passive Optical Network(PON) as
defined in IEEE Draft P802.3ah/D3.0 clause 60, 64, 65..
and Ethernet Over Cable (EOC) which is based on HomePlug
AV Specification.
"
::= { hh3cCommon 83 }
--
-- hh3cEOCCommonSysMan
--
hh3cEOCCommonSysMan OBJECT IDENTIFIER ::= { hh3cEOCCommon 1 }
hh3cEOCCommonSysScalarObjects OBJECT IDENTIFIER ::= { hh3cEOCCommonSysMan 1 }
hh3cEOCCommonSysVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Eoc version. If the object length is
zero, it means the version is unknown.
The length is up to 1024.
"
::= { hh3cEOCCommonSysScalarObjects 1 }
hh3cEOCCommonUpLinkMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
EOC CLT's uplink device's mac address.
"
::= { hh3cEOCCommonSysScalarObjects 2 }
--
-- hh3cEOCCommonCltMan
--
hh3cEOCCommonCltMan OBJECT IDENTIFIER ::= { hh3cEOCCommon 2 }
--
-- hh3cEOCCommonCltManTable
--
hh3cEOCCommonCltManTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCCommonCltManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table defines the primary parameters of the
CLT configuration.
"
::= { hh3cEOCCommonCltMan 1 }
hh3cEOCCommonCltManEntry OBJECT-TYPE
SYNTAX Hh3cEOCCommonCltManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEOCCommonCltManTable.
"
INDEX
{
ifIndex
}
::= { hh3cEOCCommonCltManTable 1 }
Hh3cEOCCommonCltManEntry ::= SEQUENCE
{
hh3cEOCCommonCltAutoAuthorize TruthValue,
hh3cEOCCommonCltMaxAllowToAccess Integer32
}
hh3cEOCCommonCltAutoAuthorize OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This value determines whether software performs
self-authorization for each Cable Network Unit(CNU)
registering to the network. Setting it to false
means for every CNU registering, software requires
external authorization, and until it's done the
CNU is not authenticated. True value means software
authorizes each CNU registering to the network
automatically.
"
DEFVAL
{
false
}
::= { hh3cEOCCommonCltManEntry 1 }
hh3cEOCCommonCltMaxAllowToAccess OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This value determines how many CNU can be bound
in this CLT. If the number of CNU is more than this
value , then the rest of CNU should not be allow to
access.
"
DEFVAL
{
253
}
::= { hh3cEOCCommonCltManEntry 2 }
--
-- hh3cEOCComCnuMan
--
hh3cEOCComCnuMan OBJECT IDENTIFIER ::= { hh3cEOCCommon 3 }
hh3cEOCComCnuScalarObjects OBJECT IDENTIFIER ::= { hh3cEOCComCnuMan 1 }
hh3cEOCComCnuMaxDownBWMinVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The lower limit of total-bandwidth which is confined to
hh3cEOCComCnuMaxDownBW."
::= { hh3cEOCComCnuScalarObjects 1 }
hh3cEOCComCnuMaxDownBWMaxVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The upper limit of total-bandwidth which is confined to
hh3cEOCComCnuMaxDownBW."
::= { hh3cEOCComCnuScalarObjects 2 }
hh3cEOCComCnuSlaHighPriBWMinVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The lower limit of high priority bandwidth which is confined to
hh3cEOCComCnuSlaHighPriBW."
::= { hh3cEOCComCnuScalarObjects 3 }
hh3cEOCComCnuSlaHighPriBWMaxVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The upper limit of high priority bandwidth which is confined to
hh3cEOCComCnuSlaHighPriBW."
::= { hh3cEOCComCnuScalarObjects 4 }
hh3cEOCComCnuMaxUpBWMinVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The lower limit of total-bandwidth which is confined to
hh3cEOCComCnuMaxUpBW."
::= { hh3cEOCComCnuScalarObjects 5 }
hh3cEOCComCnuMaxUpBWMaxVal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The upper limit of total-bandwidth which is confined to
hh3cEOCComCnuMaxUpBW."
::= { hh3cEOCComCnuScalarObjects 6 }
hh3cEOCComCnuAttenThrA OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The value of cnu's average attenuation good level thresholds.
"
::= { hh3cEOCComCnuScalarObjects 7 }
hh3cEOCComCnuAttenThrB OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The value of cnu's average attenuation normal level thresholds.
"
::= { hh3cEOCComCnuScalarObjects 8 }
hh3cEOCComCnuRateDropThr OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The value of cnu's Tx/Rx rate drop thresholds.
"
::= { hh3cEOCComCnuScalarObjects 9 }
--
-- hh3cEOCComCnuSysManTable
--
hh3cEOCComCnuSysManTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComCnuSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table implements the management of CNUs(Coax Network Unit).
"
::= { hh3cEOCComCnuMan 2 }
hh3cEOCComCnuSysManEntry OBJECT-TYPE
SYNTAX Hh3cEOCComCnuSysManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEOCComCnuSysManTable.
"
INDEX
{
ifIndex
}
::= { hh3cEOCComCnuSysManTable 1 }
Hh3cEOCComCnuSysManEntry ::= SEQUENCE
{
hh3cEOCComCnuCableIfindex Integer32,
hh3cEOCComCnuDeviceType DisplayString,
hh3cEOCComCnuDeviceAlias DisplayString,
hh3cEOCComCnuDescr DisplayString,
hh3cEOCComCnuUpTime TimeTicks,
hh3cEOCComCnuVLANType INTEGER,
hh3cEOCComCnuPvid Integer32,
hh3cEOCComCnuVlanTag INTEGER,
hh3cEOCComCnuReset INTEGER,
hh3cEOCComCnuDeregister INTEGER,
hh3cEOCComCnuSave INTEGER,
hh3cEOCComCnuAccess INTEGER
}
hh3cEOCComCnuCableIfindex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The index of cable port which uniquely identifies the cable
port of one device.
"
::= { hh3cEOCComCnuSysManEntry 1 }
hh3cEOCComCnuDeviceType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The type of the EOC CNU(Coax Network Unit).
"
::= { hh3cEOCComCnuSysManEntry 2 }
hh3cEOCComCnuDeviceAlias OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
EOC CNU's alias which display as the device's name,
it's recommended to set it uniquely and understandably.
"
::= { hh3cEOCComCnuSysManEntry 3 }
hh3cEOCComCnuDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
User's description, including user's address,
name, telephone number and so on.
"
::= { hh3cEOCComCnuSysManEntry 4 }
hh3cEOCComCnuUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The time since the CNU last registered to the network.
"
::= { hh3cEOCComCnuSysManEntry 5 }
hh3cEOCComCnuVLANType OBJECT-TYPE
SYNTAX INTEGER
{
vLANTrunk(1),
access(2),
hybrid(3),
fabric(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"port vlan types.
hybrid (3) port can carry multiple VLANs.
If fabric function is supported, fabric(4) means the port is
a fabric port."
::= { hh3cEOCComCnuSysManEntry 6 }
hh3cEOCComCnuPvid OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The PVID, the VLAN ID assigned to untagged frames or
Priority-Tagged frames received on cable interface.
"
REFERENCE
"
IEEE 802.1Q/D11 Section 12.10.1.1
"
DEFVAL
{
1
}
::= { hh3cEOCComCnuSysManEntry 7 }
hh3cEOCComCnuVlanTag OBJECT-TYPE
SYNTAX INTEGER
{
tagged(1),
untagged(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
VLAN is set tagged or untagged on cable interface.
"
::= { hh3cEOCComCnuSysManEntry 8 }
hh3cEOCComCnuReset OBJECT-TYPE
SYNTAX INTEGER
{
running(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This variable is used to reset the CNU device. The
interface may be unavailable while the reset occurs and
data may be lost. During reading operation it returns
the state of the CNU device. running(1) indicates and
operates normal operation, reset(2) indicates and
operates reset mode. Writing can be done all the time.
"
::= { hh3cEOCComCnuSysManEntry 9 }
hh3cEOCComCnuDeregister OBJECT-TYPE
SYNTAX INTEGER
{
deregister(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
deregister CNU.
"
::= { hh3cEOCComCnuSysManEntry 10 }
hh3cEOCComCnuSave OBJECT-TYPE
SYNTAX INTEGER
{
save(1),
running(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Save the UNI and CNU related configurations to
the CNU.
"
::= { hh3cEOCComCnuSysManEntry 11 }
hh3cEOCComCnuAccess OBJECT-TYPE
SYNTAX INTEGER
{
access(1),
notaccess(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Control whether the user can access to the network.
"
::= { hh3cEOCComCnuSysManEntry 12 }
--
-- hh3cEOCComCnuMacTable
--
hh3cEOCComCnuMacTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComCnuMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table implements the management of CNUs.
"
::= { hh3cEOCComCnuMan 3 }
hh3cEOCComCnuMacEntry OBJECT-TYPE
SYNTAX Hh3cEOCComCnuMacEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEOCComCnuMacTable.
"
INDEX
{
ifIndex
}
::= { hh3cEOCComCnuMacTable 1 }
Hh3cEOCComCnuMacEntry ::= SEQUENCE
{
hh3cEOCComCnuMacAddress MacAddress,
hh3cEOCComCnuRowStatus RowStatus,
hh3cEOCComCnuTempIndex Integer32
}
hh3cEOCComCnuMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
EOC CNU's MAC address.
"
::= { hh3cEOCComCnuMacEntry 1 }
hh3cEOCComCnuRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"
Operation status.
"
::= { hh3cEOCComCnuMacEntry 2 }
hh3cEOCComCnuTempIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
EOC CNU's model index from hh3cHPEOCTemplateIndex,
If configure 0, the CNU select no model.
"
::= { hh3cEOCComCnuMacEntry 3 }
--
-- hh3cEOCComCnuInfoTable
--
hh3cEOCComCnuInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComCnuInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Primary status of the specified CNU.
There will be one row in this table for each
information in the system.
"
::= { hh3cEOCComCnuMan 4 }
hh3cEOCComCnuInfoEntry OBJECT-TYPE
SYNTAX Hh3cEOCComCnuInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the hh3cEOCComCnuInfoTable.
"
INDEX
{
ifIndex
}
::= { hh3cEOCComCnuInfoTable 1 }
Hh3cEOCComCnuInfoEntry ::= SEQUENCE
{
hh3cEOCComCnuHardwareVersion DisplayString,
hh3cEOCComCnuPCBVersion OCTET STRING,
hh3cEOCComCnuLinkState INTEGER,
hh3cEOCComCnuAttenuation Integer32,
hh3cEOCComCnuSoftwareVersion DisplayString,
hh3cEOCComCnuTxRate Integer32,
hh3cEOCComCnuRxRate Integer32,
hh3cEOCComCnuTxRateDrop Integer32,
hh3cEOCComCnuRxRateDrop Integer32
}
hh3cEOCComCnuHardwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
EOC CNU's hardware version. If the object length is
zero, it means the version is unknown.
"
::= { hh3cEOCComCnuInfoEntry 1 }
hh3cEOCComCnuPCBVersion OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
EOC CNU's PCB version.
"
::= { hh3cEOCComCnuInfoEntry 2 }
hh3cEOCComCnuLinkState OBJECT-TYPE
SYNTAX INTEGER
{
physicaldown(1),
linkdown(2),
linkup(3),
loopback(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The cable port's link state. The physicaldown(1) state indicates
that the CNU is not powered on. The linkdown(2) state indicates
that the CNU is powered on, but registers fail. The linkup(3)
state indicates that the CNU is powered on, and registers
successful. The loopback(4) state indecates that the CNU is
powered on and registers successful, but loopback has detected.
"
::= { hh3cEOCComCnuInfoEntry 3 }
hh3cEOCComCnuAttenuation OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The cnu's average attenuation.
"
::= { hh3cEOCComCnuInfoEntry 4 }
hh3cEOCComCnuSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
EOC CNU's software version. If the object length is
zero, it means the version is unknown.
"
::= { hh3cEOCComCnuInfoEntry 5 }
hh3cEOCComCnuTxRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The cnu's capability of tx speed in unit of 1Mbps.
"
::= { hh3cEOCComCnuInfoEntry 6 }
hh3cEOCComCnuRxRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The cnu's capability of rx speed in unit of 1Mbps.
"
::= { hh3cEOCComCnuInfoEntry 7 }
hh3cEOCComCnuTxRateDrop OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The cnu's capability droping of tx
speed from it's history max value in unit of %.
"
::= { hh3cEOCComCnuInfoEntry 8 }
hh3cEOCComCnuRxRateDrop OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The cnu's capability droping of rx
speed from it's history max value in unit of %.
"
::= { hh3cEOCComCnuInfoEntry 9 }
--
-- hh3cEOCComCnuBandWidthTable
--
hh3cEOCComCnuBandWidthTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComCnuBandWidthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
Set bandwidth parameters.
"
::= { hh3cEOCComCnuMan 5 }
hh3cEOCComCnuBandWidthEntry OBJECT-TYPE
SYNTAX Hh3cEOCComCnuBandWidthEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of table hh3cEOCComCnuBandWidthTable.
It is a pre-configuration.
"
INDEX
{
ifIndex
}
::= { hh3cEOCComCnuBandWidthTable 1 }
Hh3cEOCComCnuBandWidthEntry ::= SEQUENCE
{
hh3cEOCComCnuMaxDownBW Integer32,
hh3cEOCComCnuSlaHighPriBW Integer32,
hh3cEOCComCnuMaxUpBW Integer32
}
hh3cEOCComCnuMaxDownBW OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Maximum bandwidth allowed for the CNU,
measured in Kbit/s.
"
::= { hh3cEOCComCnuBandWidthEntry 1 }
hh3cEOCComCnuSlaHighPriBW OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
High priority bandwidth - measured in Kbit/s.
The value of this object should be the multiple of
the value of hh3cEOCComCnuMaxUpBW.
The high priority bandwidth should not be larger than the maximum
bandwidth.
"
::= { hh3cEOCComCnuBandWidthEntry 2 }
hh3cEOCComCnuMaxUpBW OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Total bandwidth - measured in Kbit/s.
The value of this object should be the multiple of
the value of hh3cEOCComCnuSlaHighPriBW.
The total bandwidth should be larger than the high priority bandwidth.
"
::= { hh3cEOCComCnuBandWidthEntry 3 }
--
-- hh3cEOCComUniMan
--
hh3cEOCComUniMan OBJECT IDENTIFIER ::= { hh3cEOCCommon 4 }
hh3cEOCComUniManTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComUniManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table defines several user network interface(UNI) system
parameters.
"
::= { hh3cEOCComUniMan 1 }
hh3cEOCComUniManEntry OBJECT-TYPE
SYNTAX Hh3cEOCComUniManEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of hh3cEOCComUniManTable.
"
INDEX
{
ifIndex,
hh3cEOCUniIndex
}
::= { hh3cEOCComUniManTable 1 }
Hh3cEOCComUniManEntry ::= SEQUENCE
{
hh3cEOCUniIndex Unsigned32,
hh3cEOCComUniDescr DisplayString,
hh3cEOCComUniStatus INTEGER,
hh3cEOCComUniSpeed INTEGER,
hh3cEOCComUniDuplex INTEGER,
hh3cEOCComUniCurrentSpeed Gauge32,
hh3cEOCComUniCurrentDuplex INTEGER,
hh3cEOCComUniMdi INTEGER,
hh3cEOCComUniFlowControl TruthValue,
hh3cEOCComUniCountReset INTEGER,
hh3cEOCComUniAlias DisplayString,
hh3cEOCComUniType IANAifType,
hh3cEOCComUniVLANType INTEGER,
hh3cEOCComUniPvid Integer32,
hh3cEOCComUniVlanTag INTEGER,
hh3cEOCComUniPriority Integer32,
hh3cEOCComUniUpLineRate Unsigned32,
hh3cEOCComUniDownLineRate Unsigned32,
hh3cEOCComUniAdminStatus INTEGER
}
hh3cEOCUniIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The index value which uniquely identifies the FE(Fast Ethernet)
interface of the CNU.
"
::= { hh3cEOCComUniManEntry 1 }
hh3cEOCComUniDescr OBJECT-TYPE
SYNTAX DisplayString
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.
"
::= { hh3cEOCComUniManEntry 2 }
hh3cEOCComUniStatus 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
state. The testing 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,
hh3cEOCComUniStatus is then changed to either the up or
testing states (or remains in the down state).
"
::= { hh3cEOCComUniManEntry 3 }
hh3cEOCComUniSpeed OBJECT-TYPE
SYNTAX INTEGER
{
auto(1),
s10M(10),
s100M(100)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
User network interface speed.
"
::= { hh3cEOCComUniManEntry 4 }
hh3cEOCComUniDuplex OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
half(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
User network interface mode.
"
::= { hh3cEOCComUniManEntry 5 }
hh3cEOCComUniCurrentSpeed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
An estimate of the interface's current bandwidth in
bits per second. For interfaces which do not vary in
bandwidth or for those where no accurate estimation
can be made, this object should contain the nominal
bandwidth. If the bandwidth of the interface is
greater than the maximum value reportable by this
object then this object should report its maximum
value (4,294,967,295). For a sub-layer which
has no concept of bandwidth, this object should be
zero.
"
::= { hh3cEOCComUniManEntry 6 }
hh3cEOCComUniCurrentDuplex OBJECT-TYPE
SYNTAX INTEGER
{
full(1),
half(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The current mode of operation of the MAC
entity. 'unknown' indicates that the current
duplex mode could not be determined.
Management control of the duplex mode is
accomplished through the MAU MIB. When
an interface does not support autonegotiation,
or when autonegotiation is not enabled, the
duplex mode is controlled using
ifMauDefaultType. When autonegotiation is
supported and enabled, duplex mode is controlled
using ifMauAutoNegAdvertisedBits. In either
case, the currently operating duplex mode is
reflected both in this object and in ifMauType.
Note that this object provides redundant
information with ifMauType. Normally, redundant
objects are discouraged. However, in this
instance, it allows a management application to
determine the duplex status of an interface
without having to know every possible value of
ifMauType. This was felt to be sufficiently
valuable to justify the redundancy.
"
REFERENCE
"
[IEEE 802.3 Std.], 30.3.1.1.32, aDuplexStatus.
"
::= { hh3cEOCComUniManEntry 7 }
hh3cEOCComUniMdi 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)."
DEFVAL
{
mdi-auto
}
::= { hh3cEOCComUniManEntry 8 }
hh3cEOCComUniFlowControl 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."
DEFVAL
{
false
}
::= { hh3cEOCComUniManEntry 9 }
hh3cEOCComUniCountReset 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."
::= { hh3cEOCComUniManEntry 10 }
hh3cEOCComUniAlias OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
This object is an 'alias' name for the interface as
specified by a network manager, and provides a non-
volatile 'handle' for the interface.
On the first instantiation of an interface, the value
of hh3cEOCComUniAlias associated with that interface is the
zero-length string. As and when a value is written
into an instance of hh3cEOCComUniAlias through a network
management set operation, then the agent must retain
the supplied value in the hh3cEOCComUniAlias instance associated
with the same interface for as long as that interface
remains instantiated, including across all re-
initializations/reboots of the network management
system, including those which result in a change of
the interface's ifIndex and hh3cEOCUniIndex value.
An example of the value which a network manager might
store in this object for a WAN interface is the
(Telco's) circuit number/identifier of the interface.
Some agents may support write-access only for
interfaces having particular values of hh3cEOCComUniType. An
agent which supports write access to this object is
required to keep the value in non-volatile storage,
but it may limit the length of new values depending on
how much storage is already occupied by the current
values for other interfaces.
"
::= { hh3cEOCComUniManEntry 11 }
hh3cEOCComUniType OBJECT-TYPE
SYNTAX IANAifType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The type of interface. Additional values for hh3cEOCComUniType
are assigned by the Internet Assigned Numbers
Authority(IANA), through updating the syntax of the
IANAifType textual convention.
"
::= { hh3cEOCComUniManEntry 12 }
hh3cEOCComUniVLANType OBJECT-TYPE
SYNTAX INTEGER
{
vLANTrunk(1),
access(2),
hybrid(3),
fabric(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"port vlan types.
hybrid (3) port can carry multiple VLANs.
If fabric function is supported, fabric(4) means the port is
a fabric port."
::= { hh3cEOCComUniManEntry 13 }
hh3cEOCComUniPvid OBJECT-TYPE
SYNTAX Integer32 (1..4094)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The PVID, the VLAN ID assigned to untagged frames or
Priority-Tagged frames received on this port.
"
REFERENCE
"
IEEE 802.1Q/D11 Section 12.10.1.1
"
DEFVAL
{
1
}
::= { hh3cEOCComUniManEntry 14 }
hh3cEOCComUniVlanTag OBJECT-TYPE
SYNTAX INTEGER
{
tagged(1),
untagged(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
VLAN is set tagged or untagged.
"
::= { hh3cEOCComUniManEntry 15 }
hh3cEOCComUniPriority OBJECT-TYPE
SYNTAX Integer32 (0..7)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The default ingress User Priority for this port. This
only has effect on media, such as Ethernet, that do not
support native User Priority.
"
::= { hh3cEOCComUniManEntry 16 }
hh3cEOCComUniUpLineRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The max speed upload in units of 1,000 bits per second
on this interface. The value should between 0 and 100Mbps.
If the value is 0, it means that the upload speed is only
restricted by the physical line.
"
::= { hh3cEOCComUniManEntry 17 }
hh3cEOCComUniDownLineRate OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The max speed download in units of 1,000 bits per second
on this interface. The value should between 0 and 100Mbps.
If the value is 0, it means that the download speed is only
restricted by the physical line.
"
::= { hh3cEOCComUniManEntry 18 }
hh3cEOCComUniAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Control if open or close the UNI. If choose up(1), means the UNI is
opened and packets can pass it. If choose down(2), means the UNI is
closed and all packets will be discard.
"
::= { hh3cEOCComUniManEntry 19 }
--
-- hh3cEOCComUniCountTable
--
hh3cEOCComUniCountTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComUniCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface counter about frames entries."
::= { hh3cEOCComUniMan 2 }
hh3cEOCComUniCountEntry OBJECT-TYPE
SYNTAX Hh3cEOCComUniCountEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable
to a particular interface."
INDEX
{
ifIndex,
hh3cEOCUniIndex
}
::= { hh3cEOCComUniCountTable 1 }
Hh3cEOCComUniCountEntry ::= SEQUENCE
{
hh3cEOCUniInPkts Unsigned32,
hh3cEOCUniInUPkts Unsigned32,
hh3cEOCUniInBPkts Unsigned32,
hh3cEOCUniInMPkts Unsigned32,
hh3cEOCUniInPausePkts Unsigned32,
hh3cEOCUniInTotalErrors Unsigned32,
hh3cEOCUniInCRCErrs Unsigned32,
hh3cEOCUniInUndersizePkts Unsigned32,
hh3cEOCUniInOversizePkts Unsigned32,
hh3cEOCUniInErrorbyOther Unsigned32,
hh3cEOCUniInOctets Unsigned32,
hh3cEOCUniOutPkts Unsigned32,
hh3cEOCUniOutUPkts Unsigned32,
hh3cEOCUniOutBPkts Unsigned32,
hh3cEOCUniOutMPkts Unsigned32,
hh3cEOCUniOutPausePkts Unsigned32,
hh3cEOCUniOutTotalErrors Unsigned32,
hh3cEOCUniOutCollisions Unsigned32,
hh3cEOCUniOutDelayExceedDsds Unsigned32,
hh3cEOCUniOutErrorbyOther Unsigned32,
hh3cEOCUniOutDroppedFrames Unsigned32,
hh3cEOCUniOutOctets Unsigned32
}
hh3cEOCUniInPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad packets,
broadcast packets, and multicast packets) received."
::= { hh3cEOCComUniCountEntry 1 }
hh3cEOCUniInUPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets received that are
directed to the unicast address. Note that this
does not include multicast and broadcast packets."
::= { hh3cEOCComUniCountEntry 2 }
hh3cEOCUniInBPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets received that are
directed to the broadcast address. Note that this
does not include multicast packets."
::= { hh3cEOCComUniCountEntry 3 }
hh3cEOCUniInMPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets received that are
directed to a multicast address. Note that this number
does not include packets directed to the broadcast address."
::= { hh3cEOCComUniCountEntry 4 }
hh3cEOCUniInPausePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A count of MAC Control packets 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."
::= { hh3cEOCComUniCountEntry 5 }
hh3cEOCUniInTotalErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total count of the error packets received on this interface."
::= { hh3cEOCComUniCountEntry 6 }
hh3cEOCUniInCRCErrs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets 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)."
::= { hh3cEOCComUniCountEntry 7 }
hh3cEOCUniInUndersizePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that are
less than 64 octets long (excluding framing bits,
but including FCS octets) and are otherwise well formed."
::= { hh3cEOCComUniCountEntry 8 }
hh3cEOCUniInOversizePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets received that are
longer than 1518 octets (excluding framing bits,
but including FCS octets) and are otherwise well formed."
::= { hh3cEOCComUniCountEntry 9 }
hh3cEOCUniInErrorbyOther OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of other error packets received on this interface."
::= { hh3cEOCComUniCountEntry 10 }
hh3cEOCUniInOctets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets received on this interface."
::= { hh3cEOCComUniCountEntry 11 }
hh3cEOCUniOutPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets (including bad packets,
broadcast packets, and multicast packets) sent."
::= { hh3cEOCComUniCountEntry 12 }
hh3cEOCUniOutUPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets sent that are
directed to the unicast address. Note that this
does not include multicast and broadcast packets."
::= { hh3cEOCComUniCountEntry 13 }
hh3cEOCUniOutBPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets sent that are
directed to the broadcast address. Note that this
does not include multicast packets."
::= { hh3cEOCComUniCountEntry 14 }
hh3cEOCUniOutMPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of good packets sent that are
directed to a multicast address. Note that this number
does not include packets directed to the broadcast address."
::= { hh3cEOCComUniCountEntry 15 }
hh3cEOCUniOutPausePkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of MAC control packets 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."
::= { hh3cEOCComUniCountEntry 16 }
hh3cEOCUniOutTotalErrors OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of error packets sent on this interface."
::= { hh3cEOCComUniCountEntry 17 }
hh3cEOCUniOutCollisions 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."
::= { hh3cEOCComUniCountEntry 18 }
hh3cEOCUniOutDelayExceedDsds OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets discarded by this port due
to excessive transit delay through the bridge. It
is incremented by both transparent and source route bridges."
::= { hh3cEOCComUniCountEntry 19 }
hh3cEOCUniOutErrorbyOther OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of other error packets sent on this interface.
Other error packets means the error packets out of collision packets
and excessive delayed packets."
::= { hh3cEOCComUniCountEntry 20 }
hh3cEOCUniOutDroppedFrames OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of frames dropped because of buffer failure."
::= { hh3cEOCComUniCountEntry 21 }
hh3cEOCUniOutOctets OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of octets transmitted out of the interface."
::= { hh3cEOCComUniCountEntry 22 }
--
-- hh3cEOCCommon NOTIFICATION
--
hh3cEOCCommonTrap OBJECT IDENTIFIER ::= { hh3cEOCCommon 5 }
hh3cEOCTrapPrefix OBJECT IDENTIFIER ::= {hh3cEOCCommonTrap 0}
hh3cEOCCnuRegExcessTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuRegExcessTrap notification is sent when the
number of registered CNUs exceeds the limit.
"
::= { hh3cEOCTrapPrefix 1 }
hh3cEOCCnuRegExcessRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuRegExcessRecoverTrap notification is sent when
hh3cEOCCnuRegExcessTrap is detected and then recoverd.
"
::= { hh3cEOCTrapPrefix 2 }
hh3cEOCCnuRegSuccTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuRegSuccTrap notification is sent when a
CNU registers successful.
"
::= { hh3cEOCTrapPrefix 3 }
hh3cEOCCnuOffLineTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuOffLineTrap notification is sent when a
CNU offline.
"
::= { hh3cEOCTrapPrefix 4 }
hh3cEOCCnuLinkupTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuLinkupTrap notification is sent when a
CNU linkup.
"
::= { hh3cEOCTrapPrefix 5 }
hh3cEOCOamDisconnectTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCOamDisconnectionTrap notification is sent when
LLID's OAM link is disconnected.
"
::= { hh3cEOCTrapPrefix 6 }
hh3cEOCOamDisconnectRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCOamDisconnectionRecoverTrap notification is sent when
LLID's OAM link is disconnected and then connected.
"
::= { hh3cEOCTrapPrefix 7 }
hh3cEOCBandwidthNotEnoughTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
Bandwidth is not enough, cnu can not bind now.
"
::= { hh3cEOCTrapPrefix 8 }
hh3cEOCCnuAttenuationTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress,
hh3cEOCComCnuAttenuation
}
STATUS current
DESCRIPTION
"
A hh3cHPEOCCnuAttenuationTrap notification is sent when a
CNU's attenuation is changing.
"
::= { hh3cEOCTrapPrefix 9 }
hh3cEOCCnuRegFailTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuRegFailTrap notification is sent when a
CNU registers fail.
"
::= { hh3cEOCTrapPrefix 10 }
hh3cEOCCLTCablePortErrorTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCLTCablePortErrorTrap notification is sent when the
hardware of cable port occurs error or CLT's vlan is configged
error.
"
::= { hh3cEOCTrapPrefix 11 }
hh3cEOCCLTCablePortErrReTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"
A hh3cEOCCLTCablePortErrReTrap notification is sent when cable port
error and then recovered.
"
::= { hh3cEOCTrapPrefix 12 }
hh3cEOCCnuTxRateDropTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress,
hh3cEOCComCnuTxRateDrop
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuTxRateDropTrap notification is sent when cable port
rate of TX capability drop exceeded threshold.
"
::= { hh3cEOCTrapPrefix 13 }
hh3cEOCCnuTxRateDropRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress,
hh3cEOCComCnuTxRateDrop
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuTxRateDropRecoverTrap notification is sent when cable port
rate of TX capability recover from the recent rate-drop trap.
"
::= { hh3cEOCTrapPrefix 14 }
hh3cEOCCnuRxRateDropTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress,
hh3cEOCComCnuRxRateDrop
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuRxRateDropTrap notification is sent when cable port
rate of RX capability drop exceeded threshold.
"
::= { hh3cEOCTrapPrefix 15 }
hh3cEOCCnuRxRateDropRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress,
hh3cEOCComCnuRxRateDrop
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuRxRateDropRecoverTrap notification is sent when cable port
rate of RX capability recover from the recent rate-drop trap.
"
::= { hh3cEOCTrapPrefix 16 }
hh3cEOCCnuFWDownLoadErrTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cHPEOCDownLoadCNUFWResult
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuFWDownLoadErrTrap notification is sent when CLT can't
download CNU firmware from the server successfully.
"
::= { hh3cEOCTrapPrefix 17 }
hh3cEOCCnuFWDownLoadErrReTrap NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"
A hh3cEOCCnuFWDownLoadErrReTrap notification is sent when CLT recover
from the download CNU firmware error.
"
::= { hh3cEOCTrapPrefix 18 }
hh3cEOCCnuDeviceTypeErrTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress,
hh3cEOCComCnuDeviceType
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuDeviceTypeErrTrap notification is sent when the online CNU
doesn't match the type which user defined earlier.
"
::= { hh3cEOCTrapPrefix 19 }
hh3cEOCCnuDeviceTypeErrReTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuDeviceTypeErrReTrap notification is sent when the online CNU
doesn't match the type which user defined earlier and then recover.
"
::= { hh3cEOCTrapPrefix 20 }
hh3cEOCCnuAutoUpdateErrTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuAutoUpdateErrTrap notification is sent when the online CNU
doesn't auto update successfully.
"
::= { hh3cEOCTrapPrefix 21 }
hh3cEOCCnuAutoUpdateSuccTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress
}
STATUS current
DESCRIPTION
"
A hh3cEOCCnuAutoUpdateSuccTrap notification is sent when the online CNU
auto update successfully.
"
::= { hh3cEOCTrapPrefix 22 }
hh3cEOCLoopbackDetectTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress
}
STATUS current
DESCRIPTION
"
A hh3cEOCLoopbackDetectTrap notification is sent when the loopback between
the ethernet ports of CNU or CLT is found.
"
::= { hh3cEOCTrapPrefix 23 }
hh3cEOCLoopbackRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cEOCComCnuMacAddress
}
STATUS current
DESCRIPTION
"
A hh3cEOCLoopbackRecoverTrap notification is sent when the loopback between
the ethernet ports of CNU or CLT is recover.
"
::= { hh3cEOCTrapPrefix 24 }
--
-- hh3cEOCComOnLineCnuMan
--
hh3cEOCComOnLineCnuMan OBJECT IDENTIFIER ::= { hh3cEOCCommon 6 }
--
-- hh3cEOCComCnuTypeTable
--
hh3cEOCComCnuTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComCnuTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table defines the description of cnu typ.
"
::= { hh3cEOCComOnLineCnuMan 1 }
hh3cEOCComCnuTypeEntry OBJECT-TYPE
SYNTAX Hh3cEOCComCnuTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEOCComCnuTypeTable.
"
INDEX
{
hh3cEOCComCnuTypeIdx
}
::= { hh3cEOCComCnuTypeTable 1 }
Hh3cEOCComCnuTypeEntry ::= SEQUENCE
{
hh3cEOCComCnuTypeIdx Unsigned32,
hh3cEOCComCnuDescripton DisplayString
}
hh3cEOCComCnuTypeIdx OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
A unique value for each cnu types. Its value
ranges between 1 and the value of cny typess.
"
::= { hh3cEOCComCnuTypeEntry 1 }
hh3cEOCComCnuDescripton OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The description for unique cnu types.
"
::= { hh3cEOCComCnuTypeEntry 2 }
--
-- hh3cEOCComCnuNumTable
--
hh3cEOCComCnuNumTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cEOCComCnuNumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
This table defines the number of cnu registered in variable types
of the CLT .
"
::= { hh3cEOCComOnLineCnuMan 2 }
hh3cEOCComCnuNumEntry OBJECT-TYPE
SYNTAX Hh3cEOCComCnuNumEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"
The entry of the table hh3cEOCComCnuNumTable.
"
INDEX
{
ifIndex,
hh3cEOCComCnuTypeIdx
}
::= { hh3cEOCComCnuNumTable 1 }
Hh3cEOCComCnuNumEntry ::= SEQUENCE
{
hh3cEOCComCnuNumber Integer32
}
hh3cEOCComCnuNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The number of special type of cnu that has been registerd in clt.
"
::= { hh3cEOCComCnuNumEntry 1 }
END
|