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
|
-- =================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: Huawei Ethernet ARP MIB
-- Reference: HUAWEI Enterprise MIB
-- Version: V3.11
-- History:
-- Version: V3.02
-- History:
-- chenzhiwei, 2009-08-07, add nodes for arp anti-attack.
-- =================================================================
HUAWEI-ETHARP-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-TYPE, MODULE-IDENTITY, OBJECT-TYPE, IpAddress, Counter32, Integer32, Unsigned32, NOTIFICATION-TYPE
FROM SNMPv2-SMI
PhysAddress, MacAddress,
DisplayString,
RowStatus
FROM SNMPv2-TC
NOTIFICATION-GROUP, OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
InterfaceIndex
FROM IF-MIB
InetAddressIPv4
FROM INET-ADDRESS-MIB
PhysicalIndex, entPhysicalIndex, entPhysicalName
FROM ENTITY-MIB
EnabledStatus
FROM P-BRIDGE-MIB;
hwEthernetARPMIB MODULE-IDENTITY
LAST-UPDATED "201707270000Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"This MIB describes objects used for managing Ethernet ARP,
including ARP Speed-limit,ARP Limit etc. "
REVISION "201707270000Z"
DESCRIPTION
"MODIFY hwFwdArpAlarmResume"
REVISION "201705191520Z"
DESCRIPTION
"MODIFY hwEthernetARPLimitExceed"
REVISION "201705181520Z"
DESCRIPTION
"MODIFY hwEthernetARPLimitExceed"
REVISION "201705081520Z"
DESCRIPTION
"MODIFY hwEthernetARPLimitExceed,hwEthernetARPLimitExceedResume"
REVISION "201607011000Z"
DESCRIPTION
"Add hwArpNumberStatisticsTable at 2016-07-01."
REVISION "201512102057Z"
DESCRIPTION
"Delete default value of hwArpEntryExpireFakeTime and hwArpEntryExpireDetectMode at 2015-12-10."
REVISION "201512101044Z"
DESCRIPTION
"Add ARP host conflict at 2015-12-10 "
REVISION "201404231044Z"
DESCRIPTION
"Add ARP remote backup fail trap at 2014-04-23."
REVISION "201309070000Z"
DESCRIPTION
"Fix the errors checked by a tool."
REVISION "200606100000Z" -- February 12, 2003 at 00:00 GMT
DESCRIPTION
"The initial revision of this MIB module."
--add by chenlong 00230926
REVISION "201611172050Z"
DESCRIPTION
"ADD hwEthernetARPGateWayDuplicateAlarm, hwEthernetARPGateWayDuplicateAlarmResume"
--add by liupeng 00349956
REVISION "201611181626Z"
DESCRIPTION
"ADD hwFwdArpAlarmOccur, hwFwdArpAlarmResume"
REVISION "201611211648Z"
DESCRIPTION
"MODIFY hwEthernetARPGateWayDuplicateAlarm, hwEthernetARPGateWayDuplicateAlarmResume"
REVISION "201611301919Z"
DESCRIPTION
"MODIFY hwEthernetARPGateWayDuplicateAlarmResume"
::= { hwDatacomm 123 }
hwEthernetARPObjects OBJECT IDENTIFIER ::= { hwEthernetARPMIB 1 }
-- =================================================================
-- 1st The Node of Anti-AttackLog
-- =================================================================
hwEthernetARPAntiAttackLog OBJECT-TYPE
SYNTAX Integer32(0..1200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"To prevent log and trap from being attacked, the function is not enabled by default."
::= { hwEthernetARPObjects 1 }
-- =================================================================
-- 2nd The Node of LearningStrict
-- =================================================================
hwEthernetARPLearningStrict OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the ARP strict learning. In this way, routers can learn ARP entries only from
the arp reply in response to the arp requrest send by the router."
::= { hwEthernetARPObjects 2 }
-- =================================================================
-- 3rd The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPSpeedLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the configuration information of Ethernet ARP Speed limit slot.
The information includes type, speedvalue, sourceip and destip."
::= { hwEthernetARPObjects 3 }
hwEthernetARPSpeedLimitEntry OBJECT-TYPE
SYNTAX HwEthernetARPSpeedLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the configuration information of Ethernet ARP Speed limit slot.
The information includes type, speedvalue, sourceip and destip."
INDEX {hwEthernetARPLimitSlot,hwEthernetARPLimitType,hwEthernetARPLimitIPType}
::= { hwEthernetARPSpeedLimitTable 1 }
HwEthernetARPSpeedLimitEntry ::=
SEQUENCE {
hwEthernetARPLimitSlot Integer32 ,
hwEthernetARPLimitType INTEGER ,
hwEthernetARPLimitIPType INTEGER ,
hwEthernetARPLimitSpeedValue Unsigned32
}
hwEthernetARPLimitSlot OBJECT-TYPE
SYNTAX Integer32(0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The slot of ARP Speed Limit."
::= { hwEthernetARPSpeedLimitEntry 1 }
hwEthernetARPLimitType OBJECT-TYPE
SYNTAX INTEGER{
arp(1),
arpmiss(2)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Type of ARP Speed Limit."
::= { hwEthernetARPSpeedLimitEntry 2 }
hwEthernetARPLimitIPType OBJECT-TYPE
SYNTAX INTEGER{
sourceip(4),
destinationip(8)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ARP speed limit is performed on a source or a destination IP address."
::= { hwEthernetARPSpeedLimitEntry 3 }
hwEthernetARPLimitSpeedValue OBJECT-TYPE
SYNTAX Unsigned32(0..65536)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Speed Value of ARP Speed Limit."
::= { hwEthernetARPSpeedLimitEntry 4 }
-- =================================================================
-- 5th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Indicates an interface enabled with ARP-MISS
or an interface receiving the ARP packets."
::= { hwEthernetARPObjects 4 }
-- =================================================================
-- 5th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitConfigured OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Configured Speed Limit Value of ARP Speed Limit."
::= { hwEthernetARPObjects 5 }
-- =================================================================
-- 5th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitCurrent OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Current Speed Limit Value of ARP Speed Limit."
::= { hwEthernetARPObjects 6 }
-- =================================================================
-- 5th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Type of ARP Speed Limit."
::= { hwEthernetARPObjects 7 }
-- =================================================================
-- 6th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitSrcIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Source IP address of ARP Speed Limit."
::= { hwEthernetARPObjects 8 }
-- =================================================================
-- 6th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitDstIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The Destination IP address of ARP Speed Limit."
::= { hwEthernetARPObjects 9 }
-- =================================================================
-- 7th The Table of ARP Speed Limit
-- =================================================================
hwEthernetARPSpeedLimitVPNinstance OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The VPN-instance name of ARP Speed Limit."
::= { hwEthernetARPObjects 10 }
--
-- ARP LIMIT DEFINATION
-- display arp statics begin
hwEthernetARPStaticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPStaticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains the statistics about Ethernet ARP.
The statistics include number of received ARP packets,
number of received ARP-MISS packets, number of learned ARP packets,
number of discarded ARP packets caused by the ARP limit,
the number of discarded ARP-MISS packets caused by the limit
and the number of discarded ARP and ARP-MISS packets caused by other reasons."
::= { hwEthernetARPObjects 11 }
hwEthernetARPStaticsEntry OBJECT-TYPE
SYNTAX HwEthernetARPStaticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table contains the statistics about Ethernet ARP.
The statistics include number of received ARP packets,
number of received ARP-MISS packets, number of learned ARP packets,
number of discarded ARP packets caused by the ARP limit,
the number of discarded ARP-MISS packets caused by the limit
and the number of discarded ARP and ARP-MISS packets caused by other reasons."
INDEX {hwEthernetARPStaticsSlot}
::= { hwEthernetARPStaticsTable 1 }
HwEthernetARPStaticsEntry ::=
SEQUENCE {
hwEthernetARPStaticsSlot Integer32 ,
hwEthernetARPStaticsLearnTotal Counter32 ,
hwEthernetARPDropForLimit Counter32 ,
hwEthernetARPDropForARPSuppress Counter32 ,
hwEthernetARPDropForARPMissSuppress Counter32,
hwEthernetARPDropForOther Counter32 ,
hwEthernetARPMissDropForOther Counter32 ,
hwEthernetARPRcvNum Counter32 ,
hwEthernetARPMissRcvNum Counter32 ,
hwEthernetARPStaticsOperation INTEGER ,
hwEthernetARPDropForARPProxySuppress Counter32
}
hwEthernetARPStaticsSlot OBJECT-TYPE
SYNTAX Integer32(0..128 | 65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The slot about which the ARP statistics are displayed."
::= { hwEthernetARPStaticsEntry 1 }
hwEthernetARPStaticsLearnTotal OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of the learned ARP packets."
::= { hwEthernetARPStaticsEntry 2 }
hwEthernetARPDropForLimit OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discarded packets caused by limit."
::= { hwEthernetARPStaticsEntry 3 }
hwEthernetARPDropForARPSuppress OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discarded packets caused by the ARP suppress."
::= { hwEthernetARPStaticsEntry 4 }
hwEthernetARPDropForARPMissSuppress OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discarded packets caused by the ARP-MISS suppress."
::= { hwEthernetARPStaticsEntry 5 }
hwEthernetARPDropForOther OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discarded ARP packets caused by other reasons."
::= { hwEthernetARPStaticsEntry 6 }
hwEthernetARPMissDropForOther OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discarded ARP-MISS caused by other reasons."
::= { hwEthernetARPStaticsEntry 7 }
hwEthernetARPRcvNum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received ARP packets."
::= { hwEthernetARPStaticsEntry 8 }
hwEthernetARPMissRcvNum OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of received ARP-MISS."
::= { hwEthernetARPStaticsEntry 9 }
hwEthernetARPStaticsOperation OBJECT-TYPE
SYNTAX INTEGER {
reset(1),
unused(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"resets the statistics about Ethernet ARP."
::= { hwEthernetARPStaticsEntry 10 }
hwEthernetARPDropForARPProxySuppress OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of discarded packets caused by the ARP-PROXY suppress."
::= { hwEthernetARPStaticsEntry 11 }
-- display arp statics end
-- disp arp and statics with interface and vlanid begin
hwEthARPShowWithInterAndVidTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthARPShowWithInterAndVidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Display the ARP table based on interface number or interface number and VLAN ID."
::= { hwEthernetARPObjects 12 }
hwEthARPShowWithInterAndVidEntry OBJECT-TYPE
SYNTAX HwEthARPShowWithInterAndVidEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Display the ARP table based on interface number or interface number and VLAN ID."
INDEX {hwEthARPShowIfindex,hwEthARPShowVid,hwEthARPIpAddr}
::= { hwEthARPShowWithInterAndVidTable 1 }
HwEthARPShowWithInterAndVidEntry ::=
SEQUENCE {
hwEthARPShowIfindex InterfaceIndex ,
hwEthARPShowVid Integer32 ,
hwEthARPIpAddr IpAddress ,
hwEthARPMacAddr PhysAddress
}
hwEthARPShowIfindex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface learns ARP packets."
::= { hwEthARPShowWithInterAndVidEntry 1 }
hwEthARPShowVid OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN receives the APR packets."
::= { hwEthARPShowWithInterAndVidEntry 2 }
hwEthARPIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ip of ARP ."
::= { hwEthARPShowWithInterAndVidEntry 3 }
hwEthARPMacAddr OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC of ARP ."
::= { hwEthARPShowWithInterAndVidEntry 4 }
-- disp arp and statics with interface and vlanid end
-- arp limit config definition begin
hwEthARPLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthARPLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the ARP limit based on interfaces or VLANs."
::= { hwEthernetARPObjects 13 }
hwEthARPLimitEntry OBJECT-TYPE
SYNTAX HwEthARPLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the ARP limit based on interfaces or VLANs."
INDEX {hwEthARPLimitCfgIfindex,hwEthARPVLANFirst,hwEthARPVLANLast}
::= { hwEthARPLimitTable 1 }
HwEthARPLimitEntry ::=
SEQUENCE {
hwEthARPLimitCfgIfindex InterfaceIndex ,
hwEthARPVLANFirst Integer32 ,
hwEthARPVLANLast Integer32 ,
hwEthARPLimitNum Integer32 ,
hwEthARPLimitRowStatus RowStatus
}
hwEthARPLimitCfgIfindex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface on which the limit is configured."
::= { hwEthARPLimitEntry 1 }
hwEthARPVLANFirst OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN to which Layer 2 interfaces belong."
::= { hwEthARPLimitEntry 2 }
hwEthARPVLANLast OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VLAN to which Layer 2 interfaces belong."
::= { hwEthARPLimitEntry 3 }
hwEthARPLimitNum OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the ARP limit."
::= { hwEthARPLimitEntry 4 }
hwEthARPLimitRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The running status of the ARP limit table."
::= { hwEthARPLimitEntry 5 }
hwEthernetARPLearningStrictInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPLearningStrictInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the ARP Learning Strict based on interfaces."
::= { hwEthernetARPObjects 14 }
hwEthernetARPLearningStrictInterfaceEntry OBJECT-TYPE
SYNTAX HwEthernetARPLearningStrictInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configure the ARP Learning Strict based on interfaces."
INDEX {hwEthernetARPLearningStrictIfindex}
::= { hwEthernetARPLearningStrictInterfaceTable 1 }
HwEthernetARPLearningStrictInterfaceEntry ::=
SEQUENCE {
hwEthernetARPLearningStrictIfindex InterfaceIndex ,
hwEthernetARPLearningStrictState INTEGER ,
hwEthernetARPLearningStrictRowStatus RowStatus
}
hwEthernetARPLearningStrictIfindex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface on which the ARP Learning Strict be configured."
::= { hwEthernetARPLearningStrictInterfaceEntry 1 }
hwEthernetARPLearningStrictState OBJECT-TYPE
SYNTAX INTEGER
{
forceEnable(1),
forceDisable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ARP Learning Strict State be configured."
::= { hwEthernetARPLearningStrictInterfaceEntry 2 }
hwEthernetARPLearningStrictRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The running status of the ARP Learning Strict table."
::= { hwEthernetARPLearningStrictInterfaceEntry 3 }
--
-- arp process-interface-status begin
hwArpLinkInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpLinkInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Config ARP link interface:
hwArpLinkIfIndex: interface index
hwArpLinkPeerIp: peer ip
hwArpLinkDetectTime: detection time between two ARP packects
hwArpLinkDetectTimes: detection times of ARP packects
hwArpLinkDetectMode: detection mode
hwArpLinkStatus: interface status
hwArpLinkRowStatus: the row status of this row."
::= { hwEthernetARPObjects 15 }
hwArpLinkInterfaceEntry OBJECT-TYPE
SYNTAX HwArpLinkInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Config ARP link interface:
hwArpLinkIfIndex: interface index
hwArpLinkPeerIp: peer ip
hwArpLinkDetectTime: detection time between two ARP packects
hwArpLinkDetectTimes: detection times of ARP packects
hwArpLinkDetectMode: detection mode
hwArpLinkStatus: interface status
hwArpLinkRowStatus: the row status of this row."
INDEX { hwArpLinkIfIndex }
::= { hwArpLinkInterfaceTable 1 }
HwArpLinkInterfaceEntry ::=
SEQUENCE {
hwArpLinkIfIndex
Integer32,
hwArpLinkPeerIp
InetAddressIPv4,
hwArpLinkDetectTime
Integer32,
hwArpLinkDetectTimes
Integer32,
hwArpLinkDetectMode
INTEGER,
hwArpLinkStatus
INTEGER,
hwArpLinkRowStatus
RowStatus
}
hwArpLinkIfIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of interface which is configed to be linked by ARP,
the zero value is invalid."
::= { hwArpLinkInterfaceEntry 1 }
hwArpLinkPeerIp OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The IP address which ARP detecting packet will send to. When
creating a new record or modifying the peer ip address, a check for
this ip will be generated. If it is invalid, that operation will
be not applicable."
::= { hwArpLinkInterfaceEntry 11 }
hwArpLinkDetectTime OBJECT-TYPE
SYNTAX Integer32(200..10000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The interval time for two ARP packets are sent to detect the
peer's interface status, this time unit is millisecond. The valid
range is from 200 to 10000, and the default value is 1000."
DEFVAL { 1000 }
::= { hwArpLinkInterfaceEntry 12 }
hwArpLinkDetectTimes OBJECT-TYPE
SYNTAX Integer32(1..10)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"After the max detecting times for ARP packet is sent to, and there is not
any response, the sender can judge the peer interface is down. Then, setting
the status of current interface down. The valid range is from 1 to 10,
and the default value is 3."
DEFVAL { 3 }
::= { hwArpLinkInterfaceEntry 13 }
hwArpLinkDetectMode OBJECT-TYPE
SYNTAX INTEGER
{
loose(1),
strict(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The detecting mode for ARP linking interface. If the mode is loose and its
status is down, current interface just wait to receive the ARP packet, when
received peer's arp packet, current interface status is up. If mode is
strict, current interface sends ARP detecting packet to peer actively, and
shutdown itself, if these is no response from peer after the retry times.
If status of current interface is up, it will send ARP packet to detect the
status of peer actively, whenever the mode is loose or strict."
DEFVAL { strict }
::= { hwArpLinkInterfaceEntry 14 }
hwArpLinkStatus OBJECT-TYPE
SYNTAX INTEGER
{
up(1),
down(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of interface linked by ARP. This value can not be set anytime."
DEFVAL { down }
::= { hwArpLinkInterfaceEntry 15 }
hwArpLinkRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status of ARP link table. The detail can be found from the rowstatus definition."
::= { hwArpLinkInterfaceEntry 51}
-- =================================================================
-- The Table of ARP Entry Expire control table (use detect mode now)
-- =================================================================
hwArpEntryExpireControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpEntryExpireControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the parameters of ARP aging detection,
such as ARP detection mode, start time, detection times. At present,
only the ARP detection mode and ARP fake-entry expire time can be configured.
hwArpEntryExpireIfIndex: indicates the interface index.
hwArpEntryExpireDetectMode: indicates the unicast or broadcast ARP aging detection mode.
hwArpEntryExpireFakeTime: indicates the expire time of ARP fake entry."
::= { hwEthernetARPObjects 16 }
hwArpEntryExpireControlEntry OBJECT-TYPE
SYNTAX HwArpEntryExpireControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the parameters of ARP aging detection,
such as ARP detection mode, start time, detection times. At present,
only the ARP detection mode and ARP fake-entry expire time can be configured.
hwArpEntryExpireIfIndex: indicates the interface index.
hwArpEntryExpireDetectMode: indicates the unicast or broadcast ARP aging detection mode.
hwArpEntryExpireFakeTime: indicates the expire time of ARP fake entry."
INDEX { hwArpEntryExpireIfIndex }
::= { hwArpEntryExpireControlTable 1 }
HwArpEntryExpireControlEntry ::=
SEQUENCE {
hwArpEntryExpireIfIndex
InterfaceIndex,
hwArpEntryExpireDetectMode
INTEGER,
hwArpEntryExpireFakeTime
Integer32
}
hwArpEntryExpireIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the index of an interface on which ARP aging detection
parameters are set. The value 0 is invalid."
::= { hwArpEntryExpireControlEntry 1 }
hwArpEntryExpireDetectMode OBJECT-TYPE
SYNTAX INTEGER
{
broadcast(1),
unicast(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the ARP aging detection mode. In unicast ARP detection mode,
unicast ARP detection packets are sent before ARP ages. In broadcast ARP detection mode,
broadcast ARP detection packets are sent before ARP ages."
::= { hwArpEntryExpireControlEntry 2 }
hwArpEntryExpireFakeTime OBJECT-TYPE
SYNTAX Integer32(1..36000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the expire time of ARP fake entry. The valid range is from 1 to 36000."
::= { hwArpEntryExpireControlEntry 3 }
-- End of hwArpEntryExpireControlTable
-- =================================================================
-- The Table of ARP Dynamic Entry table
-- =================================================================
hwArpDynTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpDynEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the items of ARP table,
such as IP address of ARP items, VPN instance name of ARP items,
MAC address of ARP items, VLAN information of ARP items, expire time of ARP items.
hwArpDynEntryIfIndex: indicates the interface index.
hwArpDynEntryIpAdd: indicates the IP address.
hwArpDynEntryVrf: indicates the VPN instance name.
hwArpDynEntryMacAdd: indicates the MAC address.
hwArpDynEntryVlanId: indicates the VLAN of ARP item.
hwArpDynEntryCeVlanId: indicates the CE VLAN of ARP item.
hwArpDynEntryOutIfIndex: indicates the forwarding interface.
hwArpDynEntryExpireTime: indicates the expire time of ARP item."
::= { hwEthernetARPObjects 17 }
hwArpDynEntry OBJECT-TYPE
SYNTAX HwArpDynEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the items of dynamic ARP table,
such as IP address of ARP items, VPN instance name of ARP items,
MAC address of ARP items, VLAN information of ARP items, expire time of ARP items.
hwArpDynEntryIfIndex: indicates the interface index.
hwArpDynEntryIpAdd: indicates the IP address.
hwArpDynEntryVrf: indicates the VPN instance name.
hwArpDynEntryMacAdd: indicates the MAC address.
hwArpDynEntryVlanId: indicates the VLAN of ARP item.
hwArpDynEntryCeVlanId: indicates the CE VLAN of ARP item.
hwArpDynEntryOutIfIndex: indicates the forwarding interface.
hwArpDynEntryExpireTime: indicates the expire time of ARP item."
INDEX { hwArpDynIfIndex, hwArpDynIpAdd, hwArpDynVrf }
::= { hwArpDynTable 1 }
HwArpDynEntry ::=
SEQUENCE {
hwArpDynIfIndex
Integer32,
hwArpDynIpAdd
InetAddressIPv4,
hwArpDynVrf
OCTET STRING,
hwArpDynMacAdd
PhysAddress,
hwArpDynVlanId
Integer32,
hwArpDynCeVlanId
Integer32,
hwArpDynOutIfIndex
InterfaceIndex,
hwArpDynExpireTime
Integer32
}
hwArpDynIfIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The logic forwarding interface. The value 0 is invalid."
::= { hwArpDynEntry 1 }
hwArpDynIpAdd OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the IP address of an ARP items. The value 0 is invalid."
::= { hwArpDynEntry 2 }
hwArpDynVrf OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VPN name of an ARP items."
::= { hwArpDynEntry 3 }
hwArpDynMacAdd OBJECT-TYPE
SYNTAX PhysAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC address of an ARP items."
::= { hwArpDynEntry 11 }
hwArpDynVlanId OBJECT-TYPE
SYNTAX Integer32(0..4096)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VLAN of an ARP items."
::= { hwArpDynEntry 12 }
hwArpDynCeVlanId OBJECT-TYPE
SYNTAX Integer32(0..4096)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the CE VLAN of an ARP items."
::= { hwArpDynEntry 13 }
hwArpDynOutIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical forwarding interface."
::= { hwArpDynEntry 14 }
hwArpDynExpireTime OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the expire time of an ARP items."
::= { hwArpDynEntry 15 }
-- End of hwArpDynEntryTable
-- =================================================================
-- The Table of ARP Static Entry table
-- =================================================================
hwArpCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the items of static ARP table,
such as IP address of ARP items, VPN instance name of ARP items,
MAC address of ARP items, VLAN information of ARP items.
hwArpDynEntryIpAdd: indicates the IP address.
hwArpDynEntryVrf: indicates the VPN instance name.
hwArpDynEntryMacAdd: indicates the MAC address.
hwArpDynEntryVlanId: indicates the VLAN of ARP item.
hwArpDynEntryCeVlanId: indicates the CE VLAN of ARP item.
hwArpDynEntryOutIfIndex: indicates the forwarding interface."
::= { hwEthernetARPObjects 18 }
hwArpCfgEntry OBJECT-TYPE
SYNTAX HwArpCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the items of static ARP table,
such as IP address of ARP items, VPN instance name of ARP items,
MAC address of ARP items, VLAN information of ARP items.
hwArpDynEntryIpAdd: indicates the IP address.
hwArpDynEntryVrf: indicates the VPN instance name.
hwArpDynEntryMacAdd: indicates the MAC address.
hwArpDynEntryVlanId: indicates the VLAN of ARP item.
hwArpDynEntryCeVlanId: indicates the CE VLAN of ARP item.
hwArpDynEntryOutIfIndex: indicates the forwarding interface."
INDEX { hwArpCfgIpAdd, hwArpCfgVrf }
::= { hwArpCfgTable 1 }
HwArpCfgEntry ::=
SEQUENCE {
hwArpCfgIpAdd
InetAddressIPv4,
hwArpCfgMacAdd
MacAddress,
hwArpCfgVrf
OCTET STRING,
hwArpCfgVlanId
Integer32,
hwArpCfgCeVlanId
Integer32,
hwArpCfgOutIfIndex
Integer32,
hwArpCfgRowstatus
RowStatus
}
hwArpCfgIpAdd OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the IP address of an ARP items. The value 0 is invalid."
::= { hwArpCfgEntry 1 }
hwArpCfgMacAdd OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the MAC address of an ARP items."
::= { hwArpCfgEntry 2 }
hwArpCfgVrf OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VPN name of an ARP items."
::= { hwArpCfgEntry 3 }
hwArpCfgVlanId OBJECT-TYPE
SYNTAX Integer32 (0..4096)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the VLAN of an ARP items."
::= { hwArpCfgEntry 11 }
hwArpCfgCeVlanId OBJECT-TYPE
SYNTAX Integer32 (0..4096)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the CE VLAN of an ARP items."
::= { hwArpCfgEntry 12 }
hwArpCfgOutIfIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The physical forwarding interface."
::= { hwArpCfgEntry 13 }
hwArpCfgRowstatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status of an static ARP item."
::= { hwArpCfgEntry 51 }
-- End of hwArpCfgTable
hwEthernetARPAntiAttackStatus OBJECT-TYPE
SYNTAX INTEGER
{
disable(0),
fixMac(1),
fixAll(2),
sendAck(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of the ARP anti-attack."
DEFVAL { disable }
::= { hwEthernetARPObjects 19 }
hwEthernetARPAntiGateWayConflict OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the status of the ARP anti-gateway-conflict."
::= { hwEthernetARPObjects 20 }
hwEthernetARPLogAndTrapTimer OBJECT-TYPE
SYNTAX Integer32(0..1200)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the interval of log and trap. The default value is 0, which means no log and trap."
::= { hwEthernetARPObjects 21 }
hwEthernetARPAntiAttackObjects OBJECT IDENTIFIER ::= { hwEthernetARPObjects 22 }
hwEthernetARPAntiAttackIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IP address which is attacked."
::= { hwEthernetARPAntiAttackObjects 1 }
hwEthernetARPAntiAttackMacAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the MAC address which is attacked."
::= { hwEthernetARPAntiAttackObjects 2 }
hwEthernetARPAntiAttackVlanId OBJECT-TYPE
SYNTAX Integer32(1..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VLAN ID which is attacked."
::= { hwEthernetARPAntiAttackObjects 3 }
hwEthernetARPAntiAttackIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the interface name which is attacked."
::= { hwEthernetARPAntiAttackObjects 4 }
hwArpEntryGatewayConflictTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpEntryGatewayConflictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the information about the source of the attack.
It contains IP address, MAC, VLAN ID and interface."
::= { hwEthernetARPObjects 23 }
hwArpEntryGatewayConflictEntry OBJECT-TYPE
SYNTAX HwArpEntryGatewayConflictEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the information about the source of the attack.
It contains IP address, MAC, VLAN ID and interface."
INDEX { hwEthernetARPAntiGatewayConflictIndex }
::= { hwArpEntryGatewayConflictTable 1 }
HwArpEntryGatewayConflictEntry ::=
SEQUENCE {
hwEthernetARPAntiGatewayConflictIndex
Integer32,
hwEthernetARPAntiGatewayConflictIpAddress
IpAddress,
hwEthernetARPAntiGatewayConflictMacAddress
OCTET STRING,
hwEthernetARPAntiGatewayConflictVlanId
Integer32,
hwEthernetARPAntiGatewayConflictIfName
OCTET STRING
}
hwEthernetARPAntiGatewayConflictIndex OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the gateway conflict entries."
::= { hwArpEntryGatewayConflictEntry 1 }
hwEthernetARPAntiGatewayConflictIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address is attacked."
::= { hwArpEntryGatewayConflictEntry 2 }
hwEthernetARPAntiGatewayConflictMacAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the MAC of the attack-source."
::= { hwArpEntryGatewayConflictEntry 3 }
hwEthernetARPAntiGatewayConflictVlanId OBJECT-TYPE
SYNTAX Integer32(1..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the VLAN ID of the attack-source."
::= { hwArpEntryGatewayConflictEntry 4 }
hwEthernetARPAntiGatewayConflictIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the interface of the attack-source."
::= { hwArpEntryGatewayConflictEntry 5 }
hwArpSecValidateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpSecValidateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the arp validation information on the interface."
::= { hwEthernetARPObjects 24 }
hwArpSecValidateEntry OBJECT-TYPE
SYNTAX HwArpSecValidateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains the arp validation information on the interface."
INDEX { hwArpSecValidateIfIndex }
::= { hwArpSecValidateTable 1 }
HwArpSecValidateEntry ::=
SEQUENCE {
hwArpSecValidateIfIndex
InterfaceIndex,
hwArpSecValidateSmac
EnabledStatus,
hwArpSecValidateDmac
EnabledStatus,
hwArpSecValidateRowStatus
RowStatus
}
hwArpSecValidateIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the arp validation entries."
::= { hwArpSecValidateEntry 1 }
hwArpSecValidateSmac OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"indicates check the source-mac of arp packet head and the ethernet packet head."
DEFVAL { disabled }
::= { hwArpSecValidateEntry 2 }
hwArpSecValidateDmac OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"indicates check the destination-mac of arp packet head and the ethernet packet head."
DEFVAL { disabled }
::= { hwArpSecValidateEntry 3 }
hwArpSecValidateRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object specifies the status of the arp validation table."
::= { hwArpSecValidateEntry 51 }
-- BEGIN: ARP GRATIUITOUS SEND ENABLE
hwARPGratuitousSendTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwARPGratuitousSendEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the arp validation information on the interface."
::= { hwEthernetARPObjects 25 }
hwARPGratuitousSendEntry OBJECT-TYPE
SYNTAX HwARPGratuitousSendEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains the gratuitous arp send information on the vlanif interface."
INDEX { hwARPGratuitousSendIfIndex }
::= { hwARPGratuitousSendTable 1 }
HwARPGratuitousSendEntry ::=
SEQUENCE {
hwARPGratuitousSendIfIndex
InterfaceIndex,
hwARPGratuitousSendEnable
EnabledStatus,
hwARPArpGratuitousSendInterval
Integer32
}
hwARPGratuitousSendIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The ifindex of the ARP gratuitous send configed."
::= { hwARPGratuitousSendEntry 1 }
hwARPGratuitousSendEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the status of the gratuitous-arp send."
DEFVAL { disabled }
::= { hwARPGratuitousSendEntry 2 }
hwARPArpGratuitousSendInterval OBJECT-TYPE
SYNTAX Integer32 (1..86400)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the interval of the gratuitous-arp send.
The value ranges from 1 to 86400, in second, with default value 90."
DEFVAL { 90 }
::= { hwARPGratuitousSendEntry 3 }
-- END : ARP GRATIUITOUS SEND ENABLE
hwEthernetARPThresholdObjects OBJECT IDENTIFIER ::= { hwEthernetARPObjects 26 }
hwEthernetARPThresholdValue OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the threshold of the alarm generated."
::= { hwEthernetARPThresholdObjects 1 }
hwEthernetARPThresholdDynamicNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the number of dynamic ARP entries."
::= { hwEthernetARPThresholdObjects 2 }
hwEthernetARPThresholdStaticNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the number of static ARP entries."
::= { hwEthernetARPThresholdObjects 3 }
-- =================================================================
-- 27th The Node of ConflictDetect
-- =================================================================
hwEthernetARPConflictDetect OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the ARP conflict detect. In this way, router can detect ARP entries conflict."
::= { hwEthernetARPObjects 27 }
-- =================================================================
-- 28th The Node of IP Conflict
-- =================================================================
hwETHARPIPConflictObjects OBJECT IDENTIFIER ::= { hwEthernetARPObjects 28 }
hwEthernetARPIPConflictIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the conflict IP address."
::= { hwETHARPIPConflictObjects 1 }
hwEthernetARPIPConflictLocalInterfaceName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the interface before conflict."
::= { hwETHARPIPConflictObjects 2 }
hwEthernetARPIPConflictLocalMAC OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the MAC before conflict."
::= { hwETHARPIPConflictObjects 3}
hwEthernetARPIPConflictLocalVLAN OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VLAN before conflict."
::= { hwETHARPIPConflictObjects 4}
hwEthernetARPIPConflictLocalCEVLAN OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the CE VLAN before conflict."
::= { hwETHARPIPConflictObjects 5}
hwEthernetARPIPConflictReceiveInterfaceName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the conflict interface."
::= { hwETHARPIPConflictObjects 6 }
hwEthernetARPIPConflictReceiveMAC OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the conflict MAC of the received packet."
::= { hwETHARPIPConflictObjects 7 }
hwEthernetARPIPConflictReceiveVLAN OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VLAN of the received packet."
::= { hwETHARPIPConflictObjects 8}
hwEthernetARPIPConflictReceiveCEVLAN OBJECT-TYPE
SYNTAX Integer32(0..4094)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the CE VLAN of the received packet."
::= { hwETHARPIPConflictObjects 9}
hwEthernetARPIPConflictType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the conflict type."
::= { hwETHARPIPConflictObjects 10 }
hwEthernetARPReceiveDstIPAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the destination IP address of the received packet."
::= { hwETHARPIPConflictObjects 11 }
hwEthernetARPReceiveDstMAC OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the destination MAC of the received packet."
::= { hwETHARPIPConflictObjects 12 }
-- =================================================================
-- 29th The Node of ConflictDetect
-- =================================================================
hwEthernetARPLearnStopTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPLearnStopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the parameters of ARP learning disable threshold.
hwEthernetARPLearnStopSlot: indicates the slot.
hwEthernetARPLearnStopThreshold: indicates the threshold usage of memory for learning ARP."
::= { hwEthernetARPObjects 29 }
hwEthernetARPLearnStopEntry OBJECT-TYPE
SYNTAX HwEthernetARPLearnStopEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of the object identifies the parameters of of ARP learning disable threshold.
hwEthernetARPLearnStopSlot: indicates the slot of the alarm generated.
hwEthernetARPLearnStopThreshold: indicates the threshold usage of memory for learning ARP."
INDEX { hwEthernetARPLearnStopSlot }
::= { hwEthernetARPLearnStopTable 1 }
HwEthernetARPLearnStopEntry ::=
SEQUENCE {
hwEthernetARPLearnStopSlot
Integer32(0..128),
hwEthernetARPLearnStopThreshold
Counter32
}
hwEthernetARPLearnStopSlot OBJECT-TYPE
SYNTAX Integer32(0..128)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the the slot of the alarm generated."
::= { hwEthernetARPLearnStopEntry 1 }
hwEthernetARPLearnStopThreshold OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the threshold usage of memory for learning ARP."
::= { hwEthernetARPLearnStopEntry 2 }
-- =================================================================
-- 30th The Node of ARP Statistics
-- =================================================================
hwArpStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the arp information of the interfaces."
::= { hwEthernetARPObjects 30 }
hwArpStatisticsEntry OBJECT-TYPE
SYNTAX HwArpStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains the arp information of the interfaces."
INDEX { hwArpStatisticsSlot, hwArpStatisticsType}
::= { hwArpStatisticsTable 1 }
HwArpStatisticsEntry ::=
SEQUENCE {
hwArpStatisticsSlot
Integer32,
hwArpStatisticsType
INTEGER,
hwArpStatisticsLearnedCount
Counter32,
hwArpStatisticsAvailableCount
Counter32
}
hwArpStatisticsSlot OBJECT-TYPE
SYNTAX Integer32(0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The slot of ARP Statics Verbose."
::= { hwArpStatisticsEntry 1 }
hwArpStatisticsType OBJECT-TYPE
SYNTAX INTEGER{
phy(1),
ve(2),
ethTrunk(3),
vlanif(4),
phyQinq(5),
ethTrunkQinq(6),
veQinq(7)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Type of Interface Learn ARP."
::= { hwArpStatisticsEntry 2 }
hwArpStatisticsLearnedCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of ARP entries learned by this type of interfaces."
::= { hwArpStatisticsEntry 3}
hwArpStatisticsAvailableCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The avaiable number of ARP entries of this type of interfaces."
::= { hwArpStatisticsEntry 4}
-- =================================================================
-- 31th The Node of Remote Backup ARP entry fail
-- =================================================================
hwEthernetARPRemoteBackupFailObjects OBJECT IDENTIFIER ::= { hwEthernetARPObjects 31 }
hwEthernetARPRemoteBackupFailMainIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates that the interface name with the remote ARP entry backup failure."
::= { hwEthernetARPRemoteBackupFailObjects 1 }
-- =================================================================
-- 32th The Node of Host IP Conflict
-- =================================================================
hwEthernetARPHostInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPHostInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the information of local host and remote host.
The information includes host IP, host MAC, gateway VtepIP, gateway VNIID."
::= { hwEthernetARPObjects 32 }
hwEthernetARPHostInfoEntry OBJECT-TYPE
SYNTAX HwEthernetARPHostInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries of the host information table."
INDEX { hwEthernetARPHostIPAddress,hwEthernetARPGatewayVNIID }
::= { hwEthernetARPHostInfoTable 1 }
HwEthernetARPHostInfoEntry ::=
SEQUENCE {
hwEthernetARPHostIPAddress
IpAddress,
hwEthernetARPGatewayVNIID
Unsigned32,
hwEthernetARPHostMAC
MacAddress,
hwEthernetARPGatewayVtepIP
IpAddress
}
hwEthernetARPHostIPAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the host IP address."
::= { hwEthernetARPHostInfoEntry 1 }
hwEthernetARPGatewayVNIID OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VNI ID of gateway."
::= { hwEthernetARPHostInfoEntry 2 }
hwEthernetARPHostMAC OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the host MAC."
::= { hwEthernetARPHostInfoEntry 3 }
hwEthernetARPGatewayVtepIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the VTEP IP of gateway."
::= { hwEthernetARPHostInfoEntry 4 }
-- =================================================================
-- 33th The Node of number of ARP entries of the slot
-- =================================================================
hwArpNumberStatisticsTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwArpNumberStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the number of ARP entries of the slot."
::= { hwEthernetARPObjects 33 }
hwArpNumberStatisticsEntry OBJECT-TYPE
SYNTAX HwArpNumberStatisticsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry contains the number of ARP entries of the slot."
INDEX { hwArpNumberStatisticsSlot }
::= { hwArpNumberStatisticsTable 1 }
HwArpNumberStatisticsEntry ::=
SEQUENCE {
hwArpNumberStatisticsSlot
Integer32,
hwArpNumberStatic
Counter32,
hwArpNumberDynamic
Counter32
}
hwArpNumberStatisticsSlot OBJECT-TYPE
SYNTAX Integer32(0..128)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The slot of ARP entries."
::= { hwArpNumberStatisticsEntry 1 }
hwArpNumberStatic OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of static ARP entries of slot."
::= { hwArpNumberStatisticsEntry 2 }
hwArpNumberDynamic OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of dynamic ARP entries of slot."
::= { hwArpNumberStatisticsEntry 3 }
-- =================================================================
-- 34th The Node of ARP gateway duplicate
-- =================================================================
hwEthernetARPGateWayDuplicateInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPGateWayDuplicateInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the information of ARP packet with a duplicate IP address from the interface.
The information includes gateway ifname, gateway IP."
::= { hwEthernetARPObjects 34 }
hwEthernetARPGateWayDuplicateInfoEntry OBJECT-TYPE
SYNTAX HwEthernetARPGateWayDuplicateInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries of the ARP packet with a duplicate IP address information table."
INDEX { hwEthernetARPGateWayIfName,hwEthernetARPGateWayPortName,hwEthernetARPGateWayIP }
::= { hwEthernetARPGateWayDuplicateInfoTable 1 }
HwEthernetARPGateWayDuplicateInfoEntry ::=
SEQUENCE {
hwEthernetARPGateWayIfName
OCTET STRING,
hwEthernetARPGateWayPortName
OCTET STRING,
hwEthernetARPGateWayIP
IpAddress
}
hwEthernetARPGateWayIfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IfName of gateway."
::= { hwEthernetARPGateWayDuplicateInfoEntry 1 }
hwEthernetARPGateWayPortName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the PortName of gateway."
::= { hwEthernetARPGateWayDuplicateInfoEntry 2 }
hwEthernetARPGateWayIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IP of gateway."
::= { hwEthernetARPGateWayDuplicateInfoEntry 3 }
-- =================================================================
-- 35th Arp Miss exist on the interface XXX on the slot XX (alarm)
-- =================================================================
hwFwdArpSlotName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the slot of the interface."
::= { hwEthernetARPObjects 35 }
hwFwdArpPortName OBJECT-TYPE
SYNTAX OCTET STRING(SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the interface name."
::= { hwEthernetARPObjects 36}
-- =================================================================
-- 37th The Node of ARP limit exceed
-- =================================================================
hwEthernetARPLimitExceedInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetARPLimitExceedInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table contains the information of learnt ARP packet.
The information includes interface of arp packet, the learnt number of arp packet, the limitnumber of arp packet, the recover reason of arp limit."
::= { hwEthernetARPObjects 37 }
hwEthernetARPLimitExceedInfoEntry OBJECT-TYPE
SYNTAX HwEthernetARPLimitExceedInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates Entries of the learnt ARP packet."
INDEX { hwEthernetARPLimitExceedInterface,hwEthernetARPLimitExceedLimitNumber,hwEthernetARPLimitExceedLearnedNumber,hwEthernetARPLimitExceedRecoverReason }
::= { hwEthernetARPLimitExceedInfoTable 1 }
HwEthernetARPLimitExceedInfoEntry::=
SEQUENCE {
hwEthernetARPLimitExceedInterface
OCTET STRING,
hwEthernetARPLimitExceedLimitNumber
Integer32,
hwEthernetARPLimitExceedLearnedNumber
Integer32,
hwEthernetARPLimitExceedRecoverReason
OCTET STRING
}
hwEthernetARPLimitExceedInterface OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates interface of arp limt entries."
::= { hwEthernetARPLimitExceedInfoEntry 1 }
hwEthernetARPLimitExceedLimitNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates number of limit arp entries."
::= { hwEthernetARPLimitExceedInfoEntry 2 }
hwEthernetARPLimitExceedLearnedNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates number of learnt arp entries."
::= { hwEthernetARPLimitExceedInfoEntry 3 }
hwEthernetARPLimitExceedRecoverReason OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This recover reason of the alarm arp limt entries."
::= { hwEthernetARPLimitExceedInfoEntry 4 }
-- Notifications(trap) Definitions
--
hwEthernetARPNotifications OBJECT IDENTIFIER ::= { hwEthernetARPMIB 2 }
hwEthernetARPSpeedLimitAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPSpeedLimitIfIndex,hwEthernetARPSpeedLimitConfigured,hwEthernetARPSpeedLimitCurrent,hwEthernetARPSpeedLimitType,hwEthernetARPSpeedLimitSrcIPAddr,hwEthernetARPSpeedLimitDstIPAddr,hwEthernetARPSpeedLimitVPNinstance}
STATUS current
DESCRIPTION
"Trap information about ARP speed limit: interface index, current configured limit number, current received number, limit type (ARP, ARP-MISS), source IP address, destination IP address, VPN instance."
::= { hwEthernetARPNotifications 1 }
hwEthernetARPAntiAttackAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPAntiAttackIpAddress,hwEthernetARPAntiAttackMacAddress,hwEthernetARPAntiAttackVlanId,hwEthernetARPAntiAttackIfName}
STATUS current
DESCRIPTION
"Trap information about ARP anti-attack: IP address, MAC, VLAN id, interface index."
::= { hwEthernetARPNotifications 2 }
hwEthernetARPAntiGatewayConflictAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPAntiGatewayConflictIpAddress,hwEthernetARPAntiGatewayConflictMacAddress,hwEthernetARPAntiGatewayConflictVlanId,hwEthernetARPAntiGatewayConflictIfName}
STATUS current
DESCRIPTION
"Trap information about ARP anti-attack: IP address, MAC, VLAN ID, interface index."
::= { hwEthernetARPNotifications 3 }
hwEthernetARPThresholdExceedAlarm NOTIFICATION-TYPE
OBJECTS { entPhysicalName,hwEthernetARPThresholdValue,hwEthernetARPThresholdDynamicNumber,hwEthernetARPThresholdStaticNumber }
STATUS current
DESCRIPTION
"Trap information about ARP exceed threshold: slot, threshold, number of dynamic ARP, number of static ARP."
::= { hwEthernetARPNotifications 4 }
hwEthernetARPThresholdResumeAlarm NOTIFICATION-TYPE
OBJECTS { entPhysicalName,hwEthernetARPThresholdValue,hwEthernetARPThresholdDynamicNumber,hwEthernetARPThresholdStaticNumber }
STATUS current
DESCRIPTION
"Trap information about ARP resume threshold: slot, threshold, number of dynamic ARP, number of static ARP."
::= { hwEthernetARPNotifications 5 }
hwEthernetARPIPConflictEvent NOTIFICATION-TYPE
OBJECTS { hwEthernetARPIPConflictIPAddress,hwEthernetARPIPConflictLocalInterfaceName,hwEthernetARPIPConflictLocalMAC,hwEthernetARPIPConflictLocalVLAN,hwEthernetARPIPConflictLocalCEVLAN,hwEthernetARPIPConflictReceiveInterfaceName,hwEthernetARPIPConflictReceiveMAC,hwEthernetARPIPConflictReceiveVLAN,hwEthernetARPIPConflictReceiveCEVLAN,hwEthernetARPIPConflictType }
STATUS current
DESCRIPTION
"Trap information about ARP IP conflict."
::= { hwEthernetARPNotifications 6 }
hwEthernetARPMACIPConflict NOTIFICATION-TYPE
OBJECTS { hwEthernetARPIPConflictLocalInterfaceName,hwEthernetARPIPConflictReceiveMAC,hwEthernetARPIPConflictIPAddress,hwEthernetARPReceiveDstMAC,hwEthernetARPReceiveDstIPAddr,hwEthernetARPIPConflictReceiveVLAN,hwEthernetARPIPConflictReceiveCEVLAN,hwEthernetARPIPConflictReceiveInterfaceName}
STATUS current
DESCRIPTION
"Trap information about MAC and IP address conflict: conflict interface name, conflict MAC address, conflict IP address, and the received packet's destination MAC address, destination IP address, vlan, ce-vlan, receive interface."
::= { hwEthernetARPNotifications 7 }
hwEthernetARPMACIPConflictResolved NOTIFICATION-TYPE
OBJECTS { hwEthernetARPIPConflictLocalInterfaceName,hwEthernetARPIPConflictReceiveMAC,hwEthernetARPIPConflictIPAddress}
STATUS current
DESCRIPTION
"Trap information about MAC and IP address conflict resolved: conflict interface name, conflict MAC address, conflict IP address."
::= { hwEthernetARPNotifications 8 }
hwEthernetARPLearnStopAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPLearnStopSlot,hwEthernetARPLearnStopThreshold }
STATUS current
DESCRIPTION
"Trap information about ARP learning disable: memory usage threshold."
::= { hwEthernetARPNotifications 9 }
hwEthernetARPLearnResumeAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPLearnStopSlot,hwEthernetARPLearnStopThreshold }
STATUS current
DESCRIPTION
"Trap information about ARP learning enable: memory usage threshold."
::= { hwEthernetARPNotifications 10 }
hwEthernetARPRemoteBackupFailAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPRemoteBackupFailMainIfName }
STATUS current
DESCRIPTION
"Trap information about the remote ARP entry backup failure."
::= { hwEthernetARPNotifications 11 }
hwEthernetARPRemoteBackupFailResumeAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPRemoteBackupFailMainIfName }
STATUS current
DESCRIPTION
"Trap clearing information when the backup device detects that ARP entries are successfully backed up within a period."
::= { hwEthernetARPNotifications 12 }
hwEthernetARPHostIPConflict NOTIFICATION-TYPE
OBJECTS { hwEthernetARPHostMAC,hwEthernetARPGatewayVtepIP,hwEthernetARPHostMAC,hwEthernetARPGatewayVtepIP}
STATUS current
DESCRIPTION
"Trap information about host IP address conflict: local host MAC address, local gateway VTEP IP address, remote host MAC address, remote gateway VTEP IP address."
::= { hwEthernetARPNotifications 13 }
hwEthernetARPHostIPConflictResume NOTIFICATION-TYPE
OBJECTS { hwEthernetARPHostMAC,hwEthernetARPGatewayVtepIP,hwEthernetARPHostMAC,hwEthernetARPGatewayVtepIP}
STATUS current
DESCRIPTION
"Trap information about host IP address conflict resolved: local host MAC address, local gateway VTEP IP address, remote host MAC address, remote gateway VTEP IP address."
::= { hwEthernetARPNotifications 14 }
--begin add by chenlong 230926, arp anti-attack gateway-duplicate Alarm
hwEthernetARPGateWayDuplicateAlarm NOTIFICATION-TYPE
OBJECTS { hwEthernetARPGateWayIfName,hwEthernetARPGateWayPortName,hwEthernetARPGateWayIP}
STATUS current
DESCRIPTION
"Trap information about ARP gateway duplicate: Received an ARP packet with a duplicate IP address from the interface."
::= { hwEthernetARPNotifications 15 }
hwEthernetARPGateWayDuplicateAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEthernetARPGateWayIfName,hwEthernetARPGateWayPortName,hwEthernetARPGateWayIP}
STATUS current
DESCRIPTION
"Trap information about ARP gateway duplicate resolved: Received an ARP packet with a duplicate IP address from the interface."
::= { hwEthernetARPNotifications 16 }
--end add by chenlong 230926, arp anti-attack gateway-duplicate Alarm
hwFwdArpAlarmOccur NOTIFICATION-TYPE
OBJECTS { hwFwdArpSlotName , hwFwdArpPortName}
STATUS current
DESCRIPTION
"Arp MISS alarm occur."
::= { hwEthernetARPNotifications 17 }
hwFwdArpAlarmResume NOTIFICATION-TYPE
OBJECTS { hwFwdArpSlotName , hwFwdArpPortName}
STATUS current
DESCRIPTION
"Arp MISS alarm resume."
::= { hwEthernetARPNotifications 18 }
--begin add by z00360178, arp limit threshold
hwEthernetARPLimitExceed NOTIFICATION-TYPE
OBJECTS { hwEthernetARPLimitExceedInterface,hwEthernetARPLimitExceedLimitNumber,hwEthernetARPLimitExceedLearnedNumber}
STATUS current
DESCRIPTION
"Enter the threhold about ARP limit number, the alarm is appear."
::= { hwEthernetARPNotifications 19 }
hwEthernetARPLimitExceedResume NOTIFICATION-TYPE
OBJECTS { hwEthernetARPLimitExceedInterface,hwEthernetARPLimitExceedLimitNumber,hwEthernetARPLimitExceedLearnedNumber,hwEthernetARPLimitExceedRecoverReason }
STATUS current
DESCRIPTION
"Not enter the threhold about ARP limit number, then resume the alarm ."
::= { hwEthernetARPNotifications 20 }
--end add by z00360178, arp limit threshold
--
-- Conformance information
--
hwEthernetARPConformance OBJECT IDENTIFIER ::= { hwEthernetARPMIB 3 }
hwEthernetARPGroups OBJECT IDENTIFIER ::= { hwEthernetARPConformance 1 }
hwEthernetARPCompliances OBJECT IDENTIFIER ::= { hwEthernetARPConformance 2 }
hwFwdArpTrapCompliances OBJECT IDENTIFIER ::= { hwEthernetARPConformance 3 }
hwEthernetARPStaticsGroup OBJECT-GROUP
OBJECTS {
--hwEthernetARPStaticsSlot ,
hwEthernetARPStaticsLearnTotal ,
hwEthernetARPDropForLimit ,
hwEthernetARPDropForARPSuppress ,
hwEthernetARPDropForARPMissSuppress ,
hwEthernetARPDropForOther ,
hwEthernetARPMissDropForOther ,
hwEthernetARPRcvNum ,
hwEthernetARPMissRcvNum,
hwEthernetARPStaticsOperation ,
hwEthernetARPDropForARPProxySuppress
}
STATUS current
DESCRIPTION
"A table contains the statistics about Ethernet ARP.
The statistics include number of received ARP packets,
number of received ARP-MISS packets, number of learned ARP packets,
number of discarded ARP packets caused by the ARP limit,
the number of discarded ARP-MISS packets caused by the limit
and the number of discarded ARP and ARP-MISS packets caused by other reasons."
::= { hwEthernetARPGroups 1 }
hwEthernetARPSpeedLimitGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPLimitSpeedValue
}
STATUS current
DESCRIPTION
"A Group table ,which contains the configuration information of Ethernet ARP Speed limit slot.
The information includes type, speedvalue, sourceip and destip."
::= { hwEthernetARPGroups 2 }
hwEthARPShowWithInterAndVidGroup OBJECT-GROUP
OBJECTS {
hwEthARPMacAddr
}
STATUS current
DESCRIPTION
"Display the ARP table based on interface number or interface number and VLAN ID."
::= { hwEthernetARPGroups 3 }
hwEthARPLimitGroup OBJECT-GROUP
OBJECTS {
hwEthARPLimitNum,
hwEthARPLimitRowStatus
--hwEthARPLimitVidFirst ,
--hwEthARPLimitVidLast
}
STATUS current
DESCRIPTION
"config the arp limit on the interface with vlanid,limit num."
::= { hwEthernetARPGroups 4 }
--hwEthARPLimitGroup OBJECT-GROUP
-- OBJECTS {
--hwEthARPLimitShowNum ,
--hwEthARPLimitShowVid ,
-- hwEthARPLimitShowIfindex
-- }
--STATUS current
-- DESCRIPTION
-- "Display the limit based on interface number and VLAN ID."
--::= { hwEthernetARPGroups 5 }
hwEthernetARPBaseGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPAntiAttackLog,
hwEthernetARPLearningStrict,
hwEthernetARPSpeedLimitIfIndex,
hwEthernetARPSpeedLimitConfigured,
hwEthernetARPSpeedLimitCurrent,
hwEthernetARPSpeedLimitType,
hwEthernetARPSpeedLimitSrcIPAddr,
hwEthernetARPSpeedLimitDstIPAddr,
hwEthernetARPSpeedLimitVPNinstance,
hwArpSecValidateSmac,
hwArpSecValidateDmac,
hwArpSecValidateRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing configuration or display."
::= { hwEthernetARPGroups 5 }
hwEthernetARPNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS{ hwEthernetARPSpeedLimitAlarm, hwEthernetARPAntiAttackAlarm, hwEthernetARPAntiGatewayConflictAlarm, hwEthernetARPThresholdExceedAlarm, hwEthernetARPThresholdResumeAlarm, hwEthernetARPIPConflictEvent, hwEthernetARPMACIPConflict, hwEthernetARPMACIPConflictResolved, hwEthernetARPLearnStopAlarm, hwEthernetARPLearnResumeAlarm, hwEthernetARPRemoteBackupFailAlarm, hwEthernetARPRemoteBackupFailResumeAlarm, hwEthernetARPHostIPConflict, hwEthernetARPHostIPConflictResume, hwEthernetARPGateWayDuplicateAlarm, hwEthernetARPGateWayDuplicateAlarmResume, hwEthernetARPLimitExceed, hwEthernetARPLimitExceedResume}
STATUS current
DESCRIPTION
"notification Group."
::= { hwEthernetARPGroups 6 }
hwEthernetARPLearningStrictInterfaceGroup OBJECT-GROUP
OBJECTS{
hwEthernetARPLearningStrictState,
hwEthernetARPLearningStrictRowStatus
}
STATUS current
DESCRIPTION
"ARP Learning Strict Interface Group."
::= { hwEthernetARPGroups 7 }
hwArpLinkInferaceGroup OBJECT-GROUP
OBJECTS {
hwArpLinkPeerIp,
hwArpLinkDetectTime,
hwArpLinkDetectTimes,
hwArpLinkDetectMode,
hwArpLinkStatus,
hwArpLinkRowStatus
}
STATUS current
DESCRIPTION
"A collection of objects providing configuration of ARP linking interface."
::= { hwEthernetARPGroups 8 }
hwArpEntryExpireControlGroup OBJECT-GROUP
OBJECTS {
hwArpEntryExpireDetectMode,
hwArpEntryExpireFakeTime
}
STATUS current
DESCRIPTION
"A collection of objects providing configuration of ARP Expire Parameter."
::= { hwEthernetARPGroups 9 }
hwArpAntiAttackGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPAntiAttackStatus, hwEthernetARPAntiGateWayConflict, hwEthernetARPLogAndTrapTimer,
hwEthernetARPAntiAttackIpAddress,
hwEthernetARPAntiAttackMacAddress, hwEthernetARPAntiAttackVlanId, hwEthernetARPAntiAttackIfName,
hwEthernetARPAntiGatewayConflictIpAddress, hwEthernetARPAntiGatewayConflictMacAddress,
hwEthernetARPAntiGatewayConflictVlanId, hwEthernetARPAntiGatewayConflictIfName,
hwArpDynMacAdd, hwArpDynVlanId, hwArpDynCeVlanId, hwArpDynOutIfIndex,
hwArpDynExpireTime, hwArpCfgVlanId, hwArpCfgCeVlanId, hwArpCfgOutIfIndex,
hwArpCfgRowstatus }
STATUS current
DESCRIPTION
"A collection of objects providing lockuping ARP anti attack."
::= { hwEthernetARPGroups 10 }
hwEthernetARPThresholdGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPThresholdValue,
hwEthernetARPThresholdDynamicNumber,
hwEthernetARPThresholdStaticNumber
}
STATUS current
DESCRIPTION
"A collection of objects for ARP threshold alarm."
::= { hwEthernetARPGroups 11 }
hwETHARPIPConflictGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPIPConflictIPAddress,
hwEthernetARPIPConflictLocalInterfaceName,
hwEthernetARPIPConflictLocalMAC,
hwEthernetARPIPConflictLocalVLAN,
hwEthernetARPIPConflictLocalCEVLAN,
hwEthernetARPIPConflictReceiveInterfaceName,
hwEthernetARPIPConflictReceiveMAC,
hwEthernetARPIPConflictReceiveVLAN,
hwEthernetARPIPConflictReceiveCEVLAN,
hwEthernetARPIPConflictType,
hwEthernetARPReceiveDstIPAddr,
hwEthernetARPReceiveDstMAC,
hwEthernetARPConflictDetect
}
STATUS current
DESCRIPTION
"A collection of objects for ARP conflict trap."
::= { hwEthernetARPGroups 12 }
hwEthernetARPLearnStopGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPLearnStopSlot,
hwEthernetARPLearnStopThreshold
}
STATUS current
DESCRIPTION
"A collection of objects for ARP learning alarm."
::= { hwEthernetARPGroups 13 }
hwArpStatisticsGroup OBJECT-GROUP
OBJECTS {
hwArpStatisticsLearnedCount,
hwArpStatisticsAvailableCount
}
STATUS current
DESCRIPTION
"A collection of objects for ARP statistics table."
::= { hwEthernetARPGroups 14 }
hwEthernetARPRemoteBackupFaidGroup OBJECT-GROUP
OBJECTS {
hwEthernetARPRemoteBackupFailMainIfName
}
STATUS current
DESCRIPTION
"A collection of objects for the remote ARP entry backup failure alarm."
::= { hwEthernetARPGroups 15 }
hwFwdArpObjectGroup OBJECT-GROUP
OBJECTS { hwFwdArpSlotName , hwFwdArpPortName}
STATUS current
DESCRIPTION
"Group for base trap objects."
::= { hwEthernetARPGroups 16 }
hwFwdArpTrapGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwFwdArpAlarmOccur, hwFwdArpAlarmResume }
STATUS current
DESCRIPTION
"Group for all base traps."
::= { hwEthernetARPGroups 17 }
hwEthernetARPCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for arp Speedlimit and arp limit."
MODULE
MANDATORY-GROUPS {
hwEthernetARPBaseGroup,
hwEthernetARPLearningStrictInterfaceGroup,
hwArpEntryExpireControlGroup,
hwArpAntiAttackGroup
}
::= { hwEthernetARPCompliances 1 }
hwFwdArpTrapCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for agents that provide full support for hwBaseTrapMIB."
MODULE -- this module
MANDATORY-GROUPS { hwFwdArpObjectGroup }
::= { hwFwdArpTrapCompliances 1 }
-- units of conformance
END
|