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
|
-- ==================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI-OSPFV2-MIB provides information about OSPFv2
-- Reference:
-- Version: V2.16
-- History:
-- <author>, <date>, <contents>
-- HUAWEI 2008-1-05 OSPF private MIB
-- ==================================================================
-- ==================================================================
--
-- Variables and types are imported
--
-- ==================================================================
HUAWEI-OSPFV2-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
ospfRouterId, ospfNbrIpAddr, ospfNbrAddressLessIndex, ospfNbrRtrId, ospfNbrState, ospfLsdbLsid, ospfLsdbRouterId
FROM OSPF-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
TimeTicks, IpAddress, Integer32, Unsigned32, Gauge32, Counter32,
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, TruthValue, RowStatus
FROM SNMPv2-TC;
hwOspfv2MIB MODULE-IDENTITY
LAST-UPDATED "201708172002Z"
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
"The HUAWEI-OSPFV2-MIB contains objects to manage the system configuration.
It defines the model used to represent configuration data that exists elsewhere
in the system and on peripheral devices. The MIB is proper for system configuration.
There are no constraints on this MIB."
REVISION "201708172002Z"
DESCRIPTION "modify hwospfv2ProcessFullPeerNumber,hwospfv2ProcessPeerUpCount,hwospfv2ProcessPeerDownCount,hwospfv2InterfacePeerUpCount,hwospfv2InterfacePeerDownCount,hwOspfv2ImportNssaRouteExceed,hwOspfv2ImportNssaRouteExceedClear,hwOspfv2LsdbApproachingOverflow,hwOspfv2LsdbApproachingOverflowClear,hwOspfv2LsdbOverflow,hwOspfv2LsdbOverflowClear discription. "
REVISION "201703251659Z"
DESCRIPTION "Added
hwOspfv2ProcessStatisticTable,
hwospfv2ProcessPeerNumber,
hwospfv2ProcessFullPeerNumber,
hwospfv2ProcessPeerUpCount,
hwospfv2ProcessPeerDownCount,
hwospfv2ProcessSendLsaNumber,
hwospfv2ProcessReceiveLsaNumber,
hwOspfv2InterfaceStatisticTable,
hwospfv2InterfacePeerUpCount,
hwospfv2InterfacePeerDownCount,
hwOspfv2GlobalStatistic,
hwospfv2SendLsaNumber,
hwospfv2ReceiveLsaNumber "
REVISION "201702251236Z"
DESCRIPTION "Change the value of hwOspfv2LsaArriveMaxIntvl from (1.10000) to (1.120000),
Change the value of hwOspfv2LsaArriveStartIntvl from (0.1000) to (0.60000),
Change the value of hwOspfv2LsaArriveHoldIntvl from (1.5000) to (1.60000),
Change the value of hwOspfv2LsaOrigMaxIntvl from (1.10000) to (1.120000),
Change the value of hwOspfv2LsaOrigStartIntvl from (0.1000) to (0.60000),
Change the value of hwOspfv2LsaOrigHoldIntvl from (1.5000) to (1.60000),
Change the value of hwOspfv2SpfSchMaxIntvl from (1.20000) to (1.120000),
Change the value of hwOspfv2SpfSchStartIntvl from (1.1000) to (1.60000),
Change the value of hwOspfv2SpfSchHoldIntvl from (1.5000) to (1.60000),"
REVISION "201608041521Z"
DESCRIPTION "Added
hwOspfv2DeleteRouteByPurge,
hwOspfv2DeleteRouteByPurgeClear,
hwOspfv2RouteBeDeletedByPurgeExact,
hwOspfv2RouteBeDeletedByPurgeExactClear,
hwOspfv2RouteBeDeletedByPurgeInexact,
hwOspfv2RouteBeDeletedByPurgeInexactClear,
hwOspfv2RouteBeDeletedByPurge,
hwOspfv2RouteBeDeletedByPurgeClear,
hwOspfv2ThirdPartRouteBeDeletedByPurgeExact,
hwOspfv2ThirdPartRouteBeDeletedByPurgeExactClear,
hwOspfv2ThirdPartRouteBeDeletedByPurgeInexact,
hwOspfv2ThirdPartRouteBeDeletedByPurgeInexactClear,
hwOspfv2ThirdPartRouteBeDeletedByPurge,
hwOspfv2ThirdPartRouteBeDeletedByPurgeClear "
REVISION "201605251110Z"
DESCRIPTION "Added a trap hwOspfv2GreaterAgeLsaRecived"
REVISION "201605251110Z"
DESCRIPTION "Added hwOspfv2LsaId to indicates the link-id of recived lsa"
REVISION "201605251110Z"
DESCRIPTION "Added hwOspfv2LsaAge to indicates the age of recived lsa"
REVISION "201603231750Z"
DESCRIPTION "Changed the type of hwOspfv2ProcessIdIndex from Integer32 to Unsigned32"
REVISION "201603161750Z"
DESCRIPTION "Added
hwOspfv2ImportAseRouteThreshold,
hwOspfv2ImportAseRouteThresholdClear,
hwOspfv2ImportAseRouteExceed,
hwOspfv2ImportAseRouteExceedClear,
hwOspfv2ImportNssaRouteThreshold,
hwOspfv2ImportNssaRouteThresholdClear,
hwOspfv2ImportNssaRouteExceed,
hwOspfv2ImportNssaRouteExceedClear,
hwOspfv2LsdbApproachingOverflow,
hwOspfv2LsdbApproachingOverflowClear,
hwOspfv2LsdbOverflow,
hwOspfv2LsdbOverflowClear "
REVISION "201602161750Z"
DESCRIPTION "Deleted hwOspfv2PeerFlappingSuppressInterval, Added hwOspfv2PeerFlappingSuppressReason to indicates the suppress status change reason, change hwOspfv2PeerFlappingSuppressInterval of hwOspfv2PeerFlappingSuppressStatus to hwOspfv2PeerFlappingSuppressReason"
REVISION "201512181750Z"
DESCRIPTION "Modified hwOspfv2PeerFlappingSuppressStatusChange status currentdescription"
REVISION "201507081110Z"
DESCRIPTION "Added hwOspfv2PeerFlappingSuppressStatus to indicates the suppress status of peer flapping"
REVISION "201505031110Z"
DESCRIPTION "Added to hwOspfv2ProcessIdIndex hwOspfv2IntraAreaRouterIdConflictRecovered to indicates process id"
REVISION "201504031110Z"
DESCRIPTION "Added hwOspfv2IntraAreaRouterIdConflictRecovered to indicates the routerid conflict recovered"
REVISION "201405212110Z"
DESCRIPTION "Added hwOspfv2Statistic to get statistics information"
REVISION "201312151236Z"
DESCRIPTION "Added object hwOspfv2AreaAuthKeychName to hwOspfv2AreaEntry to indicates the keychain name"
REVISION "201308291540Z"
DESCRIPTION "Move the invalid characters of MIB"
REVISION "201306290949Z"
DESCRIPTION "Add value for hwOspfv2NbrGrStatus: notsupport"
::= { hwDatacomm 155 }
hwOspfv2MIBObjects OBJECT IDENTIFIER ::= { hwOspfv2MIB 1 }
hwOspfv2MIBBinding OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ID of OSPF process that is bound to OSPF public MIB and the process will respond to
SNMP requests from OSPF public MIB. The default value 0 means that no process is bound
to OSPF public MIB."
::= { hwOspfv2MIBObjects 1 }
hwOspfv2ChangeTable OBJECT IDENTIFIER ::= { hwOspfv2MIB 2 }
hwOspfv2MIBObjectsChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This node is used to record the time ticks when hwOspfv2MIBObjectsTable changed last time."
::= { hwOspfv2ChangeTable 1 }
hwOspfv2ProcessChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This node is used to record the time ticks when hwOspfv2ProcessTable changed last time."
::= { hwOspfv2ChangeTable 2 }
hwOspfv2AreaChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This node is used to record the time ticks when hwOspfv2AreaTable changed last time."
::= { hwOspfv2ChangeTable 3 }
hwOspfv2NetworkChange OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This node is used to record the time ticks when hwOspfv2NetworkTable changed last time."
::= { hwOspfv2ChangeTable 4 }
hwOspfv2ProcessTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2ProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the configured parameters of the router's attached OSPF processes."
::= { hwOspfv2MIB 3 }
hwOspfv2ProcessEntry OBJECT-TYPE
SYNTAX HwOspfv2ProcessEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the configured parameters of the router's attached OSPF processes."
INDEX { hwOspfv2ProcessIdIndex }
::= { hwOspfv2ProcessTable 1 }
HwOspfv2ProcessEntry ::=
SEQUENCE {
hwOspfv2ProcessIdIndex
Unsigned32,
hwOspfv2VpnName
DisplayString,
hwOspfv2ConfigRouterId
IpAddress,
hwOspfv2ActualRouterId
IpAddress,
hwOspfv2BandwidthReference
Unsigned32,
hwOspfv2Description
DisplayString,
hwOspfv2LsaArriveIntvl
Integer32,
hwOspfv2LsaArriveMaxIntvl
Integer32,
hwOspfv2LsaArriveStartIntvl
Integer32,
hwOspfv2LsaArriveHoldIntvl
Integer32,
hwOspfv2LsaOrigIntvl
Integer32,
hwOspfv2LsaOrigMaxIntvl
Integer32,
hwOspfv2LsaOrigStartIntvl
Integer32,
hwOspfv2LsaOrigHoldIntvl
Integer32,
hwOspfv2LsaOrigIntvlOtherType
Integer32,
hwOspfv2LsdbOverflowLimit
Integer32,
hwOspfv2MaxLoadBalaNumber
Integer32,
hwOspfv2AseRouteMaxNumber
Integer32,
hwOspfv2InterRouteMaxNumber
Integer32,
hwOspfv2IntraRouteMaxNumber
Integer32,
hwOspfv2RetransLimitMaxNumber
Integer32,
hwOspfv2Rfc1583Compatibility
TruthValue,
hwOspfv2ShamHello
TruthValue,
hwOspfv2SpfSchIntvlUnit
INTEGER,
hwOspfv2SpfSchIntvlNumber
Integer32,
hwOspfv2SpfSchMaxIntvl
Integer32,
hwOspfv2SpfSchStartIntvl
Integer32,
hwOspfv2SpfSchHoldIntvl
Integer32,
hwOspfv2OpaqueCapability
TruthValue,
hwOspfv2TrafficAdjustment
TruthValue,
hwOspfv2TrafficAdvertise
TruthValue,
hwOspfv2FlushTimer
Integer32,
hwOspfv2ProcessRowStatus
RowStatus
}
hwOspfv2ProcessIdIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The process ID indicates the OSPF process number. The value ranges from 1 to 4294967295."
::= { hwOspfv2ProcessEntry 1 }
hwOspfv2VpnName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of VPN instance to which the process belongs.
The process instance needs to be specified when the process is created,
and then cannot be changed."
::= { hwOspfv2ProcessEntry 2 }
hwOspfv2ConfigRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifies the router in the Autonomous System.
OSPF private router ID can be configured through this node. The default
value is 0.0.0.0. If the value of this node is 0.0.0.0, it means that no
private router ID is set for this process. "
DEFVAL { '00000000'h }
::= { hwOspfv2ProcessEntry 3 }
hwOspfv2ActualRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This node is used to get actual router ID of process and it is a read-only
node. If the node hwOspfv2ConfigRouterId is not set, the actual router ID should
default to the value of one of the router's IP interface addresses. By default,
the value is '00000000'H."
::= { hwOspfv2ProcessEntry 4 }
hwOspfv2BandwidthReference OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Mbit/s"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The reference value that is used to calculate the link cost.
If there is no explicit link cost, OSPF calculates the cost according to the
bandwidth of the link (cost = reference value (M)/bandwidth)."
DEFVAL { 100 }
::= { hwOspfv2ProcessEntry 5 }
hwOspfv2Description OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The description of the OSPF process."
::= { hwOspfv2ProcessEntry 6 }
hwOspfv2LsaArriveIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..10000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"To avoid wasting network resources due to network changes, OSPF defines that the
interval for receiving LSAs is 1 second.
In a stable network, if the fast speed of route convergence is required, you can
cancel the interval of receiving LSAs by setting it to 0 seconds.
Routers can thus detect changes of topology and route in time. This speeds up route
convergence. By default, this object is -1, indicating that an intelligent
timer is enabled instead. Note that -1 is not a configurable value.
Instead, by set the intelligent timer (hwOspfv2LsaArriveMaxIntvl,
hwOspfv2LsaArriveStartIntvl and hwOspfv2LsaArriveHoldIntvl) to default value,
it will get back to default configuration."
DEFVAL { -1 }
::= { hwOspfv2ProcessEntry 7 }
hwOspfv2LsaArriveMaxIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..120000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the maximum interval of intelligent-timer for receiving
OSPF LSAs. When hwOspfv2LsaArriveMaxIntvl is specified, you need also specify
hwOspfv2LsaArriveStartIntvl and hwOspfv2LsaArriveHoldIntvl, but you cannot
specify hwOspfv2LsaArriveIntvl. Note that -1 is not a configurable value.
Instead, by set the intelligent timer to default value, it will get back to
default configuration."
DEFVAL { 1000 }
::= { hwOspfv2ProcessEntry 8 }
hwOspfv2LsaArriveStartIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..60000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the initial interval of intelligent-timer for receiving
OSPF LSAs. When hwOspfv2LsaArriveStartIntvl is specified, you need also specify
hwOspfv2LsaArriveMaxIntvl and hwOspfv2LsaArriveHoldIntvl, but you cannot
specify hwOspfv2LsaArriveIntvl. Note that -1 is not a configurable value.
Instead, by set the intelligent timer to default value, it will get back to
default configuration."
DEFVAL { 500 }
::= { hwOspfv2ProcessEntry 9 }
hwOspfv2LsaArriveHoldIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..60000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Holdtime interval of intelligent-timer for receiving
OSPF LSAs. After an intelligent timer is enabled, the interval for receiving
LSAs is as follows: The initial interval for receiving LSAs is specified by
the parameter start-interval. The interval for receiving LSAs for the nth (n>2)
time is equal to hold-interval*2(n-1). When the interval specified by
hold-interval*2(n-1) reaches the maximum interval specified by max-interval,
OSPF receives LSAs at the maximum interval for three consecutive times.
Then, OSPF receives LSAs at the initial interval specified by start-interval.
When hwOspfv2LsaArriveHoldIntvl is specified, you need also specify
wOspfv2LsaArriveMaxIntvl and hwOspfv2LsaArriveStartIntvl, but you cannot
specify hwOspfv2LsaArriveIntvl. Note that -1 is not a configurable value.
Instead, by set the intelligent timer to default value, it will get back to
default configuration."
DEFVAL { 500 }
::= { hwOspfv2ProcessEntry 10 }
hwOspfv2LsaOrigIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 0)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"To avoid wasting network source due to network changes, OSPF defines that the
interval for updating LSAs is 5 seconds.
In a stable network, if the speed of route convergence is required to be fast,
you can cancel the interval for updating LSAs by setting it to 0 seconds.
So, routers can detect changes of topology and route in time. This speeds up
route convergence. By default, this object is -1, indicating that an intelligent
timer is enabled instead. Note that -1 is not a configurable value.
Instead, by set the intelligent timer (hwOspfv2LsaOrigMaxIntvl,
hwOspfv2LsaOrigStartIntvl, and hwOspfv2LsaOrigHoldIntvl) to default value,
it will get back to default configuration."
DEFVAL { -1 }
::= { hwOspfv2ProcessEntry 11 }
hwOspfv2LsaOrigMaxIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..120000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the maximum interval of intelligent-timer for updating
OSPF LSAs. When hwOspfv2LsaOrigMaxIntvl is specified, you need also specify
hwOspfv2LsaOrigStartIntvl and hwOspfv2LsaOrigHoldIntvl, but you cannot specify
hwOspfv2LsaOrigIntvl. Note that -1 is not a configurable value.
Instead, by set the intelligent timer to default value, it will get back to
default configuration."
DEFVAL { 5000 }
::= { hwOspfv2ProcessEntry 12 }
hwOspfv2LsaOrigStartIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..60000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the initial interval of intelligent-timer for updating
OSPF LSAs. When hwOspfv2LsaOrigStartIntvl is specified, you need also specify
hwOspfv2LsaOrigMaxIntvl and hwOspfv2LsaOrigHoldIntvl, but you cannot specify
hwOspfv2LsaOrigIntvl. Note that -1 is not a configurable value.
Instead, by set the intelligent timer to default value, it will get back to
default configuration."
DEFVAL { 500 }
::= { hwOspfv2ProcessEntry 13 }
hwOspfv2LsaOrigHoldIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..60000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Holdtime interval of intelligent-timer for updating
OSPF LSAs. After an intelligent timer is enabled, the interval for updating
LSAs is as follows: The initial interval for updating LSAs is specified by the
parameter start-interval. The interval for updating LSAs for the nth (n>2)
time is equal to hold-interval*2(n-1). When the interval specified by
hold-interval*2(n-1) reaches the maximum interval specified by max-interval,
OSPF updates LSAs at the maximum interval for three consecutive times. Then,
OSPF updates LSAs at the initial interval specified by start-interval. When
hwOspfv2LsaOrigHoldIntvl is specified, you need also specify
hwOspfv2LsaOrigMaxIntvl and hwOspfv2LsaOrigStartIntvl, but you cannot specify
hwOspfv2LsaOrigIntvl. Note that -1 is not a configurable value.
Instead, by set the intelligent timer to default value, it will get back to
default configuration."
DEFVAL { 1000 }
::= { hwOspfv2ProcessEntry 14 }
hwOspfv2LsaOrigIntvlOtherType OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..10)
UNITS "second"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the interval for updating LSAs, excluding OSPF router
LSAs and network LSAs. hwOspfv2LsaOrigIntvlOtherType and hwOspfv2LsaOrigIntvl
cannot be specified together. Here -1 indicated that hwOspfv2LsaOrigIntvl is
enabled instead. Note that -1 is not a configurable value. Instead, by set
this node to default value, it will get back to default configuration. "
DEFVAL { 5 }
::= { hwOspfv2ProcessEntry 15 }
hwOspfv2LsdbOverflowLimit OBJECT-TYPE
SYNTAX Integer32 (0..1000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of external LSAs in OSPF LSDB.
When this node is set to 0, it means that no limits exist."
DEFVAL { 0 }
::= { hwOspfv2ProcessEntry 16 }
hwOspfv2MaxLoadBalaNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of equal-cost routes to a destination in the routing table."
DEFVAL { ''b }
::= { hwOspfv2ProcessEntry 17 }
hwOspfv2AseRouteMaxNumber OBJECT-TYPE
SYNTAX Integer32 (100..5000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of ASE routes that are supported by OSPF."
DEFVAL { 5000000 }
::= { hwOspfv2ProcessEntry 18 }
hwOspfv2InterRouteMaxNumber OBJECT-TYPE
SYNTAX Integer32 (100..1000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of inter-area routes that are supported by OSPF."
DEFVAL { 1000000 }
::= { hwOspfv2ProcessEntry 19 }
hwOspfv2IntraRouteMaxNumber OBJECT-TYPE
SYNTAX Integer32 (100..100000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of intra-area routes that are supported by OSPF."
DEFVAL { 100000 }
::= { hwOspfv2ProcessEntry 20 }
hwOspfv2RetransLimitMaxNumber OBJECT-TYPE
SYNTAX Integer32 (0 | 2..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum count of retransmission. The value is an integer that ranges from 2 to 255.
When the retransmission limit is disabled, the value is set to 0."
DEFVAL { 0 }
::= { hwOspfv2ProcessEntry 21 }
hwOspfv2Rfc1583Compatibility OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is used to enable the routing rule for compatible RFC 1583."
DEFVAL { true }
::= { hwOspfv2ProcessEntry 22 }
hwOspfv2ShamHello OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is used to enable the sham-hello feature of OSPF.
After the feature is enabled, OSPF updates the timeout timer of the neighbor when
receiving protocol packets of various types."
DEFVAL { false }
::= { hwOspfv2ProcessEntry 23 }
hwOspfv2SpfSchIntvlUnit OBJECT-TYPE
SYNTAX INTEGER
{
second(1),
millionSecond(2),
none(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object identifies the interval unit for OSPF to calculate
routes. This object must be specified together with hwOspfv2SpfSchIntervalNumber.
By default, this object is none, indicating that an intelligent timer is
enabled instead. Note that none is not a configurable value.
Instead, by set the intelligent timer (hwOspfv2SpfSchMaxIntvl,
hwOspfv2SpfSchStartIntvl, and hwOspfv2SpfSchHoldIntvl) to default value,
it will get back to default configuration."
DEFVAL { none }
::= { hwOspfv2ProcessEntry 24 }
hwOspfv2SpfSchIntvlNumber OBJECT-TYPE
SYNTAX Integer32 (-1 | 0 | 1..10000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the object identifies the interval for OSPF to calculate routes.
This object must be specified together with hwOspfv2SpfSchIntervalUnit. By
default, this object is -1, indicating that an intelligent timer is
enabled instead. Note that -1 is not a configurable value.
Instead, by set the intelligent timer (hwOspfv2SpfSchMaxIntvl,
hwOspfv2SpfSchStartIntvl, and hwOspfv2SpfSchHoldIntvl) to default value,
it will get back to default configuration."
DEFVAL { -1 }
::= { hwOspfv2ProcessEntry 25 }
hwOspfv2SpfSchMaxIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..120000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the maximum interval of intelligent timer for OSPF to
perform the SPF calculation. When hwOspfv2SpfSchMaxIntvl is specified, you
need also specify hwOspfv2SpfSchStartIntvl and hwOspfv2SpfSchHoldIntvl, but
you cannot specify hwOspfv2SpfSchIntvlUnit or hwOspfv2SpfSchIntvlNumber.
Note that -1 is not a configurable value. Instead, by set the intelligent
timer to default value, it will get back to default configuration."
DEFVAL { 10000 }
::= { hwOspfv2ProcessEntry 26 }
hwOspfv2SpfSchStartIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..60000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the initial interval of intelligent timer for OSPF to
perform the SPF calculation. When hwOspfv2SpfSchStartIntvl is specified, you
need also specify hwOspfv2SpfSchMaxIntvl and hwOspfv2SpfSchHoldIntvl, but
you cannot specify hwOspfv2SpfSchIntvlUnit or hwOspfv2SpfSchIntvlNumber.
Note that -1 is not a configurable value. Instead, by set the intelligent
timer to default value, it will get back to default configuration."
DEFVAL { 500 }
::= { hwOspfv2ProcessEntry 27 }
hwOspfv2SpfSchHoldIntvl OBJECT-TYPE
SYNTAX Integer32 (-1 | 1..60000)
UNITS "millionSecond"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the Holdtime interval of intelligent timer for OSPF to
perform the SPF calculation. After an intelligent timer is enabled, the
interval for the SPF calculation is as follows: The initial interval for
the SPF calculation is specified by the parameter start-interval. The
interval for the SPF calculation for the nth (n>2) time is equal to
hold-interval*2(n-1). When the interval specified by hold-interval*2(n-1)
reaches the maximum interval specified by max-interval, OSPF performs the
SPF calculation at the maximum interval for three consecutive times. Then,
OSPF performs the SPF calculation at the initial interval specified by
start-interval. When hwOspfv2SpfSchHoldIntvl is specified, you need also
specify hwOspfv2SpfSchMaxIntvl and hwOspfv2SpfSchStartIntvl, but you cannot
specify hwOspfv2SpfSchIntvlUnit or hwOspfv2SpfSchIntvlNumber. Note that -1
is not a configurable value. Instead, by set the intelligent timer to default
value, it will get back to default configuration."
DEFVAL { 1000 }
::= { hwOspfv2ProcessEntry 28 }
hwOspfv2OpaqueCapability OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is used to enable opaque-LSAs capability. When the capability is enabled,
then the OSPF process can generate opaque LSAs and process the opaque LSAs
received from neighbors."
DEFVAL { false }
::= { hwOspfv2ProcessEntry 29 }
hwOspfv2TrafficAdjustment OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is used to enable IGP-shortcut feature. The value false means disable.
Otherwise, the value true means enable. If you want to set this node to false,
please check whether Local MT feature is disabled. When Local MT feature is
enabled, this node cannot be set to false."
DEFVAL { false }
::= { hwOspfv2ProcessEntry 30 }
hwOspfv2TrafficAdvertise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"It is used to enable IGP-shortcut and Forwarding Adjacency feature."
DEFVAL { false }
::= { hwOspfv2ProcessEntry 31 }
hwOspfv2FlushTimer OBJECT-TYPE
SYNTAX Integer32 (0..40)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the flush timer. When configuring or undoing OSPF process,
flush self-originated LSAs first.
If the timer expires, stop flushing LSAs, and then reset the process.
This timer is one-off. When flushing is finished, it recovers to 0."
DEFVAL { 0 }
::= { hwOspfv2ProcessEntry 32 }
hwOspfv2ProcessRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to create and destroy rows.
Because CreateAndWait is not supported, you can set this node to CreatAndGo
to create a new process. If the process is created successfully, the value of
this node changes to active."
::= { hwOspfv2ProcessEntry 33 }
hwOspfv2AreaTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2AreaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the configured parameters of the router's attached OSPF areas."
::= { hwOspfv2MIB 4 }
hwOspfv2AreaEntry OBJECT-TYPE
SYNTAX HwOspfv2AreaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" Information describes the configured parameters of the router's attached OSPF areas."
INDEX { hwOspfv2ProcessIdIndex, hwOspfv2AreaIdIndex }
::= { hwOspfv2AreaTable 1 }
HwOspfv2AreaEntry ::=
SEQUENCE {
hwOspfv2AreaIdIndex
IpAddress,
hwOspfv2AreaType
INTEGER,
hwOspfv2AreaNoSummary
TruthValue,
hwOspfv2AreaNssaFlushTimer
Integer32,
hwOspfv2AreaNssaDefAdvertise
TruthValue,
hwOspfv2AreaNssaNoImportRoute
TruthValue,
hwOspfv2AreaNssaTransAlways
TruthValue,
hwOspfv2AreaNssaTransTimer
Integer32,
hwOspfv2AreaNssaAllowFaZero
TruthValue,
hwOspfv2AreaNssaSuppressFa
TruthValue,
hwOspfv2AreaNssaSetNBit
TruthValue,
hwOspfv2AreaDefCost
Integer32,
hwOspfv2AreaDescription
DisplayString,
hwOspfv2AreaFilterExpAcl
Integer32,
hwOspfv2AreaFilterExpPrefix
DisplayString,
hwOspfv2AreaFilterExpPolicy
DisplayString,
hwOspfv2AreaFilterImpAcl
Integer32,
hwOspfv2AreaFilterImpPrefix
DisplayString,
hwOspfv2AreaFilterImpPolicy
DisplayString,
hwOspfv2AreaAuthModeType
INTEGER,
hwOspfv2AreaAuthPasswordType
INTEGER,
hwOspfv2AreaAuthKeyId
Integer32,
hwOspfv2AreaAuthText
DisplayString,
hwOspfv2AreaMplsTe
INTEGER,
hwOspfv2AreaAreaRowStatus
RowStatus,
hwOspfv2AreaFilterExpAclName
DisplayString,
hwOspfv2AreaFilterImpAclName
DisplayString,
hwOspfv2AreaAuthKeychName
DisplayString
}
hwOspfv2AreaIdIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifies an area.
Area ID 0.0.0.0 is used for the OSPF backbone."
::= { hwOspfv2AreaEntry 1 }
hwOspfv2AreaType OBJECT-TYPE
SYNTAX INTEGER
{
nssa(1),
stub(2),
normal(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify the type of area: nssa(1), stub(2), normal(3)."
DEFVAL { normal }
::= { hwOspfv2AreaEntry 2 }
hwOspfv2AreaNoSummary OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to reduce the number of LSAs that are transmitted to the NSSA
or Stub area. You can configure this node as an ABR. This also prevents the ABR
from transmitting Summary LSA (Type-3 LSA) to the NSSA or Stub area.
Note:
All nodes about NSSA property (hwOspfv2AreaType, hwOspfv2AreaNoSummary,
hwOspfv2AreaNssaFlushTimer, hwOspfv2AreaNssaNoImportRoute, hwOspfv2AreaNssaDefAdvertise,
hwOspfv2AreaNssaTransAlways, hwOspfv2AreaNssaTransTimer, hwOspfv2AreaNssaAllowFaZero,
hwOspfv2AreaNssaSuppressFa, and hwOspfv2AreaNssaSetNBit) should be set together."
DEFVAL { false }
::= { hwOspfv2AreaEntry 3 }
hwOspfv2AreaNssaFlushTimer OBJECT-TYPE
SYNTAX Integer32 (0..40)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of the flush timer. When configuring or undoing NSSA feature, flush self-originated
Type-5 and Type-7 LSAs first.
If the timer expires, stop flushing LSAs, and then reset the area.
This timer is one-off. When flushing is finished, it recovers to 0. "
DEFVAL { 0 }
::= { hwOspfv2AreaEntry 4 }
hwOspfv2AreaNssaDefAdvertise OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to decide whether default Type-7 LSAs should be originated.
When this node is set to true, for ABR router it must originate Type-7 LSAs, while for ASBR
router only if the route to 0.0.0.0 exists, it should originate Type-7 LSAs."
DEFVAL { false }
::= { hwOspfv2AreaEntry 5 }
hwOspfv2AreaNssaNoImportRoute OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to decide whether the external route is imported to NSSA area. On ASBR,
if this node is set to true, the external route can not be advertised to the NSSA area."
DEFVAL { false }
::= { hwOspfv2AreaEntry 6 }
hwOspfv2AreaNssaTransAlways OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node specifies whether or not an NSSA router will unconditionally translate Type-7
LSAs to Type-5 LSAs when acting as an NSSA border router.
When hwOspfAreaNssaTranslateAlways is set to true, Type-7 LSAs are always translated
regardless of the translator state of other NSSA border routers.
When hwOspfAreaNssaTranslateAlways is set to false, an NSSA border router will participate
in the translator election process. The router will translate Type-7 LSAs to Type-5 LSAs only
after being selected."
DEFVAL { false }
::= { hwOspfv2AreaEntry 7 }
hwOspfv2AreaNssaTransTimer OBJECT-TYPE
SYNTAX Integer32 (0..120)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to configure translator stability interval.
This minimizes excessive flushing of translated Type-7 LSAs and provides a more stable
translator transition.
If the area type is not NSSA, the default value of the translator stability interval
parameter is 0 seconds, and hwOspfv2AreaType is stub(2) or normal(3).
If the type of the area is NSSA, the default value of the translator stability interval
parameter is 40 seconds, and hwOspfv2AreaType is nssa(1)."
DEFVAL { 0 }
::= { hwOspfv2AreaEntry 8 }
hwOspfv2AreaNssaAllowFaZero OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When this node is set to true, the forwarding address of Type-7 LSAs can be filled with zero
when the router generates Type-7 LSAs."
DEFVAL { false }
::= { hwOspfv2AreaEntry 9 }
hwOspfv2AreaNssaSuppressFa OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When this node is set to true, the forwarding address of Type-7 LSAs can be filled with zero
when the ABR translates Type-7 LSAs into Type-5 LSAs."
DEFVAL { false }
::= { hwOspfv2AreaEntry 10 }
hwOspfv2AreaNssaSetNBit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When this node is set to true, N-bit should be set in the option when sending DD packets."
DEFVAL { false }
::= { hwOspfv2AreaEntry 11 }
hwOspfv2AreaDefCost OBJECT-TYPE
SYNTAX Integer32 (-1 | 0..16777214)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to specify the cost of the default routes that flush to stub area by the ABR.
The value ranges from 0 to 16777214. The default value is -1."
DEFVAL { -1 }
::= { hwOspfv2AreaEntry 12 }
hwOspfv2AreaDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to specify the description of the area."
::= { hwOspfv2AreaEntry 13 }
hwOspfv2AreaFilterExpAcl OBJECT-TYPE
SYNTAX Integer32 (0 | 2000..2999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the number of basic ACL.
The ACL number ranges from 2000 to 2999.
The default value is 0, indicating no configuration.
The object is used to filter the Summary LSAs that leave the area.
It is incompatible with hwOspfv2AreaFilterExpAclName, hwOspfv2AreaFilterExpPrefix,
and hwOspfv2AreaFilterExpPolicy. Only one object can be configured each time."
DEFVAL { 0 }
::= { hwOspfv2AreaEntry 14 }
hwOspfv2AreaFilterExpPrefix OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..169))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the address prefix list.
The name is a string of 1 to 169 characters.
The object is used to filter the Summary LSAs that leave the area.
It is incompatible with hwOspfv2AreaFilterExpAcl, hwOspfv2AreaFilterExpAclName,
and hwOspfv2AreaFilterExpPolicy. Only one object can be configured each time."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 15 }
hwOspfv2AreaFilterExpPolicy OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..40))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the routing policy.
The name is a string of 1 to 40 characters.
The object is used to filter the Summary LSAs that leave the area.
It is incompatible with hwOspfv2AreaFilterExpAcl, hwOspfv2AreaFilterExpAclName, and
hwOspfv2AreaFilterExpPrefix. Only one object can be configured each time."
DEFVAL { "" }
::= { hwOspfv2AreaEntry 16 }
hwOspfv2AreaFilterImpAcl OBJECT-TYPE
SYNTAX Integer32 (0 | 2000..2999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the number of basic ACL. The value ranges from 2000 to 2999.
The default value is 0, indicating no configuration.
The object is used to filter the Summary LSAs that enter the area.
It is incompatible with hwOspfv2AreaFilterImpAclName, hwOspfv2AreaFilterImpPrefix,
and hwOspfv2AreaFilterImpPolicy. Only one object can be configured each time."
DEFVAL { 0 }
::= { hwOspfv2AreaEntry 17 }
hwOspfv2AreaFilterImpPrefix OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..169))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the address prefix list.
The name is a string of 1 to 169 characters.
The object is used to filter the Summary LSAs that enter the area.
It is incompatible with hwOspfv2AreaFilterImpAcl, hwOspfv2AreaFilterImpAclName, and
hwOspfv2AreaFilterImpPolicy. Only one node can be configured each time."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 18 }
hwOspfv2AreaFilterImpPolicy OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..40))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the name of the routing policy.
The name is a string of 1 to 40 characters.
The object is used to filter the Summary LSAs that enter the area.
It is incompatible with hwOspfv2AreaFilterImpAcl, hwOspfv2AreaFilterImpAclName and
hwOspfv2AreaFilterImpPrefix. Only one node can be configured each time."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 19 }
hwOspfv2AreaAuthModeType OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
simple(2),
md5(3),
hmd5(4),
keychain(5),
hmacSha256(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of the OSPF area authentication mode.
none(1): not configured.
simple(2): indicates the simple authentication mode.
md5(3): indicates the md5 cipher mode.
hmd5(4): indicates the hmac-md5 cipher mode.
keychain(5): indicates the keychain authentication mode.
hmacSha256(6): indicates the hmac-Sha256 cipher mode.
Note:
If this value is set to simple(2), you should specify hwOspfv2AreaAuthPasswordType
and hwOspfv2AreaAuthText, but cannot specify hwOspfv2AreaAuthKeyId.
To configure the simple authentication mode with the authentication key being NULL,
set hwOspfv2AreaAuthPasswordType to plainText(2) and set hwOspfv2AreaAuthText to
a string of 0 characters.
If this value is set to md5(3) or hmd5(4) or hsha256(6), you can specify hwOspfv2AreaAuthKeyId
or not. Once you specify hwOspfv2AreaAuthKeyId, you should specify hwOspfv2AreaAuthPasswordType
and hwOspfv2AreaAuthText at the same time.
If this value is set to keychain(5), you should specify it and hwOspfv2AreaAuthText together, or specify it and hwOspfv2AreaAuthKeychName together,
but should not specify hwOspfv2AreaAuthKeyId and hwOspfv2AreaAuthPasswordType, and should not specify hwOspfv2AreaAuthText and hwOspfv2AreaAuthKeychName at the same time."
DEFVAL { none }
::= { hwOspfv2AreaEntry 20 }
hwOspfv2AreaAuthPasswordType OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
plainText(2),
cipherText(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify the type of area authentication key.
plaintext(2): If this node is set to plaintext(2), you can specify only the plain text
authentication key on the node hwOspfAreaAuthText. When viewing the configuration file,
display the password in plain mode.
ciphertext(3): If this node is set to ciphertext(3), you can specify the cipher text
authentication key or cipher text authentication key in node hwOspfv2AreaAuthText. When
viewing the configuration file, display the password in cipher mode.
Note:
If you set this node to plaintext(2) or ciphertext(3), you should set the node
hwOspfv2AreaAuthText at the same time."
DEFVAL { none }
::= { hwOspfv2AreaEntry 21 }
hwOspfv2AreaAuthKeyId OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Specify the authentication key ID for MD5 or HMAC-MD5 authentication mode.
The value of the ID is an integer that ranges from 1 to 255. The default value 0 means
no configuration."
DEFVAL { 0 }
::= { hwOspfv2AreaEntry 22 }
hwOspfv2AreaAuthText OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"In simple authentication, this object indicates the authentication key.
It's a string of 1 to 8 characters in plain text or 24 characters in cipher text.
In MD5 or HMAC-MD5 or HMAC-SHA256 authentication, this object also indicates the authentication key.
It's a string of 1 to 255 characters in plain text or 20 to 392 characters in cipher text.
In keychain authentication, this object indicates the keychain name.
It's a string of 1 to 47 characters.
When read, hwOspfv2AreaAuthText always returns an octet string of length zero."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 23 }
hwOspfv2AreaMplsTe OBJECT-TYPE
SYNTAX INTEGER
{
disable(1),
stdEnable(2),
stdDisable(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The node is used to enable the MPLS-TE capability.
disable(1): no configuration.
stdEnable(2): accepts only the LSAs in the standard format. That is, an LSA is rejected
if it has more than one Top level TLV.
stdDisable(3): accepts the LSAs not in the standard format."
DEFVAL { disable }
::= { hwOspfv2AreaEntry 24 }
hwOspfv2AreaAreaRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to create and destroy rows.
Because CreateAndWait is not supported, you can set this node to CreatAndGo to create a new
area. If the area is created successfully, the value of this node changes to active."
::= { hwOspfv2AreaEntry 25 }
hwOspfv2AreaFilterExpAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the ACL name. Note that the ACL can only be used as basic ACL.
The object is used to filter the Summary LSAs that leave the area.
It is incompatible with hwOspfv2AreaFilterExpAcl, hwOspfv2AreaFilterExpPrefix,
and hwOspfv2AreaFilterExpPolicy. Only one object can be configured each time."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 26 }
hwOspfv2AreaFilterImpAclName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the ACL name. Note that the ACL can only be used as basic ACL.
The object is used to filter the Summary LSAs that enter the area.
It is incompatible with hwOspfv2AreaFilterImpAcl, hwOspfv2AreaFilterImpPrefix,
and hwOspfv2AreaFilterImpPolicy. Only one object can be configured each time."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 27 }
hwOspfv2AreaAuthKeychName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the keychain name. It's a string of 1 to 47 characters."
DEFVAL { ''b }
::= { hwOspfv2AreaEntry 28 }
hwOspfv2NetworkTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2NetworkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the configured parameters of the router's attached OSPF networks."
::= { hwOspfv2MIB 5 }
hwOspfv2NetworkEntry OBJECT-TYPE
SYNTAX HwOspfv2NetworkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the configured parameters of the router's attached OSPF networks."
INDEX { hwOspfv2ProcessIdIndex, hwOspfv2AreaIdIndex, hwOspfv2NetworkIpAddrIndex, hwOspfv2NetworkIpMaskIndex }
::= { hwOspfv2NetworkTable 1 }
HwOspfv2NetworkEntry ::=
SEQUENCE {
hwOspfv2NetworkIpAddrIndex
IpAddress,
hwOspfv2NetworkIpMaskIndex
IpAddress,
hwOspfv2NetworkRowStatus
RowStatus
}
hwOspfv2NetworkIpAddrIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Network IP address: specifies the address of the network segment where the interface resides."
::= { hwOspfv2NetworkEntry 1 }
hwOspfv2NetworkIpMaskIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Network IP mask: specifies the wildcard mask of an IP address, which is similar to the
reversed form of the mask of an IP address.
'1' represents that the corresponding bit in the IP address is ignored and '0' represents
that this bit must be reserved."
::= { hwOspfv2NetworkEntry 2 }
hwOspfv2NetworkRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This node is used to create and destroy rows.
Because CreateAndWait is not supported, you can set this node to CreatAndGo to create a new
network. If the network is created successfully, the value of this node changes to active."
::= { hwOspfv2NetworkEntry 3 }
hwOspfv2NeighborTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2NeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the configured parameters of the OSPF neighbors attached to the router."
::= { hwOspfv2MIB 6 }
hwOspfv2NeighborEntry OBJECT-TYPE
SYNTAX HwOspfv2NeighborEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the configured parameters of the OSPF neighbors attached to the router."
INDEX { hwOspfv2ProcessIdIndex, hwOspfv2AreaIdIndex, hwOspfv2SelfIfnetIndex, hwOspfv2NbrIpAddrIndex }
::= { hwOspfv2NeighborTable 1 }
HwOspfv2NeighborEntry ::=
SEQUENCE {
hwOspfv2SelfIfnetIndex
Integer32,
hwOspfv2NbrIpAddrIndex
IpAddress,
hwOspfv2SelfRouterId
IpAddress,
hwOspfv2SelfIfIpAddress
IpAddress,
hwOspfv2SelfIfName
DisplayString,
hwOspfv2NbrIfDesignatedRouter
IpAddress,
hwOspfv2NbrIfBackupDesignatedRouter
IpAddress,
hwOspfv2NbrIfMtu
Integer32,
hwOspfv2NbrRouterId
IpAddress,
hwOspfv2NbrState
INTEGER,
hwOspfv2NbrMode
INTEGER,
hwOspfv2NbrPriority
Integer32,
hwOspfv2NbrUpTime
Unsigned32,
hwOspfv2NbrAuthSequence
Unsigned32,
hwOspfv2NbrDeadTimeLeft
Gauge32,
hwOspfv2NbrGrStatus
INTEGER
}
hwOspfv2SelfIfnetIndex OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the unique value for each interface."
::= { hwOspfv2NeighborEntry 1 }
hwOspfv2NbrIpAddrIndex OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the IP address of the OSPF neighbor."
::= { hwOspfv2NeighborEntry 2 }
hwOspfv2SelfRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the 32-bit integer that uniquely identifies the router in the Autonomous System.
It is the router ID of itself."
::= { hwOspfv2NeighborEntry 3 }
hwOspfv2SelfIfIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of the OSPF interface associated with this neighbor."
::= { hwOspfv2NeighborEntry 4 }
hwOspfv2SelfIfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the OSPF interface associated with this neighbor."
::= { hwOspfv2NeighborEntry 5 }
hwOspfv2NbrIfDesignatedRouter OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of the designated router that is obtained from the DD packets
from this neighbor. By default, the value is '00000000'H."
::= { hwOspfv2NeighborEntry 6 }
hwOspfv2NbrIfBackupDesignatedRouter OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the IP address of the backup designated router which is obtained from the
DD packets from this neighbor. By default, the value is '00000000'H."
::= { hwOspfv2NeighborEntry 7 }
hwOspfv2NbrIfMtu OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the size of the largest IP datagram that can be sent out the sending interface
without fragmentation. It is obtained from the DD packets from this neighbor. By default, the value is 0.
The MTU of the interface should be set to 0 in the DD packets when the MTU is not enabled on the OSPF
interface."
::= { hwOspfv2NeighborEntry 8 }
hwOspfv2NbrRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the router ID of this neighbor."
::= { hwOspfv2NeighborEntry 9 }
hwOspfv2NbrState OBJECT-TYPE
SYNTAX INTEGER
{
down(1),
attempt(2),
init(3),
twoWay(4),
exchangeStart(5),
exchange(6),
loading(7),
full(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the state of the relationship with this neighbor. By default, the state is down."
::= { hwOspfv2NeighborEntry 10 }
hwOspfv2NbrMode OBJECT-TYPE
SYNTAX INTEGER
{
master(1),
slave(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether this neighbor is master or slave through the DD negotiation."
::= { hwOspfv2NeighborEntry 11 }
hwOspfv2NbrPriority OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the priority of this neighbor in the designated router election algorithm.
The value 0 signifies that the neighbor is not eligible to become the designated router on this
particular network. By default, the value is 1."
::= { hwOspfv2NeighborEntry 12 }
hwOspfv2NbrUpTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the time (in seconds) since the state of this neighbor has been full."
::= { hwOspfv2NeighborEntry 13 }
hwOspfv2NbrAuthSequence OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the unsigned 32-bit non-decreasing sequence number. Used to guard against replay attacks.
By default, the value is 0."
::= { hwOspfv2NeighborEntry 14 }
hwOspfv2NbrDeadTimeLeft OBJECT-TYPE
SYNTAX Gauge32 (0..235926000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the period (in seconds) after which this neighbor is declared dead."
::= { hwOspfv2NeighborEntry 15 }
hwOspfv2NbrGrStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
doingGR(2),
helper(3),
notsupport(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates whether the neighbor performs GR or functions as a GR helper. By default, the state is normal."
::= { hwOspfv2NeighborEntry 16 }
hwOspfv2InterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Interface Table describes the interfaces from the viewpoint of OSPF."
::= { hwOspfv2MIB 7 }
hwOspfv2InterfaceEntry OBJECT-TYPE
SYNTAX HwOspfv2InterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the configured parameters of the OSPF interfaces."
INDEX { hwOspfv2ProcessIdIndex, hwOspfv2AreaIdIndex, hwOspfv2InterfaceIndex }
::= { hwOspfv2InterfaceTable 1 }
HwOspfv2InterfaceEntry ::=
SEQUENCE {
hwOspfv2InterfaceIndex
Integer32,
hwOspfv2InterfaceName
DisplayString
}
hwOspfv2InterfaceIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each interface."
::= { hwOspfv2InterfaceEntry 1 }
hwOspfv2InterfaceName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the OSPF interface."
::= { hwOspfv2InterfaceEntry 2 }
hwOspfv2TrapsObjects OBJECT IDENTIFIER ::= { hwOspfv2MIB 30 }
hwOspfv2NbrChgReason OBJECT-TYPE
SYNTAX INTEGER
{
adjacencyHoldTimerExpired(1),
physicalInterfaceChange(2),
ospfProtocolReason(3),
bfdSessionStateChange(4),
configureChange(5),
peerRouterReason(6),
waitingForEstablishingNeighbor(7),
alarmCleared(100)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The reason of the OSPF neighbor state change."
::= { hwOspfv2TrapsObjects 1 }
hwOspfv2IfChgReason OBJECT-TYPE
SYNTAX INTEGER
{
configureChange(1),
physicalInterfaceChange(2),
alarmCleared(100)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The reason of the OSPF interface state change."
::= { hwOspfv2TrapsObjects 2 }
hwOspfv2AreaId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifies an area.
Area ID 0.0.0.0 is used for the OSPF backbone."
::= { hwOspfv2TrapsObjects 3 }
hwOspfv2NewRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object indicates the 32-bit integer that uniquely identifies the router in the Autonomous System.
It is the new router ID."
::= { hwOspfv2TrapsObjects 4 }
hwOspfv2PeerFlappingSuppressStatus OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
holddown(2),
holdmaxcost(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The suppress status of peer flapping."
::= { hwOspfv2TrapsObjects 5 }
hwOspfv2PeerFlappingSuppressReason OBJECT-TYPE
SYNTAX INTEGER
{
resumeTimerExpired(1),
configureChange(2),
resetSuppressFlapping(3),
neighbourFlapping(4),
holddownToHoldmaxcost(5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The reason of peer flapping suppress status change."
::= { hwOspfv2TrapsObjects 6 }
hwOspfv2LsaId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A 32-bit integer uniquely identifies an area.
LSA-ID 0.0.0.0 is used for the OSPF LSA."
::= { hwOspfv2TrapsObjects 7 }
hwOspfv2LsaAge OBJECT-TYPE
SYNTAX Integer32 (0..3600)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This age of the ospf lsa."
::= { hwOspfv2TrapsObjects 8 }
hwOspfv2PurgeHostName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the name of an OSPF router which purge OSPF routes."
::= { hwOspfv2TrapsObjects 9 }
hwOspfv2PurgeIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IP address of an OSPF router which purge OSPF routes."
::= { hwOspfv2TrapsObjects 10 }
hwOspfv2PurgeRouterId OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the 32-bit integer that uniquely identifies the router in the Autonomous System."
::= { hwOspfv2TrapsObjects 11 }
hwOspfv2FlushLsaNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the number of LSAs deleted by the local device or another device."
::= { hwOspfv2TrapsObjects 12 }
hwOspfv2AffectedNodeNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the number of affected node when OSPF routes were deleted."
::= { hwOspfv2TrapsObjects 13 }
hwOspfv2TotalNodeNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the total number of node in the System."
::= { hwOspfv2TrapsObjects 14 }
hwOspfv2PurgeStatPeriod OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the period interval for purge statistic."
::= { hwOspfv2TrapsObjects 15 }
hwOspfv2RuledOutDeviceNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the number of node ruled out when checking faulty device."
::= { hwOspfv2TrapsObjects 16 }
hwOspfv2PurgeHostName1 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the name of an OSPF router which maybe purge OSPF routes."
::= { hwOspfv2TrapsObjects 17 }
hwOspfv2PurgeHostName2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the name of an OSPF router which maybe purge OSPF routes."
::= { hwOspfv2TrapsObjects 18 }
hwOspfv2PurgeHostName3 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..64))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the name of an OSPF router which maybe purge OSPF routes."
::= { hwOspfv2TrapsObjects 19 }
hwOspfv2PurgeIpAddress1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IP address of an OSPF router which maybe purge OSPF routes."
::= { hwOspfv2TrapsObjects 20 }
hwOspfv2PurgeIpAddress2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IP address of an OSPF router which maybe purge OSPF routes."
::= { hwOspfv2TrapsObjects 21 }
hwOspfv2PurgeIpAddress3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the IP address of an OSPF router which maybe purge OSPF routes."
::= { hwOspfv2TrapsObjects 22 }
hwOspfv2PurgeRouterId1 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the 32-bit integer that uniquely identifies the router in the Autonomous System."
::= { hwOspfv2TrapsObjects 23 }
hwOspfv2PurgeRouterId2 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the 32-bit integer that uniquely identifies the router in the Autonomous System."
::= { hwOspfv2TrapsObjects 24 }
hwOspfv2PurgeRouterId3 OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This object indicates the 32-bit integer that uniquely identifies the router in the Autonomous System."
::= { hwOspfv2TrapsObjects 25 }
hwOspfv2Traps OBJECT IDENTIFIER ::= { hwOspfv2MIB 31 }
hwOspfV2NeighborUnavailable NOTIFICATION-TYPE
OBJECTS { ospfRouterId, ospfNbrIpAddr, ospfNbrAddressLessIndex, ospfNbrRtrId, hwOspfv2SelfIfName,
hwOspfv2VpnName, hwOspfv2NbrChgReason }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF neighbor alarm parameters."
::= { hwOspfv2Traps 1 }
hwOspfV2NeighborUnavailableClear NOTIFICATION-TYPE
OBJECTS { ospfRouterId, ospfNbrIpAddr, ospfNbrAddressLessIndex, ospfNbrRtrId, hwOspfv2SelfIfName,
hwOspfv2VpnName, hwOspfv2NbrChgReason }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF neighbor clear alarm parameters."
::= { hwOspfv2Traps 2 }
hwOspfv2IntraAreaRouteridConflict NOTIFICATION-TYPE
OBJECTS { hwOspfv2SelfRouterId, hwOspfv2NbrRouterId }
STATUS current
DESCRIPTION
"The object is used to monitor router ID conflict in an intra area."
::= { hwOspfv2Traps 3 }
hwOspfv2IntraAreaDRIpAddressConflict NOTIFICATION-TYPE
OBJECTS { hwOspfv2SelfRouterId, hwOspfv2SelfIfIpAddress, hwOspfv2SelfIfName, ospfLsdbLsid, ospfLsdbRouterId }
STATUS current
DESCRIPTION
"The object is used to monitor conflicted IP addresses of DRs in an intra area."
::= { hwOspfv2Traps 4 }
hwOspfv2IntraAreaRouterIdConflictRecovered NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2AreaId, ospfRouterId, hwOspfv2NewRouterId }
STATUS current
DESCRIPTION
"The object is used to monitor router ID conflict recovery in an intra area."
::= { hwOspfv2Traps 5 }
hwOspfv2PeerFlappingSuppressStatusChange NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2AreaId, hwOspfv2InterfaceName, hwOspfv2PeerFlappingSuppressStatus, hwOspfv2PeerFlappingSuppressReason }
STATUS current
DESCRIPTION
"The object is used to monitor the peer flapping-suppress status of interface in ospfv2."
::= { hwOspfv2Traps 6 }
hwOspfv2ImportAseRouteThreshold NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs generated when an OSPF process imports external routes exceeds the configured alarm threshold."
::= { hwOspfv2Traps 7 }
hwOspfv2ImportAseRouteThresholdClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs generated when an OSPF process imports external routes has been less than the configured alarm threshold."
::= { hwOspfv2Traps 8 }
hwOspfv2ImportAseRouteExceed NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs generated when an OSPF process imports external routes exceeds the configured maximum number."
::= { hwOspfv2Traps 9 }
hwOspfv2ImportAseRouteExceedClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs generated when an OSPF process imports external routes has been less than the configured maximum number."
::= { hwOspfv2Traps 10 }
hwOspfv2ImportNssaRouteThreshold NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that the number of NSSA LSAs generated when an OSPF process imports external routes exceeds the configured alarm threshold."
::= { hwOspfv2Traps 11 }
hwOspfv2ImportNssaRouteThresholdClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that the number of NSSA LSAs generated when an OSPF process imports external routes has been less than the configured alarm threshold."
::= { hwOspfv2Traps 12 }
hwOspfv2ImportNssaRouteExceed NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that the number of NSSA LSAs generated when an OSPF process imports external routes falls below the lower threshold.
"
::= { hwOspfv2Traps 13 }
hwOspfv2ImportNssaRouteExceedClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that the number of NSSA LSAs generated when an OSPF process imports external routes reaches or exceeds the configured maximum number.
"
::= { hwOspfv2Traps 14 }
hwOspfv2LsdbApproachingOverflow NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of NSSA LSAs generated when an OSPF process imports external routes falls below the configured maximum number.
"
::= { hwOspfv2Traps 15 }
hwOspfv2LsdbApproachingOverflowClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs in the LSDB of an OSPF process is approaching the configured maximum number.
"
::= { hwOspfv2Traps 16 }
hwOspfv2LsdbOverflow NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs in the LSDB of an OSPF process falls far below the configured maximum number.
"
::= { hwOspfv2Traps 17 }
hwOspfv2LsdbOverflowClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex }
STATUS current
DESCRIPTION
"This object indicates that the number of AS-external LSAs in the LSDB of an OSPF process has reached the configured maximum number.
"
::= { hwOspfv2Traps 18 }
hwOspfv2GreaterAgeLsaRecived NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2NbrRouterId, hwOspfv2SelfIfName, hwOspfv2LsaId ,hwOspfv2LsaAge}
STATUS current
DESCRIPTION
"The object is used to monitor the router recive a greater age lsa in ospfv2."
::= { hwOspfv2Traps 19 }
hwOspfv2DeleteRouteByPurge NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId,
hwOspfv2FlushLsaNum, hwOspfv2AffectedNodeNum, hwOspfv2TotalNodeNum, hwOspfv2PurgeStatPeriod }
STATUS current
DESCRIPTION
"This object indicates that the local device deleted OSPF routes advertised by other devices.
Reset or isolate the device from the network."
::= { hwOspfv2Traps 20}
hwOspfv2DeleteRouteByPurgeClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that the local device did not delete OSPF routes advertised by other devices."
::= { hwOspfv2Traps 21}
hwOspfv2RouteBeDeletedByPurgeExact NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId,
hwOspfv2FlushLsaNum, hwOspfv2AffectedNodeNum, hwOspfv2TotalNodeNum, hwOspfv2PurgeStatPeriod }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by the local device were deleted by another device.
Reset or isolate the faulty device from the network."
::= { hwOspfv2Traps 22}
hwOspfv2RouteBeDeletedByPurgeExactClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by the local device were not deleted by another device."
::= { hwOspfv2Traps 23}
hwOspfv2RouteBeDeletedByPurgeInexact NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId,
hwOspfv2FlushLsaNum, hwOspfv2AffectedNodeNum, hwOspfv2TotalNodeNum, hwOspfv2RuledOutDeviceNum, hwOspfv2PurgeStatPeriod }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by the local device were deleted by another device,
and the possibly faulty device did not support OSPF flush LSA source trace. Log in to the possibly faulty device.
If the device is deleting routes, reset or isolate it from the network. Otherwise, check other devices.
Neither of the devices displayed in the display ospf purge-source-trace analysis-info command output is the faulty device."
::= { hwOspfv2Traps 24}
hwOspfv2RouteBeDeletedByPurgeInexactClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by the local device were not deleted by another device."
::= { hwOspfv2Traps 25}
hwOspfv2RouteBeDeletedByPurge NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId, hwOspfv2TotalNodeNum,
hwOspfv2PurgeHostName1, hwOspfv2PurgeIpAddress1, hwOspfv2PurgeRouterId1,
hwOspfv2PurgeHostName2, hwOspfv2PurgeIpAddress2, hwOspfv2PurgeRouterId2,
hwOspfv2PurgeHostName3, hwOspfv2PurgeIpAddress3, hwOspfv2PurgeRouterId3 }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by the local device were deleted by another device.
Log in to the possibly faulty device. If the device is deleting routes, reset or isolate it from the network.
Otherwise, check other devices."
::= { hwOspfv2Traps 26}
hwOspfv2RouteBeDeletedByPurgeClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by the local device were not deleted by another device."
::= { hwOspfv2Traps 27}
hwOspfv2ThirdPartRouteBeDeletedByPurgeExact NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId,
hwOspfv2FlushLsaNum, hwOspfv2AffectedNodeNum, hwOspfv2TotalNodeNum, hwOspfv2PurgeStatPeriod }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by another device were deleted.
Reset or isolate the faulty device from the network."
::= { hwOspfv2Traps 28}
hwOspfv2ThirdPartRouteBeDeletedByPurgeExactClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by another device were not deleted."
::= { hwOspfv2Traps 29}
hwOspfv2ThirdPartRouteBeDeletedByPurgeInexact NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId,
hwOspfv2FlushLsaNum, hwOspfv2AffectedNodeNum, hwOspfv2TotalNodeNum, hwOspfv2RuledOutDeviceNum, hwOspfv2PurgeStatPeriod }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by another device were deleted,
and the possibly faulty device did not support OSPF flush LSA source trace.
Log in to the possibly faulty device. If the device is deleting routes, reset or isolate it from the network.
Otherwise, check other devices. Neither of the devices displayed in the display ospf purge-source-trace analysis-info
command output is the faulty device."
::= { hwOspfv2Traps 30}
hwOspfv2ThirdPartRouteBeDeletedByPurgeInexactClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by another device were not deleted."
::= { hwOspfv2Traps 31}
hwOspfv2ThirdPartRouteBeDeletedByPurge NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId, hwOspfv2TotalNodeNum,
hwOspfv2PurgeHostName1, hwOspfv2PurgeIpAddress1, hwOspfv2PurgeRouterId1,
hwOspfv2PurgeHostName2, hwOspfv2PurgeIpAddress2, hwOspfv2PurgeRouterId2,
hwOspfv2PurgeHostName3, hwOspfv2PurgeIpAddress3, hwOspfv2PurgeRouterId3 }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by another device were deleted. Log in to the possibly faulty device.
If the device is deleting routes, reset or isolate it from the network. Otherwise, check other devices."
::= { hwOspfv2Traps 32}
hwOspfv2ThirdPartRouteBeDeletedByPurgeClear NOTIFICATION-TYPE
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2PurgeHostName, hwOspfv2PurgeIpAddress, hwOspfv2PurgeRouterId, hwOspfv2AreaId }
STATUS current
DESCRIPTION
"This object indicates that OSPF routes advertised by another device were not deleted."
::= { hwOspfv2Traps 33}
hwOspfv2Conformance OBJECT IDENTIFIER ::= { hwOspfv2MIB 32 }
hwOspfv2Compliances OBJECT IDENTIFIER ::= { hwOspfv2Conformance 1 }
hwOspfv2Statistic OBJECT IDENTIFIER ::= { hwOspfv2MIB 33 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1
hwOspfv2ProcessStatisticTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2ProcessStatisticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the statistics of the router's attached OSPF processes."
::= { hwOspfv2Statistic 1 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1
hwOspfv2ProcessStatisticEntry OBJECT-TYPE
SYNTAX HwOspfv2ProcessStatisticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the statistics of the router's attached OSPF processes."
INDEX { hwOspfv2ProcessIdIndex }
::= { hwOspfv2ProcessStatisticTable 1 }
HwOspfv2ProcessStatisticEntry ::=
SEQUENCE {
hwospfv2ProcessPeerNumber
Integer32,
hwospfv2ProcessFullPeerNumber
Integer32,
hwospfv2ProcessPeerUpCount
Counter32,
hwospfv2ProcessPeerDownCount
Counter32,
hwospfv2ProcessSendLsaNumber
Counter32,
hwospfv2ProcessReceiveLsaNumber
Counter32
}
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1.1
hwospfv2ProcessPeerNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The peer number of OSPF process."
::= { hwOspfv2ProcessStatisticEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1.2
hwospfv2ProcessFullPeerNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the number of neighbors in full state in the OSPF process.
"
::= { hwOspfv2ProcessStatisticEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1.3
hwospfv2ProcessPeerUpCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the number of neighbors in Up state in the OSPF process.
"
::= { hwOspfv2ProcessStatisticEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1.4
hwospfv2ProcessPeerDownCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the number of neighbors in Down state in the OSPF process.
"
::= { hwOspfv2ProcessStatisticEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1.5
hwospfv2ProcessSendLsaNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lsa send number of OSPF process."
::= { hwOspfv2ProcessStatisticEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.155.33.1.1.6
hwospfv2ProcessReceiveLsaNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lsa receive number of OSPF process."
::= { hwOspfv2ProcessStatisticEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.155.33.2
hwOspfv2InterfaceStatisticTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwOspfv2InterfaceStatisticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the statistics of the router's attached OSPF interfaces."
::= { hwOspfv2Statistic 2 }
-- 1.3.6.1.4.1.2011.5.25.155.33.2.1
hwOspfv2InterfaceStatisticEntry OBJECT-TYPE
SYNTAX HwOspfv2InterfaceStatisticEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information describes the statistics of the router's attached OSPF interfaces."
INDEX { hwOspfv2ProcessIdIndex, hwOspfv2AreaIdIndex, hwOspfv2InterfaceIndex }
::= { hwOspfv2InterfaceStatisticTable 1 }
HwOspfv2InterfaceStatisticEntry ::=
SEQUENCE {
hwospfv2InterfacePeerUpCount
Counter32,
hwospfv2InterfacePeerDownCount
Counter32
}
-- 1.3.6.1.4.1.2011.5.25.155.33.2.1.1
hwospfv2InterfacePeerUpCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the number of neighbors in Up state on the OSPF interface.
"
::= { hwOspfv2InterfaceStatisticEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.155.33.2.1.2
hwospfv2InterfacePeerDownCount OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies the number of neighbors in Down state on the OSPF interface.
"
::= { hwOspfv2InterfaceStatisticEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.155.33.3
hwOspfv2GlobalStatistic OBJECT IDENTIFIER ::= { hwOspfv2Statistic 3 }
-- 1.3.6.1.4.1.2011.5.25.155.33.3.1
hwospfv2SendLsaNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lsa send number of OSPF router."
::= { hwOspfv2GlobalStatistic 1 }
-- 1.3.6.1.4.1.2011.5.25.155.33.3.2
hwospfv2ReceiveLsaNumber OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The lsa receive number of OSPF router."
::= { hwOspfv2GlobalStatistic 2 }
-- this module
hwOspfv2ModuleFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for entities implementing
the Huawei OSPF MIB"
MODULE -- this module
MANDATORY-GROUPS { hwOspfv2MIBObjectsGroup, hwOspfv2AreaGroup, hwOspfv2NetworkGroup, hwOspfv2NeighborGroup }
::= { hwOspfv2Compliances 1 }
hwOspfv2Groups OBJECT IDENTIFIER ::= { hwOspfv2Conformance 2 }
hwOspfv2MIBObjectsGroup OBJECT-GROUP
OBJECTS { hwOspfv2MIBBinding }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage OSPF general parameters."
::= { hwOspfv2Groups 1 }
hwOspfv2ProcessGroup OBJECT-GROUP
OBJECTS { hwOspfv2VpnName, hwOspfv2ConfigRouterId, hwOspfv2ActualRouterId, hwOspfv2BandwidthReference, hwOspfv2Description,
hwOspfv2LsdbOverflowLimit, hwOspfv2MaxLoadBalaNumber, hwOspfv2AseRouteMaxNumber, hwOspfv2InterRouteMaxNumber, hwOspfv2IntraRouteMaxNumber,
hwOspfv2RetransLimitMaxNumber, hwOspfv2Rfc1583Compatibility, hwOspfv2ShamHello, hwOspfv2OpaqueCapability, hwOspfv2TrafficAdjustment,
hwOspfv2TrafficAdvertise, hwOspfv2FlushTimer, hwOspfv2SpfSchHoldIntvl, hwOspfv2SpfSchStartIntvl, hwOspfv2SpfSchMaxIntvl,
hwOspfv2LsaOrigIntvlOtherType, hwOspfv2LsaOrigHoldIntvl, hwOspfv2LsaOrigStartIntvl, hwOspfv2LsaOrigMaxIntvl, hwOspfv2LsaArriveHoldIntvl,
hwOspfv2LsaArriveStartIntvl, hwOspfv2LsaArriveMaxIntvl, hwOspfv2LsaArriveIntvl, hwOspfv2SpfSchIntvlUnit, hwOspfv2SpfSchIntvlNumber,
hwOspfv2LsaOrigIntvl, hwOspfv2ProcessRowStatus }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage OSPF process parameters."
::= { hwOspfv2Groups 2 }
hwOspfv2AreaGroup OBJECT-GROUP
OBJECTS { hwOspfv2AreaType, hwOspfv2AreaNoSummary, hwOspfv2AreaNssaFlushTimer, hwOspfv2AreaNssaDefAdvertise, hwOspfv2AreaNssaNoImportRoute,
hwOspfv2AreaNssaTransAlways, hwOspfv2AreaNssaTransTimer, hwOspfv2AreaNssaAllowFaZero, hwOspfv2AreaNssaSuppressFa, hwOspfv2AreaNssaSetNBit,
hwOspfv2AreaDefCost, hwOspfv2AreaDescription, hwOspfv2AreaFilterExpAcl, hwOspfv2AreaFilterExpPrefix, hwOspfv2AreaFilterExpPolicy,
hwOspfv2AreaFilterImpAcl, hwOspfv2AreaFilterImpPrefix, hwOspfv2AreaFilterImpPolicy, hwOspfv2AreaAuthModeType, hwOspfv2AreaAuthPasswordType,
hwOspfv2AreaAuthKeyId, hwOspfv2AreaAuthText, hwOspfv2AreaMplsTe, hwOspfv2AreaAreaRowStatus, hwOspfv2AreaFilterExpAclName,
hwOspfv2AreaFilterImpAclName, hwOspfv2AreaAuthKeychName }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage OSPF area parameters."
::= { hwOspfv2Groups 4 }
hwOspfv2NetworkGroup OBJECT-GROUP
OBJECTS { hwOspfv2NetworkRowStatus }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage OSPF network parameters."
::= { hwOspfv2Groups 5 }
hwOspfv2NeighborGroup OBJECT-GROUP
OBJECTS { hwOspfv2SelfRouterId, hwOspfv2SelfIfIpAddress, hwOspfv2SelfIfName, hwOspfv2NbrIfDesignatedRouter, hwOspfv2NbrIfBackupDesignatedRouter,
hwOspfv2NbrIfMtu, hwOspfv2NbrRouterId, hwOspfv2NbrState, hwOspfv2NbrMode, hwOspfv2NbrPriority,
hwOspfv2NbrUpTime, hwOspfv2NbrAuthSequence, hwOspfv2NbrDeadTimeLeft, hwOspfv2NbrGrStatus }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF neighbor parameters"
::= { hwOspfv2Groups 6 }
hwOspfv2ChangeGroup OBJECT-GROUP
OBJECTS { hwOspfv2MIBObjectsChange, hwOspfv2ProcessChange, hwOspfv2AreaChange, hwOspfv2NetworkChange }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF table parameters"
::= { hwOspfv2Groups 7 }
hwOspfTrapEventGroup NOTIFICATION-GROUP
NOTIFICATIONS {
hwOspfV2NeighborUnavailable,
hwOspfV2NeighborUnavailableClear,
hwOspfv2IntraAreaRouteridConflict,
hwOspfv2IntraAreaDRIpAddressConflict,
hwOspfv2IntraAreaRouterIdConflictRecovered,
hwOspfv2PeerFlappingSuppressStatusChange,
hwOspfv2ImportAseRouteThreshold,
hwOspfv2ImportAseRouteThresholdClear,
hwOspfv2ImportAseRouteExceed,
hwOspfv2ImportAseRouteExceedClear,
hwOspfv2ImportNssaRouteThreshold,
hwOspfv2ImportNssaRouteThresholdClear,
hwOspfv2ImportNssaRouteExceed,
hwOspfv2ImportNssaRouteExceedClear,
hwOspfv2LsdbApproachingOverflow,
hwOspfv2LsdbApproachingOverflowClear,
hwOspfv2LsdbOverflow,
hwOspfv2LsdbOverflowClear,
hwOspfv2GreaterAgeLsaRecived,
hwOspfv2DeleteRouteByPurge,
hwOspfv2DeleteRouteByPurgeClear,
hwOspfv2RouteBeDeletedByPurgeExact,
hwOspfv2RouteBeDeletedByPurgeExactClear,
hwOspfv2RouteBeDeletedByPurgeInexact,
hwOspfv2RouteBeDeletedByPurgeInexactClear,
hwOspfv2RouteBeDeletedByPurge,
hwOspfv2RouteBeDeletedByPurgeClear,
hwOspfv2ThirdPartRouteBeDeletedByPurgeExact,
hwOspfv2ThirdPartRouteBeDeletedByPurgeExactClear,
hwOspfv2ThirdPartRouteBeDeletedByPurgeInexact,
hwOspfv2ThirdPartRouteBeDeletedByPurgeInexactClear,
hwOspfv2ThirdPartRouteBeDeletedByPurge,
hwOspfv2ThirdPartRouteBeDeletedByPurgeClear
}
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF private alarm parameters."
::= { hwOspfv2Groups 8 }
hwOspfv2TrapsObjectsGroup OBJECT-GROUP
OBJECTS { hwOspfv2NbrChgReason, hwOspfv2IfChgReason, hwOspfv2AreaId, hwOspfv2NewRouterId, hwOspfv2ProcessIdIndex}
STATUS current
DESCRIPTION
"The objects are used to monitor/manage the neighbor state change from full to others."
::= { hwOspfv2Groups 9 }
hwOspfv2InterfaceGroup OBJECT-GROUP
OBJECTS { hwOspfv2InterfaceName }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF interface parameters."
::= { hwOspfv2Groups 10 }
hwOspfv2ProcessStatisticGroup OBJECT-GROUP
OBJECTS { hwospfv2ProcessPeerNumber, hwospfv2ProcessFullPeerNumber, hwospfv2ProcessPeerUpCount, hwospfv2ProcessPeerDownCount, hwospfv2ProcessSendLsaNumber,
hwospfv2ProcessReceiveLsaNumber }
STATUS current
DESCRIPTION
"The statistics information group of OSPF process."
::= { hwOspfv2Groups 11 }
hwOspfv2PeerFlappingGroup OBJECT-GROUP
OBJECTS { hwOspfv2ProcessIdIndex, hwOspfv2NewRouterId, hwOspfv2AreaId, hwOspfv2InterfaceName, hwOspfv2PeerFlappingSuppressStatus, hwOspfv2PeerFlappingSuppressReason }
STATUS current
DESCRIPTION
"These objects are used to monitor/manage changed OSPF peer flapping suppress status."
::= { hwOspfv2Groups 12 }
-- 1.3.6.1.4.1.2011.5.25.155.32.2.13
hwOspfv2InterfaceStatisticGroup OBJECT-GROUP
OBJECTS { hwospfv2InterfacePeerUpCount, hwospfv2InterfacePeerDownCount }
STATUS current
DESCRIPTION
"The statistics information group of OSPF interface."
::= { hwOspfv2Groups 13 }
-- 1.3.6.1.4.1.2011.5.25.155.32.2.14
hwOspfv2GlobalStatisticGroup OBJECT-GROUP
OBJECTS { hwospfv2SendLsaNumber, hwospfv2ReceiveLsaNumber }
STATUS current
DESCRIPTION
"The statistics information group of OSPF router."
::= { hwOspfv2Groups 14 }
END
--
-- HUAWEI-OSPFV2-MIB.mib
--
|