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
|
-- =================================================================
-- Copyright (c) 2004-2021 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: interface extension mib
-- Reference: IF-MIB
-- Version: V2.6
-- History:
-- V1.0 Created by gaolong
-- Initial version 2004-11-13
-- V1.1 2007-01-13 Modified by wanglirong
-- Added hh3cIfStatGlobalFlowInterval and hh3cIfSpeedStatTable
-- V1.2 Modified by chenxi
-- Added hh3cRTParentIfTable, hh3cRTSubIfTable, and
-- hh3cIfLinkModeTable 2007-10-15
-- V1.3 2009-05-05 Added hh3cIfPhysicalNumber and hh3cIfTable
-- V1.4 2009-08-08 Added hh3cIfMtu, hh3cIfBandwidth, hh3cIfDiscardPktRate,
-- and hh3cIfExtTrapCfgTable
-- V1.5 2010-09-04 Added hh3cIfInNUcastPkts, hh3cIfOutNUcastPkts, and hh3cIfStatusKeepTime by shuaixj
-- V1.6 2011-09-16 Added hh3cIfHCFlowStatTable by xiedong
-- 2011-11-04 Added hh3cIfIsPoe by duyanbing
-- V1.7 2013-09-13 Added hh3cIfOperStatus and hh3cIfDownTimes by duyanbing
-- V1.8 2014-07-23 Added hh3cIfShutDownInterval and hh3cIfUsingTable by xiedong
-- 2014-09-19 Added hh3cIfDampeningSuppressed and hh3cIfDampeningNotSuppressed by yinzhonghong
-- V1.9 2014-11-20 Added hh3cIfPortTypeTable, hh3cIfPfcStatus, and hh3cIfPfcDot1pNoDrop by songhao
-- V2.0 2015-02-12 Added hh3cIfPortUp, hh3cIfPortDown by chenzhouhui
-- 2015-12-10 Added hh3cIfDescription by chenzhouhui
-- V2.1 2016-07-01 Added the values 25GE and 50GE to hh3cIfUsingType and hh3cIfUsingSupportType by yuhaiyan
-- 2016-12-05 Added hh3cIfHCSpeedStatTable by songhao.
-- 2017-07-13 Added hh3cIfFwdErrDiscards by songhao.
-- 2017-12-13 Added hh3cIfThroughputInKbps and hh3cIfThroughputOutKbps by chenzhouhui.
-- 2018-01-09 Added hh3cIfMonScalarGroup, hh3cIfMonGroup, hh3cIfMonGroup and hh3cIfMonTrapPrex by guhangchao.
-- 2018-02-07 Added hh3cIfPortDot1pTable, hh3cIfPfcOutRising and hh3cIfPfcInRising by guhangchao.
-- V2.2 2018-04-26 Modified hh3cIfMonScalarGroup, hh3cIfMonGroup, hh3cIfMonGroup and hh3cIfMonTrapPrex by guhangchao.
-- V2.3 2018-06-05 Added hh3cIfQueBufferTable by zhuhaifeng.
-- 2019-08-06 Added hh3cIfSpeedStatInBits, hh3cIfSpeedStatOutBits, hh3cIfSpeedStatHCInBits
-- and hh3cIfSpeedStatHCOutBits by matianming.
-- V2.4 2020-06-09 modify hh3cIfMonGroup by guhangchao
-- V2.5 2020-08-04 modify hh3cIfMonGroup and hh3cIfMonTrapPrex by guhangchao
-- 2020-08-05 Added hh3cIfFiberOrCopper by shuaixiaojuan.
-- V2.6 2021-04-27 Added the values 200GE and 400GE to hh3cIfUsingType and hh3cIfUsingSupportType by zhaoqingtao.
-- 2021-05-14 Added hh3cIfTransferMode by lijinshuo.
-- =================================================================
HH3C-IF-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
ifIndex, ifDescr, InterfaceIndex
FROM IF-MIB
Integer32, Counter64, Unsigned32, TimeTicks,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
CounterBasedGauge64
FROM HCNUM-TC
DisplayString, RowStatus, TruthValue
FROM SNMPv2-TC;
hh3cIfExt MODULE-IDENTITY
LAST-UPDATED "202105140000Z"
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
"This MIB is an extension of interface MIBs such as IF-MIB.
This MIB is applicable to routers, switches, and other products.
Some objects in this MIB may be used only for some specific products,
so users should refer to the related documents to acquire more
detailed information.
"
REVISION "202105140000Z"
DESCRIPTION
"Added hh3cIfTransferMode to hh3cIfTable."
REVISION "202104270000Z"
DESCRIPTION
"Added the values 200GE and 400GE to hh3cIfUsingType and hh3cIfUsingSupportType."
REVISION "202008050000Z"
DESCRIPTION
"Added hh3cIfFiberOrCopper to hh3cIfTable."
REVISION "202008040000Z"
DESCRIPTION
"modify hh3cIfMonGroup and hh3cIfMonTrapPrex."
REVISION "202006090000Z"
DESCRIPTION
"modify hh3cIfMonGroup."
REVISION "201908060000Z"
DESCRIPTION
"Added hh3cIfSpeedStatInBits, hh3cIfSpeedStatOutBits, hh3cIfSpeedStatHCInBits
and hh3cIfSpeedStatHCOutBits."
REVISION "201806050000Z"
DESCRIPTION
"Added hh3cIfQueBufferTable."
REVISION "201804260000Z"
DESCRIPTION
"Modified hh3cIfMonScalarGroup, hh3cIfMonGroup, hh3cIfMonGroup and hh3cIfMonTrapPrex."
REVISION "201802070000Z"
DESCRIPTION
"Added hh3cIfPortDot1pTable, hh3cIfPfcOutRising and hh3cIfPfcInRising."
REVISION "201801090000Z"
DESCRIPTION
"Added hh3cIfMonScalarGroup, hh3cIfMonGroup, hh3cIfMonGroup and hh3cIfMonTrapPrex."
REVISION "201712131820Z"
DESCRIPTION
"Added Added hh3cIfThroughputInKbps and hh3cIfThroughputOutKbps."
REVISION "201707131040Z"
DESCRIPTION
"Added hh3cIfFwdErrDiscards."
REVISION "201612051800Z"
DESCRIPTION
"Added hh3cIfHCSpeedStatTable."
REVISION "201607011700Z"
DESCRIPTION
"Added the values 25GE and 50GE to hh3cIfUsingType and hh3cIfUsingSupportType."
REVISION "201512101000Z"
DESCRIPTION
"Added hh3cIfDescription."
REVISION "201504020458Z"
DESCRIPTION
"Added hh3cIfPortUp and hh3cIfPortDown"
REVISION "201411200800Z"
DESCRIPTION
"Added hh3cIfPortTypeTable, hh3cIfPfcStatus, and hh3cIfPfcDot1pNoDrop."
REVISION "200905061936Z"
DESCRIPTION
"Update this MIB module."
REVISION "200411131936Z" -- December 13, 2004 at 19:36 GMT
DESCRIPTION
"The initial revision of this MIB module."
::= { hh3cCommon 40 }
--
-- Node definitions
--
-- Scalar MIB objects, which are considered as global variables
-- to all interfaces on a device, are defined in this section.
hh3cIfExtScalarGroup OBJECT IDENTIFIER ::= { hh3cIfExt 1 }
hh3cIfStatGlobalFlowInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sampling interval for in/out flow of all interfaces.
Setting zero indicates closing the statistic function."
::= { hh3cIfExtScalarGroup 1 }
hh3cIfShutDownInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the port status detection timer. The device starts a port status
detection timer when a port is shut down by a protocol. Once the timer
expires, the device brings up the port so the port status reflects
the port's physical status."
::= { hh3cIfExtScalarGroup 2 }
hh3cIfThroughputInKbps OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual incoming throughput of the device in kbps."
::= { hh3cIfExtScalarGroup 3 }
hh3cIfThroughputOutKbps OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Actual outgoing throughput of the device in kbps."
::= { hh3cIfExtScalarGroup 4 }
-- =================================================================
-- All other groups are defined below. Of course, scalar objects can
-- also be defined in a subsection, but they must be one part of
-- that subsection.
-- Note that a scalar group should be defined firstly and all
-- scalar objects are placed under that group when doing so.
hh3cIfExtGroup OBJECT IDENTIFIER ::= { hh3cIfExt 2 }
-- =================================================================
-- The section below describes statistics of interfaces on a device.
-- These statistics may not be included in standard MIBs.
hh3cIfStat OBJECT IDENTIFIER ::= { hh3cIfExtGroup 1 }
-- Define a scalar group that contains all scalar objects used for
-- interface statistics.
hh3cIfStatScalarGroup OBJECT IDENTIFIER ::= { hh3cIfStat 1 }
hh3cIfStatTable OBJECT IDENTIFIER ::= { hh3cIfStat 2 }
hh3cIfFlowStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfFlowStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get statistic information
of interfaces on a device."
::= { hh3cIfStatTable 1 }
hh3cIfFlowStatEntry OBJECT-TYPE
SYNTAX Hh3cIfFlowStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
ifIndex
}
::= { hh3cIfFlowStatTable 1 }
Hh3cIfFlowStatEntry ::= SEQUENCE
{
hh3cIfStatFlowInterval Integer32,
hh3cIfStatFlowInBits Unsigned32,
hh3cIfStatFlowOutBits Unsigned32,
hh3cIfStatFlowInPkts Unsigned32,
hh3cIfStatFlowOutPkts Unsigned32,
hh3cIfStatFlowInBytes Unsigned32,
hh3cIfStatFlowOutBytes Unsigned32
}
hh3cIfStatFlowInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sampling interval for in/out flow of interface.
Setting zero indicates closing this statistic function
and objects in this table should return 0."
::= { hh3cIfFlowStatEntry 1 }
hh3cIfStatFlowInBits OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In bits in the specified interval."
::= { hh3cIfFlowStatEntry 2 }
hh3cIfStatFlowOutBits OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Out bits in the specified interval."
::= { hh3cIfFlowStatEntry 3 }
hh3cIfStatFlowInPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In packets in the specified interval."
::= { hh3cIfFlowStatEntry 4 }
hh3cIfStatFlowOutPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Out packets in the specified interval."
::= { hh3cIfFlowStatEntry 5 }
hh3cIfStatFlowInBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In bytes in the specified interval."
::= { hh3cIfFlowStatEntry 6 }
hh3cIfStatFlowOutBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Out bytes in the specified interval."
::= { hh3cIfFlowStatEntry 7 }
-- =================================================================
hh3cIfSpeedStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfSpeedStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get average speed information
in the specified interval for interfaces on a device."
::= { hh3cIfStatTable 2 }
hh3cIfSpeedStatEntry OBJECT-TYPE
SYNTAX Hh3cIfSpeedStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
ifIndex
}
::= { hh3cIfSpeedStatTable 1 }
Hh3cIfSpeedStatEntry ::= SEQUENCE
{
hh3cIfSpeedStatInterval Integer32,
hh3cIfSpeedStatInPkts Unsigned32,
hh3cIfSpeedStatOutPkts Unsigned32,
hh3cIfSpeedStatInBytes Unsigned32,
hh3cIfSpeedStatOutBytes Unsigned32,
hh3cIfSpeedStatInBits Unsigned32,
hh3cIfSpeedStatOutBits Unsigned32
}
hh3cIfSpeedStatInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Sampling interval for in/out flow of interface.
Setting zero indicates closing this statistic function
and objects in this table should return 0."
::= { hh3cIfSpeedStatEntry 1 }
hh3cIfSpeedStatInPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of input packets per second in the interval specified by
hh3cIfSpeedStatInterval."
::= { hh3cIfSpeedStatEntry 2 }
hh3cIfSpeedStatOutPkts OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of output packets per second in the interval specified by
hh3cIfSpeedStatInterval."
::= { hh3cIfSpeedStatEntry 3 }
hh3cIfSpeedStatInBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of input bytes per second in the interval specified by
hh3cIfSpeedStatInterval."
::= { hh3cIfSpeedStatEntry 4 }
hh3cIfSpeedStatOutBytes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of output bytes per second in the interval specified by
hh3cIfSpeedStatInterval."
::= { hh3cIfSpeedStatEntry 5 }
hh3cIfSpeedStatInBits OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of input bits per second in the interval specified by
hh3cIfSpeedStatInterval."
::= { hh3cIfSpeedStatEntry 6 }
hh3cIfSpeedStatOutBits OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of output bits per second in the interval specified by
hh3cIfSpeedStatInterval."
::= { hh3cIfSpeedStatEntry 7 }
-- =================================================================
hh3cIfHCFlowStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfHCFlowStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get statistic information
of interfaces on a device."
::= { hh3cIfStatTable 3 }
hh3cIfHCFlowStatEntry OBJECT-TYPE
SYNTAX Hh3cIfHCFlowStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
ifIndex
}
::= { hh3cIfHCFlowStatTable 1 }
Hh3cIfHCFlowStatEntry ::= SEQUENCE
{
hh3cIfStatFlowHCInBits CounterBasedGauge64,
hh3cIfStatFlowHCOutBits CounterBasedGauge64,
hh3cIfStatFlowHCInPkts CounterBasedGauge64,
hh3cIfStatFlowHCOutPkts CounterBasedGauge64,
hh3cIfStatFlowHCInBytes CounterBasedGauge64,
hh3cIfStatFlowHCOutBytes CounterBasedGauge64
}
hh3cIfStatFlowHCInBits OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In bits in the specified interval. This object is a 64-bit
version of hh3cIfStatFlowInBits."
::= { hh3cIfHCFlowStatEntry 1 }
hh3cIfStatFlowHCOutBits OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Out bits in the specified interval. This object is a 64-bit
version of hh3cIfStatFlowOutBits."
::= { hh3cIfHCFlowStatEntry 2 }
hh3cIfStatFlowHCInPkts OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In packets in the specified interval. This object is a 64-bit
version of hh3cIfStatFlowInPkts."
::= { hh3cIfHCFlowStatEntry 3 }
hh3cIfStatFlowHCOutPkts OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Out packets in the specified interval. This object is a 64-bit
version of hh3cIfStatFlowOutPkts."
::= { hh3cIfHCFlowStatEntry 4 }
hh3cIfStatFlowHCInBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In bytes in the specified interval. This object is a 64-bit
version of hh3cIfStatFlowInBytes."
::= { hh3cIfHCFlowStatEntry 5 }
hh3cIfStatFlowHCOutBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Out bytes in the specified interval. This object is a 64-bit
version of hh3cIfStatFlowOutBytes."
::= { hh3cIfHCFlowStatEntry 6 }
-- =================================================================
hh3cIfHCSpeedStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfHCSpeedStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get average speed information
in the specified interval for interfaces on a device.
This table is a 64-bit version of hh3cIfSpeedStatTable."
::= { hh3cIfStatTable 4 }
hh3cIfHCSpeedStatEntry OBJECT-TYPE
SYNTAX Hh3cIfHCSpeedStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entry items"
INDEX
{
ifIndex
}
::= { hh3cIfHCSpeedStatTable 1 }
Hh3cIfHCSpeedStatEntry ::= SEQUENCE
{
hh3cIfSpeedStatHCInPkts CounterBasedGauge64,
hh3cIfSpeedStatHCOutPkts CounterBasedGauge64,
hh3cIfSpeedStatHCInBytes CounterBasedGauge64,
hh3cIfSpeedStatHCOutBytes CounterBasedGauge64,
hh3cIfSpeedStatHCInBits CounterBasedGauge64,
hh3cIfSpeedStatHCOutBits CounterBasedGauge64
}
hh3cIfSpeedStatHCInPkts OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of input packets per second in the interval specified by
hh3cIfSpeedStatInterval.
This object is a 64-bit version of hh3cIfSpeedStatInPkts."
::= { hh3cIfHCSpeedStatEntry 1 }
hh3cIfSpeedStatHCOutPkts OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of output packets per second in the interval specified by
hh3cIfSpeedStatInterval.
This object is a 64-bit version of hh3cIfSpeedStatOutPkts."
::= { hh3cIfHCSpeedStatEntry 2 }
hh3cIfSpeedStatHCInBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of input bytes per second in the interval specified by
hh3cIfSpeedStatInterval.
This object is a 64-bit version of hh3cIfSpeedStatInBytes."
::= { hh3cIfHCSpeedStatEntry 3 }
hh3cIfSpeedStatHCOutBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of output bytes per second in the interval specified by
hh3cIfSpeedStatInterval.
This object is a 64-bit version of hh3cIfSpeedStatOutBytes."
::= { hh3cIfHCSpeedStatEntry 4 }
hh3cIfSpeedStatHCInBits OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of input bits per second in the interval specified by
hh3cIfSpeedStatInterval.
This object is a 64-bit version of hh3cIfSpeedStatInBits."
::= { hh3cIfHCSpeedStatEntry 5 }
hh3cIfSpeedStatHCOutBits OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average of output bits per second in the interval specified by
hh3cIfSpeedStatInterval.
This object is a 64-bit version of hh3cIfSpeedStatOutBits."
::= { hh3cIfHCSpeedStatEntry 6 }
-- =================================================================
hh3cIfControl OBJECT IDENTIFIER ::= { hh3cIfExtGroup 2 }
hh3cRTParentIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRTParentIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains all interfaces that can create subinterfaces."
::= { hh3cIfControl 1 }
hh3cRTParentIfEntry OBJECT-TYPE
SYNTAX Hh3cRTParentIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry describes an interface that can create subinterfaces."
INDEX
{
hh3cRTParentIfIndex
}
::= { hh3cRTParentIfTable 1}
Hh3cRTParentIfEntry ::= SEQUENCE
{
hh3cRTParentIfIndex Integer32,
hh3cRTMinSubIfOrdinal Integer32,
hh3cRTMaxSubIfOrdinal Integer32
}
hh3cRTParentIfIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the interface that can create subinterfaces. The value
is the same as the ifIndex value for this interface."
::= { hh3cRTParentIfEntry 1 }
hh3cRTMinSubIfOrdinal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The min ordinal of the subinterface."
::= { hh3cRTParentIfEntry 2 }
hh3cRTMaxSubIfOrdinal OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The max ordinal of the subinterface."
::= { hh3cRTParentIfEntry 3 }
-- =================================================================
hh3cRTSubIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cRTSubIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to create or delete subinterfaces.
To create a subinterface, a valid parent interface must be
specified by hh3cRTSubIfParentIfIndex, and hh3cRTSubIfOrdinal
must be in the range between hh3cRTMinSubIfOrdinal and
hh3cRTMaxSubIfOrdinal of the parent interface from
hh3cRTParentIfTable.
Subinterfaces are logical virtual interfaces configured on a
main interface. The main interface can be either a physical
interface (such as a Layer 3 Ethernet interface) or a logical
interface (such as an MFR interface). The subinterfaces on a
main interface share the physical layer parameters of the main
interface but can have link layer and network layer parameters
of their own. Disabling or enabling a subinterface doesn't
affect the main interface, but the main interface status change
affects the subinterfaces. The subinterfaces can't operate
correctly unless the main interface is connected.
Creating multiple subinterfaces on a single interface
enables you to plan network in a more flexible way.
You can create subinterfaces for the following physical
interfaces:
Ethernet interface. An Ethernet subinterface associated with no
VLAN supports only IPX, while an Ethernet subinterface associated
with a VLAN supports both IP and IPX.
WAN interfaces with their data link layer protocols being frame
relay, whose subinterfaces support IP and IPX.
WAN interfaces with their data link layer protocols being X.25,
whose subinterfaces support IP and IPX.
ATM interface, whose subinterfaces support only IP."
::= { hh3cIfControl 2 }
hh3cRTSubIfEntry OBJECT-TYPE
SYNTAX Hh3cRTSubIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The hh3cRTSubIfTable entry items"
INDEX
{
hh3cRTSubIfParentIfIndex,
hh3cRTSubIfOrdinal
}
::= { hh3cRTSubIfTable 1}
Hh3cRTSubIfEntry ::= SEQUENCE
{
hh3cRTSubIfParentIfIndex Integer32,
hh3cRTSubIfOrdinal Integer32,
hh3cRTSubIfSubIfIndex Integer32,
hh3cRTSubIfSubIfDesc DisplayString,
hh3cRTSubIfRowStatus RowStatus
}
hh3cRTSubIfParentIfIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The parent interface index. The value should be the same as
hh3cRTParentIfIndex."
::= { hh3cRTSubIfEntry 1 }
hh3cRTSubIfOrdinal OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ordinal of the subinterface. It should between
hh3cRTMinSubIfOrdinal and hh3cRTMaxSubIfOrdinal of the parent
interface."
::= { hh3cRTSubIfEntry 2 }
hh3cRTSubIfSubIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ifIndex value of the subinterface"
::= { hh3cRTSubIfEntry 3 }
hh3cRTSubIfSubIfDesc OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the interface"
::= { hh3cRTSubIfEntry 4 }
hh3cRTSubIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation status."
::= { hh3cRTSubIfEntry 5 }
-- =================================================================
hh3cIfLinkModeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfLinkModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get or set the link mode of an
interface.
According to the layer at which the device processes received
data packets, Ethernet interfaces can operate in bridge or route
mode."
::= { hh3cIfControl 3 }
hh3cIfLinkModeEntry OBJECT-TYPE
SYNTAX Hh3cIfLinkModeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The interface link mode table entry"
INDEX
{
hh3cIfLinkModeIndex
}
::= { hh3cIfLinkModeTable 1}
Hh3cIfLinkModeEntry ::= SEQUENCE
{
hh3cIfLinkModeIndex Integer32,
hh3cIfLinkMode INTEGER,
hh3cIfLinkModeSwitchSupport TruthValue
}
hh3cIfLinkModeIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value is the same as ifIndex."
::= { hh3cIfLinkModeEntry 1 }
hh3cIfLinkMode OBJECT-TYPE
SYNTAX INTEGER
{
bridgeMode(1),
routeMode(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current link mode of the interface.
If hh3cIfLinkModeSwitchSupport is true, writing to the object can
change the link mode of the interface."
::= { hh3cIfLinkModeEntry 2 }
hh3cIfLinkModeSwitchSupport OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the interface supports link mode switching.
If this object is true, the interface can operate in either
bridge mode or route mode. Otherwise the interfaces can operate
only in bridge or route mode."
::= { hh3cIfLinkModeEntry 3 }
-- =================================================================
hh3cIfPortTypeTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfPortTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get or set the port type
of an interface."
::= { hh3cIfControl 4 }
hh3cIfPortTypeEntry OBJECT-TYPE
SYNTAX Hh3cIfPortTypeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The interface port type table entry."
INDEX
{
hh3cIfPortTypeIndex
}
::= { hh3cIfPortTypeTable 1}
Hh3cIfPortTypeEntry ::= SEQUENCE
{
hh3cIfPortTypeIndex InterfaceIndex,
hh3cIfPortType INTEGER
}
hh3cIfPortTypeIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value is the same as ifIndex."
::= { hh3cIfPortTypeEntry 1 }
hh3cIfPortType OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ethernet(2),
fc(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The current port type of the interface.
Don't set the port type to other for an interface."
::= { hh3cIfPortTypeEntry 2 }
-- =================================================================
hh3cIfPfcDot1pTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfPfcDot1pEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table can set the inbound and outbound rate thresholds for the specified dot1p values."
::= { hh3cIfControl 5 }
hh3cIfPfcDot1pEntry OBJECT-TYPE
SYNTAX Hh3cIfPfcDot1pEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry items"
INDEX
{
ifIndex,
hh3cIfPfcDot1pValue
}
::= { hh3cIfPfcDot1pTable 1}
Hh3cIfPfcDot1pEntry ::= SEQUENCE
{
hh3cIfPfcDot1pValue INTEGER,
hh3cIfPfcDot1pInPps Unsigned32,
hh3cIfPfcDot1pOutPps Unsigned32,
hh3cIfPfcDot1pInPpsThreshold Unsigned32,
hh3cIfPfcDot1pOutPpsThreshold Unsigned32
}
hh3cIfPfcDot1pValue OBJECT-TYPE
SYNTAX INTEGER
{
pri0(1),
pri1(2),
pri2(3),
pri3(4),
pri4(5),
pri5(6),
pri6(7),
pri7(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PFC dot1p value list."
::= { hh3cIfPfcDot1pEntry 1 }
hh3cIfPfcDot1pInPps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current inbound rate for the PFC dot1p."
::= { hh3cIfPfcDot1pEntry 2 }
hh3cIfPfcDot1pOutPps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current outbound rate for the PFC dot1p. "
::= { hh3cIfPfcDot1pEntry 3 }
hh3cIfPfcDot1pInPpsThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold for the inbound rate.
If the hh3cIfPfcDot1pInPpsThreshold is set to 0, no hh3cIfPfcInRising will be generated."
::= { hh3cIfPfcDot1pEntry 4 }
hh3cIfPfcDot1pOutPpsThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold for the outbound rate.
If the hh3cIfPfcDot1pOutPpsThreshold is set to 0, no hh3cIfPfcOutRising will be generated."
::= { hh3cIfPfcDot1pEntry 5 }
-- =================================================================
hh3cIfQueBufferTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfQueBufferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains objects to get the usage info, thresholds, and
statistics of queue buffers and to set the thresholds of queue buffers."
::= { hh3cIfControl 6 }
hh3cIfQueBufferEntry OBJECT-TYPE
SYNTAX Hh3cIfQueBufferEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry items"
INDEX
{
ifIndex,
hh3cIfQueId
}
::= { hh3cIfQueBufferTable 1}
Hh3cIfQueBufferEntry ::= SEQUENCE
{
hh3cIfQueId INTEGER,
hh3cIfQueOutUcastTotal Unsigned32,
hh3cIfQueOutUcastFree Unsigned32,
hh3cIfQueOutUcastUsedRatio Unsigned32,
hh3cIfQueOutUcastUsedPeak Unsigned32,
hh3cIfQueOutUcastThreshold Unsigned32,
hh3cIfQueOutUcastOverThres Unsigned32,
hh3cIfQueInTotal Unsigned32,
hh3cIfQueInFree Unsigned32,
hh3cIfQueInUsedRatio Unsigned32,
hh3cIfQueInUsedPeak Unsigned32,
hh3cIfQueInThreshold Unsigned32,
hh3cIfQueInOverThres Unsigned32,
hh3cIfQueInHeadRoomTotal Unsigned32,
hh3cIfQueInHeadRoomFree Unsigned32,
hh3cIfQueInHeadRoomUsedRatio Unsigned32,
hh3cIfQueInHeadRoomUsedPeak Unsigned32
}
hh3cIfQueId OBJECT-TYPE
SYNTAX INTEGER
{
que0(1),
que1(2),
que2(3),
que3(4),
que4(5),
que5(6),
que6(7),
que7(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The buffer's queue ID."
::= { hh3cIfQueBufferEntry 1 }
hh3cIfQueOutUcastTotal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of outbound unicast queue buffer."
::= { hh3cIfQueBufferEntry 2 }
hh3cIfQueOutUcastFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of free outbound unicast queue buffer."
::= { hh3cIfQueBufferEntry 3 }
hh3cIfQueOutUcastUsedRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of outbound unicast queue buffer which is used."
::= { hh3cIfQueBufferEntry 4 }
hh3cIfQueOutUcastUsedPeak OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peak of outbound unicast queue buffer which is used."
::= { hh3cIfQueBufferEntry 5 }
hh3cIfQueOutUcastThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The alarm threshold of outbound unicast queue buffer which is used."
::= { hh3cIfQueBufferEntry 6 }
hh3cIfQueOutUcastOverThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times of exceeding the alarm threshold of outbound unicast queue buffer which is used."
::= { hh3cIfQueBufferEntry 7 }
hh3cIfQueInTotal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of inbound queue buffer."
::= { hh3cIfQueBufferEntry 8 }
hh3cIfQueInFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of free inbound queue buffer."
::= { hh3cIfQueBufferEntry 9 }
hh3cIfQueInUsedRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of inbound queue buffer which is used."
::= { hh3cIfQueBufferEntry 10 }
hh3cIfQueInUsedPeak OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peak of inbound queue buffer which is used."
::= { hh3cIfQueBufferEntry 11 }
hh3cIfQueInThreshold OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The alarm threshold of inbound queue buffer which is used."
::= { hh3cIfQueBufferEntry 12 }
hh3cIfQueInOverThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times over the alarm threshold of inbound queue buffer which is used."
::= { hh3cIfQueBufferEntry 13 }
hh3cIfQueInHeadRoomTotal OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total amount of inbound queue headroom buffer."
::= { hh3cIfQueBufferEntry 14 }
hh3cIfQueInHeadRoomFree OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of free inbound queue headroom buffer."
::= { hh3cIfQueBufferEntry 15 }
hh3cIfQueInHeadRoomUsedRatio OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of inbound queue headroom buffer which is used."
::= { hh3cIfQueBufferEntry 16 }
hh3cIfQueInHeadRoomUsedPeak OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peak of inbound queue headroom buffer which is used."
::= { hh3cIfQueBufferEntry 17 }
-- =================================================================
hh3cIfInterfaces OBJECT IDENTIFIER ::= { hh3cIfExtGroup 3 }
hh3cIfPhysicalNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Represents the number of physical interfaces on the device."
::= { hh3cIfInterfaces 1 }
hh3cIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of interface entries. The number of entries is given by
the value of IfNumber."
::= { hh3cIfInterfaces 2 }
hh3cIfEntry OBJECT-TYPE
SYNTAX Hh3cIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing management information applicable to a
particular interface."
INDEX
{
ifIndex
}
::= { hh3cIfTable 1 }
Hh3cIfEntry ::= SEQUENCE
{
hh3cIfUpDownTimes Integer32,
hh3cIfMtu Integer32,
hh3cIfBandwidthRate Integer32,
hh3cIfDiscardPktRate Integer32,
hh3cIfStatusKeepTime TimeTicks,
hh3cIfInNUcastPkts Counter64,
hh3cIfOutNUcastPkts Counter64,
hh3cIfIsPoe TruthValue,
hh3cIfOperStatus INTEGER,
hh3cIfDownTimes Integer32,
hh3cIfPfcStatus INTEGER,
hh3cIfPfcDot1pNoDrop BITS,
hh3cIfDescription DisplayString,
hh3cIfFwdErrDiscards Unsigned32,
hh3cIfFiberOrCopper INTEGER,
hh3cIfTransferMode INTEGER
}
hh3cIfUpDownTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface's up/down times, since the device was initialized."
::= { hh3cIfEntry 1 }
hh3cIfMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The size of the largest datagram that can be sent or received on the
interface, specified in octets. For interfaces that are used for
transmitting network datagram, this is the size of the largest network
datagram that can be sent on the interfaces."
::= { hh3cIfEntry 2 }
hh3cIfBandwidthRate OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The rate of the bandwidth for an interface."
::= { hh3cIfEntry 3 }
hh3cIfDiscardPktRate OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The rate of the discarded packets for an interface."
::= { hh3cIfEntry 4 }
hh3cIfStatusKeepTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time since the interface
entered its current operational state."
::= { hh3cIfEntry 5 }
hh3cIfInNUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of non-unicast (i.e., subnetwork-
broadcast or subnetwork-multicast) packets
delivered to a higher-layer protocol."
::= { hh3cIfEntry 6 }
hh3cIfOutNUcastPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of packets that higher-level
protocols requested be transmitted to a non-
unicast (i.e., a subnetwork-broadcast or
subnetwork-multicast) address."
::= { hh3cIfEntry 7 }
hh3cIfIsPoe OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether the interface supports PoE."
::= { hh3cIfEntry 8 }
hh3cIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
up(1), -- ready to forward packets
down(2),
testing(3), -- in a test mode
admindown(4) -- shut down by administrator
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of the interface. In testing state,
no operational packets can be forwarded. If ifAdminStatus
is down, hh3cIfOperStatus should be admindown. If
ifAdminStatus is changed to up, hh3cIfOperStatus should
change to up if the interface is ready to send and receive
network traffic; otherwise, it should stay in down state."
::= { hh3cIfEntry 9 }
hh3cIfDownTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the interface went down, since the device was initialized."
::= { hh3cIfEntry 10 }
hh3cIfPfcStatus OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Pfc (Priority-based Flow Control) status.
Forcibly enable Pfc by enable(1).
Disable Pfc by disable(2).
Set Pfc to auto mode by auto(3).
In auto mode, the local end automatically negotiates
the Pfc status with its peer.
When congestion occurs in the network, the local device notifies
the peer to stop sending packets carrying the specified 802.1p
priority if all of the following conditions exist:
1. Both the local end and the remote end have Pfc enabled.
2. Both the local end and the remote end have the dot1p list specified
by hh3cIfPfcDot1pNoDrop.
3. The specified 802.1p priority is in the dot1p list of hh3cIfPfcDot1pNoDrop.
4. The local end receives a packet carrying the specified 802.1p priority."
DEFVAL { disable }
::= { hh3cIfEntry 11 }
hh3cIfPfcDot1pNoDrop OBJECT-TYPE
SYNTAX BITS { pri0(0), pri1(1), pri2(2), pri3(3), pri4(4), pri5(5), pri6(6), pri7(7) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Pfc (Priority-based Flow Control) dot1q list,
bit 0 through bit 7 corresponding to priority 0 through priority 7.
See hh3cIfPfcStatus."
DEFVAL{ { } }
::= { hh3cIfEntry 12 }
hh3cIfDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..255))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is also an 'alias' name for the interface specified by a
network manager, like the object of ifAlias. However, the size of
this object is larger than ifAlias. When this object is set to a
string of more than 64 characters, only the first 64 characters of the
object are read for the IfAlias object."
::= { hh3cIfEntry 13 }
hh3cIfFwdErrDiscards OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets that were discarded when being forwarded."
::= { hh3cIfEntry 14 }
hh3cIfFiberOrCopper OBJECT-TYPE
SYNTAX INTEGER
{
unknown (0),
fiber (1),
copper (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the port,which can be copper or fiber."
::= { hh3cIfEntry 15 }
hh3cIfTransferMode OBJECT-TYPE
SYNTAX INTEGER
{
lan (1),
wan (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Transfer mode of the port, which can be lan or wan."
::= { hh3cIfEntry 16 }
hh3cIfUsingTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfUsingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table containing management information applicable to splitting
interfaces. To improve port density, reduce costs, and improve network
flexibility, a high-bandwidth interface can be split into multiple
low-bandwidth breakout interfaces, and the breakout interfaces can be
combined into a higher-bandwidth interface.
For example, a 40-GE interface can be split into four 10-GE breakout
interfaces. After the operation takes effect on a 40-GE interface, the
system deletes the 40-GE interface and creates four 10-GE breakout
interfaces."
::= { hh3cIfInterfaces 3 }
hh3cIfUsingEntry OBJECT-TYPE
SYNTAX Hh3cIfUsingEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of hh3cIfUsingTable."
INDEX { hh3cIfUsingIndex }
::= { hh3cIfUsingTable 1 }
Hh3cIfUsingEntry ::= SEQUENCE
{
hh3cIfUsingIndex Integer32,
hh3cIfUsingSupportType Integer32,
hh3cIfUsingType INTEGER,
hh3cIfUsingStatus INTEGER
}
hh3cIfUsingIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of an interface that can be split into multiple low-bandwidth
breakout interfaces or be restored to a high-bandwidth interface."
::= { hh3cIfUsingEntry 1 }
hh3cIfUsingSupportType OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the port type which can be split into or restored to.
From lowest bit, each bit corresponds to a port type ('10GE', '20GE',
'40GE', '100GE', '25GE', '50GE', '200GE', '400GE').
For example, value 3 means this object can be split into 10GE or 20GE,
value 4 means this object can be split into 40GE, or can be restored to
40GE."
::= { hh3cIfUsingEntry 2 }
hh3cIfUsingType OBJECT-TYPE
SYNTAX INTEGER {
noUsing(0),
using10GE(1),
using20GE(2),
using40GE(3),
using100GE(4),
using25GE(5),
using50GE(6),
using200GE(7),
using400GE(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the port type that can be split into or restored to.
After this object is set to a non-zero value, the operation returns
success in the following cases:
1. The original instance still exists and is read as a non-zero value.
In this case, object hh3cIfUsingStatus change to needReboot(1),
which means that you need to reboot the line card (for distributed
devices) or device (for centralized devices) where the port is
located to make the operation take effect.
Set this object to noUsing(0) for cancelling the operation.
2. The operation takes effect immediately.
Original instance is deleted and new instance is created while the
operation takes effect."
::= { hh3cIfUsingEntry 3 }
hh3cIfUsingStatus OBJECT-TYPE
SYNTAX INTEGER {
noUsing(0),
needReboot(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" After object hh3cIfUsingType is set to a non-zero value, the value
for this object is needReboot(1) until you reboot the line card (for
distributed devices) or device (for centralized devices) where the
port is located."
::= { hh3cIfUsingEntry 4 }
--
-- Notification definitions
--
-- =================================================================
-- Traps are defined below.
hh3cIfExtTrap OBJECT IDENTIFIER ::= { hh3cIfExt 3 }
hh3cIfExtTrapPrex OBJECT IDENTIFIER ::= { hh3cIfExtTrap 0 }
-- All trap definitions should be placed under this object.
hh3cIfBandwidthUsageHigh NOTIFICATION-TYPE
OBJECTS
{
ifDescr,
hh3cIfBandwidthRate,
hh3cIfBandwidthUpperLimit
}
STATUS current
DESCRIPTION
"The notification is generated when the rate of the bandwidth for the
interface exceeds the upper limit."
::= { hh3cIfExtTrapPrex 1 }
hh3cIfDiscardPktRateHigh NOTIFICATION-TYPE
OBJECTS
{
ifDescr,
hh3cIfDiscardPktRate,
hh3cIfDiscardPktRateUpperLimit
}
STATUS current
DESCRIPTION
"The notification is generated when the rate of the discarded packets
for the interface exceeds the upper limit."
::= { hh3cIfExtTrapPrex 2 }
hh3cIfDampeningSuppressed NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the interface is suppressed
via dampening."
::= { hh3cIfExtTrapPrex 3 }
hh3cIfDampeningNotSuppressed NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when the interface is resumed to
not suppressed via dampening."
::= { hh3cIfExtTrapPrex 4 }
hh3cIfPortUp NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when physical state of the interface changes to up."
::= { hh3cIfExtTrapPrex 5 }
hh3cIfPortDown NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr
}
STATUS current
DESCRIPTION
"The notification is generated when physical state of the interface changes to down."
::= { hh3cIfExtTrapPrex 6 }
hh3cIfPfcOutRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfPfcDot1pValue,
hh3cIfPfcDot1pOutPps,
hh3cIfPfcDot1pOutPpsThreshold
}
STATUS current
DESCRIPTION
"The notification is generated when the outbound rate exceeds the threshold for the dot1p value.
If the hh3cIfPfcDot1pOutPpsThreshold is set to 0, no hh3cIfPfcOutRising will be generated."
::= { hh3cIfExtTrapPrex 7 }
hh3cIfPfcInRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfPfcDot1pValue,
hh3cIfPfcDot1pInPps,
hh3cIfPfcDot1pInPpsThreshold
}
STATUS current
DESCRIPTION
"The notification is generated when the inbound rate exceeds the threshold for the dot1p value.
If the hh3cIfPfcDot1pInPpsThreshold is set to 0, no hh3cIfPfcInRising will be generated."
::= { hh3cIfExtTrapPrex 8 }
hh3cIfExtTrapObject OBJECT IDENTIFIER ::= { hh3cIfExtTrap 1 }
hh3cIfExtTrapCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfExtTrapCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The trap configuration table."
::= { hh3cIfExtTrapObject 1 }
hh3cIfExtTrapCfgEntry OBJECT-TYPE
SYNTAX Hh3cIfExtTrapCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for this table."
INDEX
{
ifIndex
}
::= { hh3cIfExtTrapCfgTable 1 }
Hh3cIfExtTrapCfgEntry ::= SEQUENCE
{
hh3cIfBandwidthUpperLimit Integer32,
hh3cIfDiscardPktRateUpperLimit Integer32
}
hh3cIfBandwidthUpperLimit OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rate of the bandwidth upper limit for an interface."
::= { hh3cIfExtTrapCfgEntry 1 }
hh3cIfDiscardPktRateUpperLimit OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rate of the discarded packets upper limit for an interface."
::= { hh3cIfExtTrapCfgEntry 2 }
-- =================================================================
hh3cIfMonScalarGroup OBJECT IDENTIFIER ::= { hh3cIfExt 4 }
-- =================================================================
-- All other groups are defined below. Of course, scalar objects can
-- also be defined in a subsection, but they must be one part of
-- that subsection.
-- Note that a scalar group should be defined firstly and all
-- scalar objects are placed under that group when doing so.
hh3cIfMonGroup OBJECT IDENTIFIER ::= { hh3cIfExt 5 }
-- =================================================================
hh3cIfMonStat OBJECT IDENTIFIER ::= { hh3cIfMonGroup 1 }
hh3cIfMonStatTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfMonStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is about some types of statistics."
::= { hh3cIfMonStat 1}
hh3cIfMonStatEntry OBJECT-TYPE
SYNTAX Hh3cIfMonStatEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry items."
INDEX
{
ifIndex
}
::= { hh3cIfMonStatTable 1}
Hh3cIfMonStatEntry ::= SEQUENCE
{
hh3cIfMonInputUsageStatistics Unsigned32,
hh3cIfMonOutputUsageStatistics Unsigned32,
hh3cIfMonInputErrorAlarmStatistics Counter64,
hh3cIfMonOutputErrorAlarmStatistics Counter64,
hh3cIfMonSdhErrorStatistics Counter64,
hh3cIfMonSdhB1ErrorStatistics Counter64,
hh3cIfMonSdhB2ErrorStatistics Counter64,
hh3cIfMonCRCErrorStatistics Counter64,
hh3cIfMonRxPauseFrameStatistics Counter64,
hh3cIfMonTxPauseFrameStatistics Counter64,
hh3cIfMonRuntStatistics Counter64,
hh3cIfMonGiantStatistics Counter64
}
hh3cIfMonInputUsageStatistics OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the inbound bandwidth usage."
::= { hh3cIfMonStatEntry 1 }
hh3cIfMonOutputUsageStatistics OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the outbound bandwidth usage."
::= { hh3cIfMonStatEntry 2 }
hh3cIfMonInputErrorAlarmStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of inbound error packets."
::= { hh3cIfMonStatEntry 3 }
hh3cIfMonOutputErrorAlarmStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of outbound error packets."
::= { hh3cIfMonStatEntry 4 }
hh3cIfMonSdhErrorStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of SDH error packets."
::= { hh3cIfMonStatEntry 5 }
hh3cIfMonSdhB1ErrorStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of SDH B1 error packets."
::= { hh3cIfMonStatEntry 6 }
hh3cIfMonSdhB2ErrorStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of SDH B2 error packets."
::= { hh3cIfMonStatEntry 7 }
hh3cIfMonCRCErrorStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of CRC error packets. "
::= { hh3cIfMonStatEntry 8}
hh3cIfMonRxPauseFrameStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of received pause frames."
::= { hh3cIfMonStatEntry 9}
hh3cIfMonTxPauseFrameStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the number of transmitted pause frames."
::= { hh3cIfMonStatEntry 10}
hh3cIfMonRuntStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the Runt packets."
::= { hh3cIfMonStatEntry 11 }
hh3cIfMonGiantStatistics OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Statistics about the Giant packets."
::= { hh3cIfMonStatEntry 12 }
-- =================================================================
hh3cIfMonControl OBJECT IDENTIFIER ::= { hh3cIfMonGroup 2 }
hh3cIfMonThresholdTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfMonThresholdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is about the upper threshold, lower threshold, CRC type, and inspection interval.
The upper threshold and lower threshold must be bound together. If the CRC type is configured,
node hh3cIfMonCRCErrType must be carried. If there is no current configuration for a type, all
attributes of this type must be carried. After modification, the table hh3cIfMonAlarmDownEnableTable
will be changed.If there is configuration for the current type, setting all attributes of this type to
invalid values indicates that the configuration of this type is deleted, and the table hh3cIfMonAlarmDownEnableTable
will be changed. Take CRC as an example. If there is no CRC configuration, nodes hh3cIfMonCRCErrorLowThres,
hh3cIfMonCRCErrorLowThres, hh3cIfMonCRCErrorLowThres, and hh3cIfMonCRCErrorLowThres must be carried.
After modification, the node hh3cIfMonCRCErrorEnableDown becomes false. If there is CRC configuration,
settings the nodes hh3cIfMonCRCErrorLowThres, hh3cIfMonCRCErrorHighThres, hh3cIfMonCRCErrorInterval,
and hh3cIfMonCRCErrorInterval to invalid values indicates the CRC configuration is deleted, and the
node hh3cIfMonCRCErrorEnableDown becomes invalid."
::= { hh3cIfMonControl 1 }
hh3cIfMonThresholdEntry OBJECT-TYPE
SYNTAX Hh3cIfMonThresholdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry items."
INDEX
{
ifIndex
}
::= { hh3cIfMonThresholdTable 1}
Hh3cIfMonThresholdEntry ::= SEQUENCE
{
hh3cIfMonInputUsageLowThres Unsigned32,
hh3cIfMonInputUsageHighThres Unsigned32,
hh3cIfMonOutputUsageLowThres Unsigned32,
hh3cIfMonOutputUsageHighThres Unsigned32,
hh3cIfMonInputErrorAlarmLowThres Unsigned32,
hh3cIfMonInputErrorAlarmHighThres Unsigned32,
hh3cIfMonInputErrorAlarmInterval Unsigned32,
hh3cIfMonOutputErrorAlarmLowThres Unsigned32,
hh3cIfMonOutputErrorAlarmHighThres Unsigned32,
hh3cIfMonOutputErrorAlarmInterval Unsigned32,
hh3cIfMonSdhErrorLowThres Unsigned32,
hh3cIfMonSdhErrorHighThres Unsigned32,
hh3cIfMonSdhErrorInterval Unsigned32,
hh3cIfMonSdhB1ErrorLowThres Unsigned32,
hh3cIfMonSdhB1ErrorHighThres Unsigned32,
hh3cIfMonSdhB1ErrorInterval Unsigned32,
hh3cIfMonSdhB2ErrorLowThres Unsigned32,
hh3cIfMonSdhB2ErrorHighThres Unsigned32,
hh3cIfMonSdhB2ErrorInterval Unsigned32,
hh3cIfMonCRCErrorLowThres Unsigned32,
hh3cIfMonCRCErrorHighThres Unsigned32,
hh3cIfMonCRCErrorInterval Unsigned32,
hh3cIfMonCRCErrType INTEGER,
hh3cIfMonRxPauseFrameLowThres Unsigned32,
hh3cIfMonRxPauseFrameHighThres Unsigned32,
hh3cIfMonRxPauseFrameInterval Unsigned32,
hh3cIfMonTxPauseFrameLowThres Unsigned32,
hh3cIfMonTxPauseFrameHighThres Unsigned32,
hh3cIfMonTxPauseFrameInterval Unsigned32,
hh3cIfMonGiantLowThres Unsigned32,
hh3cIfMonGiantHighThres Unsigned32,
hh3cIfMonGiantInterval Unsigned32,
hh3cIfMonRuntLowThres Unsigned32,
hh3cIfMonRuntHighThres Unsigned32,
hh3cIfMonRuntInterval Unsigned32
}
hh3cIfMonInputUsageLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the inbound bandwidth usage."
DEFVAL { 80 }
::= { hh3cIfMonThresholdEntry 1 }
hh3cIfMonInputUsageHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the inbound bandwidth usage."
DEFVAL { 90 }
::= { hh3cIfMonThresholdEntry 2 }
hh3cIfMonOutputUsageLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the outbound bandwidth usage."
DEFVAL { 80 }
::= { hh3cIfMonThresholdEntry 3 }
hh3cIfMonOutputUsageHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the outbound bandwidth usage."
DEFVAL { 90 }
::= { hh3cIfMonThresholdEntry 4 }
hh3cIfMonInputErrorAlarmLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of inbound error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 5 }
hh3cIfMonInputErrorAlarmHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of inbound error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 6 }
hh3cIfMonInputErrorAlarmInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of inbound error packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 7 }
hh3cIfMonOutputErrorAlarmLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of outbound error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 8 }
hh3cIfMonOutputErrorAlarmHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of outbound error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 9 }
hh3cIfMonOutputErrorAlarmInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of outbound error packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 10 }
hh3cIfMonSdhErrorLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of SDH error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 11 }
hh3cIfMonSdhErrorHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of SDH error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 12 }
hh3cIfMonSdhErrorInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of SDH error packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 13 }
hh3cIfMonSdhB1ErrorLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of SDH B1 error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 14 }
hh3cIfMonSdhB1ErrorHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of SDH B1 error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 15 }
hh3cIfMonSdhB1ErrorInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of SDH B1 error packets. "
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 16 }
hh3cIfMonSdhB2ErrorLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of SDH B2 error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 17 }
hh3cIfMonSdhB2ErrorHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of SDH B2 error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 18 }
hh3cIfMonSdhB2ErrorInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of SDH B2 error packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 19 }
hh3cIfMonCRCErrorLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of CRC error packets."
::= { hh3cIfMonThresholdEntry 20 }
hh3cIfMonCRCErrorHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of CRC error packets."
::= { hh3cIfMonThresholdEntry 21 }
hh3cIfMonCRCErrorInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of CRC error packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 22 }
hh3cIfMonCRCErrType OBJECT-TYPE
SYNTAX INTEGER
{
absolute(1),
ratio(2),
invalid(65535)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Inspection type for the CRC error packets."
::= { hh3cIfMonThresholdEntry 23 }
hh3cIfMonRxPauseFrameLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of received pause frames."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 24 }
hh3cIfMonRxPauseFrameHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of received pause frames."
DEFVAL { 500 }
::= { hh3cIfMonThresholdEntry 25 }
hh3cIfMonRxPauseFrameInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of received pause frames."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 26 }
hh3cIfMonTxPauseFrameLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of transmitted pause frames."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 27 }
hh3cIfMonTxPauseFrameHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of transmitted pause frames."
DEFVAL { 500 }
::= { hh3cIfMonThresholdEntry 28 }
hh3cIfMonTxPauseFrameInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of transmitted pause frames."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 29 }
hh3cIfMonGiantLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of Giant error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 30 }
hh3cIfMonGiantHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of Giant error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 31 }
hh3cIfMonGiantInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of Giant error packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 32 }
hh3cIfMonRuntLowThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower threshold for the number of Runt error packets."
DEFVAL { 100 }
::= { hh3cIfMonThresholdEntry 33 }
hh3cIfMonRuntHighThres OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper threshold for the number of Runt error packets."
DEFVAL { 1000 }
::= { hh3cIfMonThresholdEntry 34 }
hh3cIfMonRuntInterval OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Inspection interval for the number of Runt packets."
DEFVAL { 10 }
::= { hh3cIfMonThresholdEntry 35 }
-- =================================================================
hh3cIfMonAlarmDownEnableTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cIfMonAlarmDownEnableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table can set or get whether to enable the interface down function."
::= { hh3cIfMonControl 2 }
hh3cIfMonAlarmDownEnableEntry OBJECT-TYPE
SYNTAX Hh3cIfMonAlarmDownEnableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entry items"
INDEX
{
ifIndex
}
::= { hh3cIfMonAlarmDownEnableTable 1}
Hh3cIfMonAlarmDownEnableEntry ::= SEQUENCE
{
hh3cIfMonInputErrorAlarmEnableDown TruthValue,
hh3cIfMonOutputErrorAlarmEnableDown TruthValue,
hh3cIfMonSdhErrorEnableDown TruthValue,
hh3cIfMonSdhB1ErrorEnableDown TruthValue,
hh3cIfMonSdhB2ErrorEnableDown TruthValue,
hh3cIfMonCRCErrorEnableDown TruthValue,
hh3cIfMonGiantEnableDown TruthValue,
hh3cIfMonRuntEnableDown TruthValue
}
hh3cIfMonInputErrorAlarmEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of inbound error packets exceeds the upper threshold,
the physical interface goes down. "
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 1 }
hh3cIfMonOutputErrorAlarmEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of outbound error packets exceeds the upper threshold,
the physical interface goes down."
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 2 }
hh3cIfMonSdhErrorEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of SDH error packets exceeds the upper threshold,
the physical interface goes down. "
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 3 }
hh3cIfMonSdhB1ErrorEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of SDH B1 error packets exceeds the upper threshold,
the physical interface goes down."
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 4 }
hh3cIfMonSdhB2ErrorEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of SDH B2 error packets exceeds the upper threshold,
the physical interface goes down."
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 5 }
hh3cIfMonCRCErrorEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of CRC error packets exceeds the upper threshold,
the physical interface goes down."
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 6 }
hh3cIfMonGiantEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of Giant error packets exceeds the upper threshold,
the physical interface goes down."
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 7 }
hh3cIfMonRuntEnableDown OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the number of Runt error packets exceeds the upper threshold,
the physical interface goes down."
DEFVAL { false }
::= { hh3cIfMonAlarmDownEnableEntry 8 }
-- =================================================================
-- Traps are defined below.
hh3cIfMonTrap OBJECT IDENTIFIER ::= { hh3cIfExt 6 }
hh3cIfMonTrapPrex OBJECT IDENTIFIER ::= { hh3cIfMonTrap 0 }
-- All trap definitions should be placed under this object.
hh3cIfMonInputUsageRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonInputUsageLowThres,
hh3cIfMonInputUsageHighThres,
hh3cIfMonInputUsageStatistics
}
STATUS current
DESCRIPTION
"The notification is generated when the inbound bandwidth usage exceeds the
upper threshold."
::= { hh3cIfMonTrapPrex 1 }
hh3cIfMonInputUsageResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonInputUsageLowThres,
hh3cIfMonInputUsageHighThres,
hh3cIfMonInputUsageStatistics
}
STATUS current
DESCRIPTION
"The notification is generated when the inbound bandwidth usage drops from
above the upper threshold to below the lower threshold."
::= { hh3cIfMonTrapPrex 2 }
hh3cIfMonOutputUsageRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonOutputUsageLowThres,
hh3cIfMonOutputUsageHighThres,
hh3cIfMonOutputUsageStatistics
}
STATUS current
DESCRIPTION
"The notification is generated when the outbound bandwidth usage exceeds the
upper threshold."
::= { hh3cIfMonTrapPrex 3 }
hh3cIfMonOutputUsageResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonOutputUsageLowThres,
hh3cIfMonOutputUsageHighThres,
hh3cIfMonOutputUsageStatistics
}
STATUS current
DESCRIPTION
"The notification is generated when the outbound bandwidth usage drops from
above the upper threshold to below the lower threshold."
::= { hh3cIfMonTrapPrex 4 }
hh3cIfMonInputErrorAlarmRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonInputErrorAlarmHighThres,
hh3cIfMonInputErrorAlarmLowThres,
hh3cIfMonInputErrorAlarmStatistics,
hh3cIfMonInputErrorAlarmInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of inbound error packets exceeds the
upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 5 }
hh3cIfMonInputErrorAlarmResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonInputErrorAlarmHighThres,
hh3cIfMonInputErrorAlarmLowThres,
hh3cIfMonInputErrorAlarmStatistics,
hh3cIfMonInputErrorAlarmInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of inbound error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 6 }
hh3cIfMonOutputErrorAlarmRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonOutputErrorAlarmHighThres,
hh3cIfMonOutputErrorAlarmLowThres,
hh3cIfMonOutputErrorAlarmStatistics,
hh3cIfMonOutputErrorAlarmInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of outbound error packets exceeds the
upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 7 }
hh3cIfMonOutputErrorAlarmResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonOutputErrorAlarmHighThres,
hh3cIfMonOutputErrorAlarmLowThres,
hh3cIfMonOutputErrorAlarmStatistics,
hh3cIfMonOutputErrorAlarmInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of outbound error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 8 }
hh3cIfMonSdhErrorRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonSdhErrorLowThres,
hh3cIfMonSdhErrorHighThres,
hh3cIfMonSdhErrorStatistics,
hh3cIfMonSdhErrorInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of SDH error packets exceeds
the upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 9 }
hh3cIfMonSdhErrorResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonSdhErrorLowThres,
hh3cIfMonSdhErrorHighThres,
hh3cIfMonSdhErrorStatistics,
hh3cIfMonSdhErrorInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of SDH error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 10 }
hh3cIfMonSdhB1ErrorRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonSdhB1ErrorLowThres,
hh3cIfMonSdhB1ErrorHighThres,
hh3cIfMonSdhB1ErrorStatistics,
hh3cIfMonSdhB1ErrorInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of SDH B1 error packets exceeds
the upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 11 }
hh3cIfMonSdhB1ErrorResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonSdhB1ErrorLowThres,
hh3cIfMonSdhB1ErrorHighThres,
hh3cIfMonSdhB1ErrorStatistics,
hh3cIfMonSdhB1ErrorInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of SDH B1 error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 12 }
hh3cIfMonSdhB2ErrorRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonSdhB2ErrorLowThres,
hh3cIfMonSdhB2ErrorHighThres,
hh3cIfMonSdhB2ErrorStatistics,
hh3cIfMonSdhB2ErrorInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of SDH B2 error packets exceeds
the upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 13 }
hh3cIfMonSdhB2ErrorResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonSdhB2ErrorLowThres,
hh3cIfMonSdhB2ErrorHighThres,
hh3cIfMonSdhB2ErrorStatistics,
hh3cIfMonSdhB2ErrorInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of SDH B2 error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 14 }
hh3cIfMonCRCErrorRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonCRCErrorHighThres,
hh3cIfMonCRCErrorLowThres,
hh3cIfMonCRCErrorStatistics,
hh3cIfMonCRCErrorInterval,
hh3cIfMonCRCErrType
}
STATUS current
DESCRIPTION
"The notification is generated when the number of CRC error packets exceeds
the upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 15 }
hh3cIfMonCRCErrorResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonCRCErrorHighThres,
hh3cIfMonCRCErrorLowThres,
hh3cIfMonCRCErrorStatistics,
hh3cIfMonCRCErrorInterval,
hh3cIfMonCRCErrType
}
STATUS current
DESCRIPTION
"The notification is generated when the number of CRC error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 16 }
hh3cIfMonRxPauseFrameRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonRxPauseFrameHighThres,
hh3cIfMonRxPauseFrameLowThres,
hh3cIfMonRxPauseFrameStatistics,
hh3cIfMonRxPauseFrameInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of received pause frames exceeds the
upper threshold."
::= { hh3cIfMonTrapPrex 17 }
hh3cIfMonRxPauseFrameResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonRxPauseFrameHighThres,
hh3cIfMonRxPauseFrameLowThres,
hh3cIfMonRxPauseFrameStatistics,
hh3cIfMonRxPauseFrameInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of received pause frames drops from
above the upper threshold to below the lower-threshold."
::= { hh3cIfMonTrapPrex 18 }
hh3cIfMonTxPauseFrameRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonTxPauseFrameHighThres,
hh3cIfMonTxPauseFrameLowThres,
hh3cIfMonTxPauseFrameStatistics,
hh3cIfMonTxPauseFrameInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of transmitted pause frames exceeds
the upper threshold."
::= { hh3cIfMonTrapPrex 19 }
hh3cIfMonTxPauseFrameResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonTxPauseFrameHighThres,
hh3cIfMonTxPauseFrameLowThres,
hh3cIfMonTxPauseFrameStatistics,
hh3cIfMonTxPauseFrameInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of transmitted pause frames drops from
above the upper threshold to below the lower threshold."
::= { hh3cIfMonTrapPrex 20 }
hh3cIfMonGiantRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonGiantLowThres,
hh3cIfMonGiantHighThres,
hh3cIfMonGiantStatistics,
hh3cIfMonGiantInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of Giant error packets exceeds
the upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 21 }
hh3cIfMonGiantResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonGiantLowThres,
hh3cIfMonGiantHighThres,
hh3cIfMonGiantStatistics,
hh3cIfMonGiantInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of Giant error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 22 }
hh3cIfMonRuntRising NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonRuntLowThres,
hh3cIfMonRuntHighThres,
hh3cIfMonRuntStatistics,
hh3cIfMonRuntInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of Runt error packets exceeds
the upper threshold within the default interval."
::= { hh3cIfMonTrapPrex 23 }
hh3cIfMonRuntResume NOTIFICATION-TYPE
OBJECTS
{
ifIndex,
ifDescr,
hh3cIfMonRuntLowThres,
hh3cIfMonRuntHighThres,
hh3cIfMonRuntStatistics,
hh3cIfMonRuntInterval
}
STATUS current
DESCRIPTION
"The notification is generated when the number of Runt error packets drops from
above the upper threshold to below the lower threshold within the default interval."
::= { hh3cIfMonTrapPrex 24 }
hh3cIfMonTrapObject OBJECT IDENTIFIER ::= { hh3cIfMonTrap 1 }
END
|