1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
|
CTRON-DECIV-ROUTER-MIB DEFINITIONS ::= BEGIN
-- ctron-deciv-router-mib.txt
-- Revision: 1.01.03
-- Part Number: 2170985
-- Date: August 11, 1995
-- Cabletron Systems, Inc.
-- 35 Industrial Way, P.O. Box 5005
-- Rochester, NH 03867-0505
-- (603) 332-9400
-- support@ctron.com
-- This module provides authoritative definitions for Cabletron's
-- enterprise specific DECnet Routing Services MIB.
--
-- This module will be extended as required.
-- Cabletron Systems reserves the right to make changes in
-- specification and other information contained in this document
-- without prior notice. The reader should consult Cabletron Systems
-- to determine whether any such changes have been made.
--
-- In no event shall Cabletron Systems be liable for any incidental,
-- indirect, special, or consequential damages whatsoever (including
-- but not limited to lost profits) arising out of or related to this
-- document or the information contained in it, even if Cabletron
-- Systems has been advised of, known, or should have known, the
-- possibility of such damages.
-- Cabletron grants vendors, end-users, and other interested parties
-- a non-exclusive license to use this Specification in connection
-- with the management of Cabletron products.
-- Copyright August 95 Cabletron Systems
IMPORTS
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
nwRtrProtoSuites
FROM ROUTER-OIDS
Counter, TimeTicks, Gauge
FROM RFC1155-SMI;
-- The DECnet Phase IV Router Group.
nwDecIVRouter OBJECT IDENTIFIER ::= { nwRtrProtoSuites 3 }
nwDecIVMibs OBJECT IDENTIFIER ::= { nwDecIVRouter 1 }
nwDecIVComponents OBJECT IDENTIFIER ::= { nwDecIVRouter 2 }
-- DECnet Phase IV Router Component Groups
nwDecIVSystem OBJECT IDENTIFIER ::= { nwDecIVComponents 1 }
nwDecIVForwarding OBJECT IDENTIFIER ::= { nwDecIVComponents 2 }
nwDecIVTopology OBJECT IDENTIFIER ::= { nwDecIVComponents 4 }
nwDecIVFib OBJECT IDENTIFIER ::= { nwDecIVComponents 5 }
nwDecIVEndSystems OBJECT IDENTIFIER ::= { nwDecIVComponents 6 }
nwDecIVAccessControl OBJECT IDENTIFIER ::= { nwDecIVComponents 7 }
nwDecIVFilters OBJECT IDENTIFIER ::= { nwDecIVComponents 8 }
nwDecIVRedirector OBJECT IDENTIFIER ::= { nwDecIVComponents 9 }
nwDecIVEvent OBJECT IDENTIFIER ::= { nwDecIVComponents 10 }
nwDecIVWorkGroup OBJECT IDENTIFIER ::= { nwDecIVComponents 11 }
-- DECnet Phase IV Router System Groups
nwDecIVSysConfig OBJECT IDENTIFIER ::= { nwDecIVSystem 1 }
nwDecIVSysAdministration OBJECT IDENTIFIER ::= { nwDecIVSystem 2 }
-- DECnet Phase IV Router Forwarding Groups
nwDecIVFwdSystem OBJECT IDENTIFIER ::= { nwDecIVForwarding 1 }
nwDecIVFwdInterfaces OBJECT IDENTIFIER ::= { nwDecIVForwarding 2 }
nwDecIVFwdCounters OBJECT IDENTIFIER ::= { nwDecIVFwdSystem 1 }
nwDecIVFwdIfConfig OBJECT IDENTIFIER ::= { nwDecIVFwdInterfaces 1 }
nwDecIVFwdIfCounters OBJECT IDENTIFIER ::= { nwDecIVFwdInterfaces 2 }
-- DECnet Phase IV Router Routing Groups
nwDecIVDistanceVector OBJECT IDENTIFIER ::= { nwDecIVTopology 1 }
nwDecIVLinkState OBJECT IDENTIFIER ::= { nwDecIVTopology 2 }
nwDecIVProto OBJECT IDENTIFIER ::= { nwDecIVDistanceVector 1 }
nwDecIVProtoSystem OBJECT IDENTIFIER ::= { nwDecIVProto 1 }
nwDecIVProtoInterface OBJECT IDENTIFIER ::= { nwDecIVProto 2 }
nwDecIVProtoConfig OBJECT IDENTIFIER ::= { nwDecIVProtoSystem 1 }
nwDecIVProtoCounters OBJECT IDENTIFIER ::= { nwDecIVProtoSystem 2 }
nwDecIVProtoIfConfig OBJECT IDENTIFIER ::= { nwDecIVProtoInterface 1 }
nwDecIVProtoIfCounters OBJECT IDENTIFIER ::= { nwDecIVProtoInterface 2 }
-- DECnet Phase IV Router Host End Systems Groups
nwDecIVHostsSystem OBJECT IDENTIFIER ::= { nwDecIVEndSystems 1 }
nwDecIVHostsInterfaces OBJECT IDENTIFIER ::= { nwDecIVEndSystems 2 }
nwDecIVHostsToMedia OBJECT IDENTIFIER ::= { nwDecIVEndSystems 3 }
-- DECnet Phase IV Router Access Control Group
-- DECnet Phase IV Router Event Log Group
nwDecIVEventLogConfig OBJECT IDENTIFIER ::= { nwDecIVEvent 1 }
nwDecIVEventLogFilterTable OBJECT IDENTIFIER ::= { nwDecIVEvent 2 }
nwDecIVEventLogTable OBJECT IDENTIFIER ::= { nwDecIVEvent 3 }
-- DECnet Phase IV Router Work-Group Group
DecIVAddress ::= OCTET STRING
-- MacAddress ::= OCTET STRING (SIZE (6))
-- DECnet Phase IV MIB Group
-- This group contains information about the revision level of this
-- MIB within the device. It allows verification of the released
-- version without having to read other objects.
nwDecIVMibRevText OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the DECnet Phase
IV MIB in textual format."
::= { nwDecIVMibs 1 }
-- DECnet Phase IV Router System Group
-- This group contains the objects related to the DECnet Phase IV Router at a
-- global device-wide level.
-- DECnet Phase IV System Configuration Group
-- This group contains the objects that pertain to the setup and
-- configuration of the DECnet Phase IV routing services at a global,
-- device-wide level.
nwDecIVSysRouterId OBJECT-TYPE
SYNTAX DecIVAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The DECnet Address used to uniquely identify the host (device)
running DECnet Phase IV Routing Services. Since DECnet Phase IV
uses a single address to identify the host and all of its router
ports, rather than using an address per router port,
nwDecIVSysRouterID is the DECnet node address for all the router
ports on the device."
::= { nwDecIVSysConfig 1 }
nwDecIVNodeType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- not configured
routing-iv(2), -- level 1 router
area(3) -- level 2 router
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the node type. Setting this value to 2, (routing-iv),
establishes the Routing Services-enabled device as a DECnet
Level 1, intra-area router. Setting this value to 2, establishes
the Routing Services-enabled device as a DECnet Phase IV Level 2,
or inter-area router."
DEFVAL { routing-iv }
::= { nwDecIVSysConfig 2 }
nwDecIVMaxNodes OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of DECnet nodes allowed within an
area."
DEFVAL { 1023 }
::= { nwDecIVSysConfig 3 }
nwDecIVMaxBRA OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of router adjacencies supported by
this node."
DEFVAL { 16 }
::= { nwDecIVSysConfig 4 }
nwDecIVMaxBEA OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of endnode adjacencies supported
by this node."
DEFVAL { 64 }
::= { nwDecIVSysConfig 5 }
nwDecIVMaxHops OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of hops allowed for a valid route
within the area. Any intra-area route consisting of a greater
number of hops than specified by nwDecIVMaxHops is considered
unreachable."
DEFVAL { 30 }
::= { nwDecIVSysConfig 6 }
nwDecIVMaxCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum cost allowed for a valid route within the
area. Any intra-area route with a cost greater than nwDecIVMaxCost
is considered unreachable."
DEFVAL { 1022 }
::= { nwDecIVSysConfig 7 }
nwDecIVMaxVisits OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of intra-area hops a packet can be
forwarded. A packet is dropped once it has been forwarded
nwDecIVMaxVisits."
DEFVAL { 63 }
::= { nwDecIVSysConfig 8 }
nwDecIVNonBroadcastTimer OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the periodic interval (in seconds) at which DECnet
Routing Services advertises its route table, on any non-broadcast
networks attached to any router port configured and enabled for
DECnet Phase IV Routing Services."
DEFVAL { 1000 }
::= { nwDecIVSysConfig 9 }
nwDecIVBroadcastTimer OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the periodic interval (in seconds) at which DECnet
Routing Services advertises its route table on any multi-access
broadcast networks attached to any router port configured and
enabled for DECnet Phase IV Routing Services."
DEFVAL { 1000 }
::= { nwDecIVSysConfig 10 }
nwDecIVAreas OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of areas allowed within a Level 2
(inter-area)routing domain."
DEFVAL { 63 }
::= { nwDecIVSysConfig 11 }
nwDecIVMaxAreaHops OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of areas that can be hopped by
a valid inter-area route. Any inter-area route requiring a
greater number of areas to be hopped than specified by
nwDecIVMaxAreaHops is considered invalid."
DEFVAL { 30 }
::= { nwDecIVSysConfig 12 }
nwDecIVMaxAreaCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum cost allowed for a valid Level 2
(inter-area) route. Any inter-area route with a cost greater than
nwDecIVMaxAreaCost is considered unreachable."
DEFVAL { 1022 }
::= { nwDecIVSysConfig 13 }
-- DECnet Phase IV System Administration Group
nwDecIVSysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- shutdown DECnet routing services
enabled(3) -- startup DECnet routing services
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of DECnet Phase IV Routing Services,
system-wide. Enabled (3) causes DECnet Phase IV system-wide Routing
Services to become active on all router ports configured and enabled
for DECnet Phase IV Routing Services. Disabled (2) causes DECnet
Phase IV Routing Services to become inactive system-wide."
DEFVAL { enabled }
::= { nwDecIVSysAdministration 1 }
nwDecIVSysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not running
enabled(3), -- running
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running,invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of DECnet Phase IV
Routing Services system-wide. The value of nwDecIVSysOperStatus
indicates any problem with your DECnet Phase IV Routing Services
configuration. A value of 6 indicates that regardless of the value
of nwDecIVSysAdminStatus, DECnet Phase IV Routing Services is not
operating because of an invalid configuration."
DEFVAL { enabled }
::= { nwDecIVSysAdministration 2 }
nwDecIVSysAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets DECnet Phase IV Routing Services, system-wide. Reset (2)
forces a restart of DECnet Phase IV Routing Services without a
graceful shutdown on any active router ports and without affecting
any other routing services."
DEFVAL { other }
::= { nwDecIVSysAdministration 3 }
nwDecIVSysOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwDecIVSysOperStatus has been in it's current state."
::= { nwDecIVSysAdministration 4 }
nwDecIVSysVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the DECnet Phase IV Routing
Services firmware, in textual format."
::= { nwDecIVSysAdministration 5 }
-- DECnet Phase IV Forwarding Group
-- This group contains the managed objects used to setup and configure
-- the DECnet Phase IV router network router ports for packet forwarding as well as
-- the aggregate and per-interface DECnet Phase IV packet forwarding counters.
-- DECnet Phase IV System-wide Packet Forwarding Counters
nwDecIVFwdCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- counters off
enabled(3) -- counters on
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the aggregate (system-wide)
DECnet packet and byte counters. Enabled (3) causes these counters
to become active. Disabled (2) causes these counters to become
inactive."
DEFVAL { enabled }
::= { nwDecIVFwdCounters 1 }
nwDecIVFwdCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the aggregate (system-wide) DECnet packet and byte counters.
Reset (2) resets the DECnet aggregate counters to 0.
nwDecIVFwdCtrOperationalTime is also reset to 0."
DEFVAL { other }
::= { nwDecIVFwdCounters 2 }
nwDecIVFwdCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
DecIVFwdCtrOperStatus has been in the current state."
::= { nwDecIVFwdCounters 3 }
nwDecIVFwdCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
received, system-wide, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 4 }
nwDecIVFwdCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
transmitted, system-wide, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 5 }
nwDecIVFwdCtrFwdPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
forwarded, system-wide, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 6 }
nwDecIVFwdCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
administratively filtered, system-wide, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 7 }
nwDecIVFwdCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded, system-wide, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 8 }
nwDecIVFwdCtrAddrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded, system-wide, during nwDecIVFwdCtrOperationalTime,
because of addressing errors in the DECnet header."
::= { nwDecIVFwdCounters 9 }
nwDecIVFwdCtrLenErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded, system-wide, during nwDecIVFwdCtrOperationalTime,
because an invalid packet length is contained in the DECnet header."
::= { nwDecIVFwdCounters 10 }
nwDecIVFwdCtrHdrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded, system-wide, during nwDecIVFwdCtrOperationalTime,
because of an invalid DECnet header."
::= { nwDecIVFwdCounters 11 }
nwDecIVFwdCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been received, system-wide, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 12 }
nwDecIVFwdCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been transmitted, system-wide, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 13 }
nwDecIVFwdCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets
that have been forwarded, system-wide, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 14 }
nwDecIVFwdCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been administratively filtered, system-wide, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 15 }
nwDecIVFwdCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been discarded, system wide, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 16 }
nwDecIVFwdCtrHostInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
successfully delivered to the local host, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 17 }
nwDecIVFwdCtrHostOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
transmitted by the local host, during nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 18 }
nwDecIVFwdCtrHostDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded by the local host, during nwDecIVFwdCtrOperationalTime,
due to a lack of host resources."
::= { nwDecIVFwdCounters 19 }
nwDecIVFwdCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been received by the local host, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 20 }
nwDecIVFwdCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been transmitted by the local host, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdCounters 21 }
nwDecIVFwdCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that have
been discarded by the local host, during
nwDecIVFwdCtrOperationalTime, due to a lack of host resources."
::= { nwDecIVFwdCounters 22 }
-- DECnet Phase IV Forwarding Interface Table
nwDecIVFwdIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port. This table is
indexed by nwDecIVFwdIfIndex, which indicates the value of MIB 2
ifIndex, which identifies the router port for which each entry exists."
::= { nwDecIVFwdIfConfig 1 }
nwDecIVFwdIfEntry OBJECT-TYPE
SYNTAX NwDecIVFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the DECnet Phase IV Routing Services
configuration for the router port for which the entry exists."
INDEX { nwDecIVFwdIfIndex }
::= { nwDecIVFwdIfTable 1 }
NwDecIVFwdIfEntry ::=
SEQUENCE {
nwDecIVFwdIfIndex INTEGER,
nwDecIVFwdIfAdminStatus INTEGER,
nwDecIVFwdIfOperStatus INTEGER,
nwDecIVFwdIfOperationalTime TimeTicks,
nwDecIVFwdIfControl INTEGER,
nwDecIVFwdIfMtu INTEGER,
nwDecIVFwdIfForwarding INTEGER,
nwDecIVFwdIfFrameType INTEGER,
nwDecIVFwdIfAclIdentifier INTEGER,
nwDecIVFwdIfAclStatus INTEGER,
nwDecIVFwdIfCacheControl INTEGER,
nwDecIVFwdIfCacheEntries Counter,
nwDecIVFwdIfCacheHits Counter,
nwDecIVFwdIfCacheMisses Counter
}
nwDecIVFwdIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifindex, which identifies the router
port for which the entry exists."
::= { nwDecIVFwdIfEntry 1 }
nwDecIVFwdIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of DECnet Phase IV Routing Services
on the router port for which the entry exists. Enabled (3) causes
DECnet Phase IV Routing Services to become active. Disabled (2)
causes it to become inactive."
DEFVAL { enabled }
::= { nwDecIVFwdIfEntry 2 }
nwDecIVFwdIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not running
enabled(3), -- running
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running,invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of DECnet Phase IV
Routing Services on the router port for which the entry exists.
The value of nwDecIVFwdIfOperStatus indicates any problem with the
configuration of DECnet Phase IV Routing Services on the router port.
value of 6 indicates that regardless of the value of
nwDecIVFwdIfAdminStatus, DECnet Phase IV Routing Services is not
operating because of an invalid port-level configuration."
::= { nwDecIVFwdIfEntry 3 }
nwDecIVFwdIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwDecIVFwdIfOperStatus has been in its current state."
::= { nwDecIVFwdIfEntry 4 }
nwDecIVFwdIfControl OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
add(2), -- add this entry
delete(3) -- delete this entry
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object,
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific
MIBs. Setting this object has no effect."
DEFVAL { add }
::= { nwDecIVFwdIfEntry 5 }
nwDecIVFwdIfMtu OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Maximum Transmission Unit (MTU) for DECnet packets on
the router port for which the entry exists. This includes the DECnet
header and data, but does not include framing."
DEFVAL { 1500 }
::= { nwDecIVFwdIfEntry 6 }
nwDecIVFwdIfForwarding OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not forwarding
enabled(3) -- forwarding
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the forwarding of DECnet packets on the router port for
which the entry exists. Enabled (3) causes DECnet packets to be
forwarded. Disabled (2) prevents DECnet packets from being forwarded."
DEFVAL { disabled }
::= { nwDecIVFwdIfEntry 7 }
nwDecIVFwdIfFrameType OBJECT-TYPE
SYNTAX INTEGER { -- valid media types
other(1), -- experimental
ethernet(2), -- ethernet
snap(3), -- ethernet, fddi, and token ring
nativewan(8), -- wan media types
encapenet(9), -- wan media types
encapenetsnap(11), -- wan media types
encaptrsnap(14), -- wan media types
encapfddisnap(16), -- wan media types
canonical(17) -- special media, tbd
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the framing type for DECnet packets forwarded on the router
port for which the entry exists. Some frame types are only valid for
specific media types. The comments reflect those valid media types."
DEFVAL { ethernet }
::= { nwDecIVFwdIfEntry 8 }
nwDecIVFwdIfAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Access Control ID of the access control list in
effect for DECnet packets being routed on the router port for which
the entry exists. A value of 0 indicates that no access control list
is in effect."
DEFVAL { 0 }
::= { nwDecIVFwdIfEntry 9 }
nwDecIVFwdIfAclStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- do not apply nwDecIVFwdIfAclIdentifier
enabled(3) -- apply nwDecIVFwdIfAclIdentifier
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of any access control list configured
for DECnet traffic on the router port for which the entry exists.
Enabled (3) applies the access control list indicated by the value
of nwDecIVFwdIfAclIdentifier to all DECnet traffic being routed on
the port. Disabled (2) prevents the access control list from being
applied."
DEFVAL { disabled }
::= { nwDecIVFwdIfEntry 10 }
nwDecIVFwdIfCacheControl OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the followin
disable(2), -- caching disabled
enable(3) -- caching enabled
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific
MIBs. Setting this object has no effect."
DEFVAL { enable }
::= { nwDecIVFwdIfEntry 11 }
nwDecIVFwdIfCacheEntries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing
Services protocol-specific MIBs. Setting this object has no
effect."
::= { nwDecIVFwdIfEntry 12 }
nwDecIVFwdIfCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific MIBs.
Setting this object has no effect."
::= { nwDecIVFwdIfEntry 13 }
nwDecIVFwdIfCacheMisses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific
MIBs. Setting this object has no effect."
::= { nwDecIVFwdIfEntry 14 }
-- DECnet Phase IV Forwarding Interfaces Counter Table
nwDecIVFwdIfCtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVFwdIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port configured and
enabled for DECnet Phase IV Routing Services."
::= { nwDecIVFwdIfCounters 1 }
nwDecIVFwdIfCtrEntry OBJECT-TYPE
SYNTAX NwDecIVFwdIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry indicates the current packet and byte count of DECnet
packets on each router port for which the entry exists."
INDEX { nwDecIVFwdIfCtrIfIndex }
::= { nwDecIVFwdIfCtrTable 1 }
NwDecIVFwdIfCtrEntry ::=
SEQUENCE {
nwDecIVFwdIfCtrIfIndex INTEGER,
nwDecIVFwdIfCtrAdminStatus INTEGER,
nwDecIVFwdIfCtrReset INTEGER,
nwDecIVFwdIfCtrOperationalTime TimeTicks,
nwDecIVFwdIfCtrInPkts Counter,
nwDecIVFwdIfCtrOutPkts Counter,
nwDecIVFwdIfCtrFwdPkts Counter,
nwDecIVFwdIfCtrFilteredPkts Counter,
nwDecIVFwdIfCtrDiscardPkts Counter,
nwDecIVFwdIfCtrAddrErrPkts Counter,
nwDecIVFwdIfCtrLenErrPkts Counter,
nwDecIVFwdIfCtrHdrErrPkts Counter,
nwDecIVFwdIfCtrInBytes Counter,
nwDecIVFwdIfCtrOutBytes Counter,
nwDecIVFwdIfCtrFwdBytes Counter,
nwDecIVFwdIfCtrFilteredBytes Counter,
nwDecIVFwdIfCtrDiscardBytes Counter,
nwDecIVFwdIfCtrHostInPkts Counter,
nwDecIVFwdIfCtrHostOutPkts Counter,
nwDecIVFwdIfCtrHostDiscardPkts Counter,
nwDecIVFwdIfCtrHostInBytes Counter,
nwDecIVFwdIfCtrHostOutBytes Counter,
nwDecIVFwdIfCtrHostDiscardBytes Counter
}
nwDecIVFwdIfCtrIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifindex, which identifies the router
port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 1 }
nwDecIVFwdIfCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the per-port DECnet packet and
byte counters on the router port for which the entry exists. Enabled
(3) causes these counters to become active. Disabled (2) causes
these counters to become inactive."
DEFVAL { enabled }
::= { nwDecIVFwdIfCtrEntry 2 }
nwDecIVFwdIfCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the per-port DECnet packet and byte counters on the router
port for which the entry exists. Reset (2) resets the counters to 0.
nwDecIVFwdIfCtrOperationalTime is also reset to 0."
DEFVAL { other }
::= { nwDecIVFwdIfCtrEntry 3 }
nwDecIVFwdIfCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that the
per-port DECnet packet and byte counters have been active on the
router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 4 }
nwDecIVFwdIfCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
received, during nwDecIVFwdIfCtrOperationaltime, on the router port
for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 5 }
nwDecIVFwdIfCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
transmitted, during nwDecIVFwdIfCtrOperationalTime, on the router
port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 6 }
nwDecIVFwdIfCtrFwdPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
forwarded on the router port for which the entry exists, during
nwDecIVFwdCtrOperationalTime."
::= { nwDecIVFwdIfCtrEntry 7 }
nwDecIVFwdIfCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
administratively filtered, during nwDecIVFwdIfCtrOperationalTime,
on the router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 8 }
nwDecIVFwdIfCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded (dropped), during nwDecIVFwdIfCtrOperationalTime,
on the router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 9 }
nwDecIVFwdIfCtrAddrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded because of addressing errors in the DECnet header,
during nwDecIVFwdIfCtrOperationalTime, on the router port for
which the entry exists."
::= { nwDecIVFwdIfCtrEntry 10 }
nwDecIVFwdIfCtrLenErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded because an invalid packet length was contained in the
DECnet header, during nwDecIVFwdIfCtrOperationalTime, on the router
port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 11 }
nwDecIVFwdIfCtrHdrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded because of an invalid DECnet header, during
nwDecIVFwdIfCtrOperationalTime, on the router port for which the
entry exists."
::= { nwDecIVFwdIfCtrEntry 12 }
nwDecIVFwdIfCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been received, during nwDecIVFwdIfCtrOperationalTime, on the
router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 13 }
nwDecIVFwdIfCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that have
been transmitted, during nwDecIVFwdIfCtrOperationalTime, on the router
port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 14 }
nwDecIVFwdIfCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been forwarded, during nwDecIVFwdIfCtrOperationalTime, on the
router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 15 }
nwDecIVFwdIfCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been administratively filtered, during
nwDecIVFwdIfCtrOperationalTime, on the router port for which the
entry exists."
::= { nwDecIVFwdIfCtrEntry 16 }
nwDecIVFwdIfCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been discarded, during nwDecIVFwdIfCtrOperationalTime, on the
router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 17 }
nwDecIVFwdIfCtrHostInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
delivered to the local host, during nwDecIVFwdIfCtrOperationalTime,
that were received on the router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 18 }
nwDecIVFwdIfCtrHostOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
transmitted by the local host, during nwDecIVFwdIfCtrOperationalTime,
on the router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 19 }
nwDecIVFwdIfCtrHostDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet packets that have been
discarded by the local host, during nwDecIVFwdIfCtrOperationalTime,
that were received on the router port for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 20 }
nwDecIVFwdIfCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been delivered to the local host, during
nwDecIVFwdIfCtrOperationalTime, that were received on the router port
for which the entry exists."
::= { nwDecIVFwdIfCtrEntry 21 }
nwDecIVFwdIfCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been transmitted by the local host, during
nwDecIVFwdIfCtrOperationalTime, on the router port for which the
entry exists."
::= { nwDecIVFwdIfCtrEntry 22 }
nwDecIVFwdIfCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that
have been discarded by the local host, due to a lack of host
resources, that were received on the router port for which the entry
exists, during nwDecIVFwdIfCtrOperationalTime."
::= { nwDecIVFwdIfCtrEntry 23 }
-- DistanceVector-based Protocols
-- This group contains the managed objects for DEC IV Routing Protocol, DEC IV
-- DistanceVector based routing.
-- DEC IV Proto System Configuration Parameters
-- This group contains the objects that pertain to the setup and
-- configuration of the DEC IV Proto DistanceVector based routing protocol.
nwDecIVProtoAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- shutdown the router
enabled(3) -- startup the router
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the DECnet Phase IV
distance-vector-based routing protocol system-wide. Enabled (3)
causes the routing protocol to become active on all router ports
configured and enabled for DECnet Routing Services. Disabled (2)
causes the routing protocol to become inactive."
DEFVAL { enabled }
::= { nwDecIVProtoConfig 1 }
nwDecIVProtoOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not running
enabled(3), -- running
pending-disable(4), -- shut-down in progress
pending-enable(5), -- start-up in progress
invalid-config(6) -- not running-invalid config
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of the DECnet Phase
IV distance-vector-based routing protocol system-wide. The value
of nwDecIVProtoOperStatus indicates any problem with the DECnet
Phase IV distance-vector-based routing protocol configuration.
A value of 6 indicates that regardless of the value of
nwDecIVProtoAdminStatus, the DECnet Phase IV distance-vector-based
routing protocol is not operating because of an invalid configuration."
::= { nwDecIVProtoConfig 2 }
nwDecIVProtoAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the DECnet Phase IV distance-vector-based routing
protocol. Reset (2) forces a system-wide restart of the protocol
without a graceful shut-down on any active router ports."
DEFVAL { other }
::= { nwDecIVProtoConfig 3 }
nwDecIVProtoOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwDecIVProtoOperStatus has been in current state."
::= { nwDecIVProtoConfig 4 }
nwDecIVProtoVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the DECnet Phase IV
distance-vector-based routing protocol firmware, in textual format."
::= { nwDecIVProtoConfig 5 }
nwDecIVProtoStackSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the stack size of the DECnet Phase IV distance-vector-
based routing protocol thread. In order for a change of this value
to take effect, the protocol (nwDecIVProtoAdminReset), DECnet
Phase IV Routing Services (nwDecIVSysAdminReset), or the device
running Routing Services must be reset."
DEFVAL { 4096 }
::= { nwDecIVProtoConfig 6 }
nwDecIVProtoThreadPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the run-time execution priority of the DECnet Phase IV
distance-vector-based routing protocol thread. In order for a change
of this value to take effect, the protocol (nwDecIVProtoAdminReset),
DECnet Phase IV Routing Services (nwDecIVSysAdminReset), or the
device running Routing Services must be reset."
DEFVAL { 127 }
::= { nwDecIVProtoConfig 7 }
nwDecIVProtoDatabaseThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific
MIBs. Setting this object has no effect."
DEFVAL { 2000 }
::= { nwDecIVProtoConfig 8 }
nwDecIVProtoAgeOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific
MIBs. Setting this object has no effect."
DEFVAL { 180 }
::= { nwDecIVProtoConfig 9 }
nwDecIVProtoHoldDown OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific
MIBs. Setting this object has no effect. "
DEFVAL { 120 }
::= { nwDecIVProtoConfig 10 }
-- DEC IV Routing Protocol System (aggregate) Counters
-- This group contains the aggregate (device-wide) DEC IV Routing Protocol
-- packet and byte counters.
nwDecIVProtoCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- counters off
enabled(3) -- counters on
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the aggregate (system-wide) DECnet
Phase IV distance-vector-based routing protocol packet and byte
counters. Enabled (3) causes these counters to become active.
Disabled (2) causes these counters to become inactive."
DEFVAL { enabled }
::= { nwDecIVProtoCounters 1 }
nwDecIVProtoCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the aggregate (system-wide) DECnet Phase IV
distance-vector-based routing protocol packet and byte counters.
Reset (2) resets the DECnet aggregate counters to 0.
nwDecIVProtoCtrOperationalTime is also reset to 0."
DEFVAL { other }
::= { nwDecIVProtoCounters 2 }
nwDecIVProtoCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwDecIVProtoCtrAdminStatus has been in it's current state."
::= { nwDecIVProtoCounters 3 }
nwDecIVProtoCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been received, system-wide,
during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 4 }
nwDecIVProtoCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been transmitted, system-wide,
during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 5 }
nwDecIVProtoCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been administratively filtered,
system-wide, during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 6 }
nwDecIVProtoCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of the DECnet Phase IV distance-vector
-based routing protocol packets that have been discarded,
system-wide, during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 7 }
nwDecIVProtoCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vector based routing protocol packets that have been
received, system-wide, during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 8 }
nwDecIVProtoCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vectorbased routing protocol packets that have been
transmitted, system-wide, during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 9 }
nwDecIVProtoCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vectorbased routing protocol packets that have been
administratively filtered, system-wide, during
nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 10 }
nwDecIVProtoCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vectorbased routing protocol packets that have been
discarded system-wide, during nwDecIVProtoCtrOperationalTime."
::= { nwDecIVProtoCounters 11 }
-- DecIV Protocol Interface Table
nwDecIVProtoIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVProtoIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port. Each entry can
contain different values, allowing the routing protocol configuration
to vary from router port to router port. This table is indexed by
nwDecIVProtoIfIndex, which indicates the value of MIB 2 ifIndex,
which identifies the router port for which each entry exists."
::= { nwDecIVProtoIfConfig 1 }
nwDecIVProtoIfEntry OBJECT-TYPE
SYNTAX NwDecIVProtoIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the DECnet Phase IV distance-vector-based
routing protocol configuration for the router port for which the
entry exists."
INDEX { nwDecIVProtoIfIndex }
::= { nwDecIVProtoIfTable 1 }
NwDecIVProtoIfEntry ::=
SEQUENCE {
nwDecIVProtoIfIndex INTEGER,
nwDecIVProtoIfAdminStatus INTEGER,
nwDecIVProtoIfOperStatus INTEGER,
nwDecIVProtoIfOperationalTime TimeTicks,
nwDecIVProtoIfVersion INTEGER,
nwDecIVProtoIfAdvertisement INTEGER,
nwDecIVProtoIfFloodDelay INTEGER,
nwDecIVProtoIfRequestDelay INTEGER,
nwDecIVProtoIfPriority INTEGER,
nwDecIVProtoIfHelloTimer INTEGER,
nwDecIVProtoIfSplitHorizon INTEGER,
nwDecIVProtoIfPoisonReverse INTEGER,
nwDecIVProtoIfSnooping INTEGER,
nwDecIVProtoIfType INTEGER,
nwDecIVProtoIfXmitCost INTEGER,
nwDecIVProtoIfAclIdentifier INTEGER,
nwDecIVProtoIfAclStatus INTEGER
}
nwDecIVProtoIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifindex, which identifies the router
port for which the entry exists."
::= { nwDecIVProtoIfEntry 1 }
nwDecIVProtoIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the DECnet Phase IV
distance-vector-based routing protocol on the router port for which
the entry exists. Enabled (3) causes the routing protocol to become
active on the router port. Disabled (2) causes it to become inactive."
DEFVAL { enabled }
::= { nwDecIVProtoIfEntry 2 }
nwDecIVProtoIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- not running
enabled(3), -- running
pending-disable(4), -- shut-down in progress
pending-enable(5) -- start-up in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of the DECnet Phase IV
distance-vector-based routing protocol on the router port for which
the entry exists. The value of nwDecIVProtoIfOperStatus indicates
any problem with your routing protocol configuration on the router
port. A value of 6 indicates that regardless of the value of
nwDecIVProtoIfAdminStatus, the routing protocol is not operating
because of an invalid configuration."
::= { nwDecIVProtoIfEntry 3 }
nwDecIVProtoIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwDecIVProtoIfOperStatus has been in it`s current state."
::= { nwDecIVProtoIfEntry 4 }
nwDecIVProtoIfVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the revision level of the DECnet Phase IV
distance-vector-based routing protocol firmware on the router port
for which the entry exists, in textual format."
DEFVAL { 3 }
::= { nwDecIVProtoIfEntry 5 }
nwDecIVProtoIfAdvertisement OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the interval, in seconds, at which the DECnet Phase IV
distance-vectorbased routing protocol advertises its route table on
the router port for which the entry exists. Change this value to
cause the DECnet Phase IV distance-vector-based routing protocol to
advertise its route table more or less frequently on the router port."
DEFVAL { 40 }
::= { nwDecIVProtoIfEntry 6 }
nwDecIVProtoIfFloodDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific MIBs.
Setting this object has no effect."
DEFVAL { 2 }
::= { nwDecIVProtoIfEntry 7 }
nwDecIVProtoIfRequestDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific MIBs.
Setting this object has no effect."
DEFVAL { 0 }
::= { nwDecIVProtoIfEntry 8 }
nwDecIVProtoIfPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the priority of the DECnet Phase IV distance-vector-based
routing protocol on the router port for which the entry exists.
Within an area, the router with the highest value for
nwDecIVProtoIfPriority becomes the priority or designated router.
The highest possible value for nwDecIVProtocolIfPriority is 127. Set
this value high to cause your DECnet Phase IV Routing Services-enabled
device to become the designated router. Set this value low to guarantee
that it does not become the designated router."
DEFVAL { 64 }
::= { nwDecIVProtoIfEntry 9 }
nwDecIVProtoIfHelloTimer OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the interval, in seconds, at which DECnet Phase IV
distance-vector-based routing protocol sends Hello packets on the
router port for which the entry exists."
DEFVAL { 15 }
::= { nwDecIVProtoIfEntry 10 }
nwDecIVProtoIfSplitHorizon OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- Split Horizon off
enabled(3) -- Split Horizon on
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific MIBs.
Setting this object has no effect."
DEFVAL { enabled }
::= { nwDecIVProtoIfEntry 11 }
nwDecIVProtoIfPoisonReverse OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common object
inherited from the MIB framework used to provide a common management
interface to all the Cabletron Routing Services protocol-specific MIBs.
Setting this object has no effect."
DEFVAL { disabled }
::= { nwDecIVProtoIfEntry 12 }
nwDecIVProtoIfSnooping OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- Snooping off
enabled(3) -- Snooping on
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of DECnet Phase IV distance-vector-based
routing protocol snooping on the router port. When snooping is
enabled the DECnet Phase IV distance-vector-based routing protocol
operates in passive mode, so that it receives route information,
builds and maintains a route table, but does not advertise the route
table or send updates on the router port for which the entry exists."
DEFVAL { disabled }
::= { nwDecIVProtoIfEntry 13 }
nwDecIVProtoIfType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
bma(2), -- broadcast media access
nbma(3) -- non-broadcast media access
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether the directly connected network segment does or
does not support broadcast media access."
DEFVAL { bma }
::= { nwDecIVProtoIfEntry 14 }
nwDecIVProtoIfXmitCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the cost of transmitting a packet on the network segment
connected to the router port for which the entry exists. The DECnet
Phase IV distance-vector-based routing protocol picks the route with
the least total nwDecIVProtoIfXmitCost as the best route. If
nwDecIVProtocolIfXmitCost, also known as path cost, is the same for
all possible routes , the best route chosen is the route with the
least number of hops is chosen as the best route."
DEFVAL { 1 }
::= { nwDecIVProtoIfEntry 15 }
nwDecIVProtoIfAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Access Control ID of the access control list in
effect for DECnet Phase IV distance-vector-based routing protocol
packets on the router port for which the entry exists. A value of 0
indicates that there is no access control list in effect for DECnet
Phase IV distance-vector-based routing protocol packets on the router
port."
DEFVAL { 0 }
::= { nwDecIVProtoIfEntry 16 }
nwDecIVProtoIfAclStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- do not apply nwDecIVProtoIfAcl
enabled(3) -- apply nwDecIVProtoIfAcl
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of the access control list identified by
nwDecIVProtoIfAclIdentifier. Enabled (3) applies the access control
list to all DECnet Phase IV distance-vector-based routing protocol
packet traffic on the router port for which the entry exists. Disabled
(2) prevents the access control list from being applied."
DEFVAL { disabled }
::= { nwDecIVProtoIfEntry 17 }
-- Dec IV Protocol Interface Counters Table
-- This table contains the managed objects for DEC IV protocols packet and
-- byte counter on a per router port basis.
nwDecIVProtoIfCtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVProtoIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port. This table is
indexed by nwDecIVProtoIfCtrIfIndex which indicates the value of
MIB2 ifindex, which identifies the router port for which the entry
exists."
::= { nwDecIVProtoIfCounters 1 }
nwDecIVProtoIfCtrEntry OBJECT-TYPE
SYNTAX NwDecIVProtoIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry indicates the current packet and byte count of DECnet
Phase IV distance-vector-based routing protocol packets on the router
port for which the entry exists."
INDEX { nwDecIVProtoIfCtrIfIndex }
::= { nwDecIVProtoIfCtrTable 1 }
NwDecIVProtoIfCtrEntry ::=
SEQUENCE {
nwDecIVProtoIfCtrIfIndex INTEGER,
nwDecIVProtoIfCtrAdminStatus INTEGER,
nwDecIVProtoIfCtrReset INTEGER,
nwDecIVProtoIfCtrOperationalTime TimeTicks,
nwDecIVProtoIfCtrInPkts Counter,
nwDecIVProtoIfCtrOutPkts Counter,
nwDecIVProtoIfCtrFilteredPkts Counter,
nwDecIVProtoIfCtrDiscardPkts Counter,
nwDecIVProtoIfCtrInBytes Counter,
nwDecIVProtoIfCtrOutBytes Counter,
nwDecIVProtoIfCtrFilteredBytes Counter,
nwDecIVProtoIfCtrDiscardBytes Counter
}
nwDecIVProtoIfCtrIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifindex, which identifies the router
port for which the entry exists."
::= { nwDecIVProtoIfCtrEntry 1 }
nwDecIVProtoIfCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the per-port DECnet Phase IV
distance-vectorbased routing protocol packet and byte counters on
the router port for which the entry exists. Enabled (3) causes these
counters to become active. Disabled (2) causes these counters to
become inactive."
DEFVAL { enabled }
::= { nwDecIVProtoIfCtrEntry 2 }
nwDecIVProtoIfCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the per-port DECnet Phase IV distance-vector-based routing
protocol packet and byte counters on the router port for which the
entry exists. Reset (2) resets the counters to 0.
nwDecIVProtoIfCtrOperationalTime is also reset to 0."
DEFVAL { other }
::= { nwDecIVProtoIfCtrEntry 3 }
nwDecIVProtoIfCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwDecIVProtoIfCtrAdminStatus has been in the current state."
::= { nwDecIVProtoIfCtrEntry 4 }
nwDecIVProtoIfCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been received, during
nwDecIVProtoIfCtrOperationalTime, on the router port for which the
entry exists."
::= { nwDecIVProtoIfCtrEntry 5 }
nwDecIVProtoIfCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been transmitted, during
nwDecIVProtoIfCtrOperationalTime, on the router port for which the
entry exists."
::= { nwDecIVProtoIfCtrEntry 6 }
nwDecIVProtoIfCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been administratively filtered,
during nwDecIVProtoIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwDecIVProtoIfCtrEntry 7 }
nwDecIVProtoIfCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of DECnet Phase IV distance-vector-based
routing protocol packets that have been discarded, during
nwDecIVProtoIfCtrOperationalTime, that were received on the router
port for which the entry exist."
::= { nwDecIVProtoIfCtrEntry 8 }
nwDecIVProtoIfCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vector-based routing protocol packets that have been
received, during nwDecIVProtoIfCtrOperationalTime, on the router
port for which the entry exists."
::= { nwDecIVProtoIfCtrEntry 9 }
nwDecIVProtoIfCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vector-based routing protocol packets that have been
transmitted, during nwDecIVProtoIfCtrOperationalTime, on the router
port for which the entry exists."
::= { nwDecIVProtoIfCtrEntry 10 }
nwDecIVProtoIfCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet Phase IV
distance-vector-based routing protocol packets that have been
administratively filtered, during nwDecIVProtoIfCtrOperationalTime,
that were received on the router port for which the entry exists."
::= { nwDecIVProtoIfCtrEntry 11 }
nwDecIVProtoIfCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the DECnet packets that have
been discarded, during nwDecIVProtoIfCtrOperationalTime, that were
received on the router port for which the entry exists."
::= { nwDecIVProtoIfCtrEntry 12 }
-- DECnet Phase IV Forward Information Base (FIB) Table
-- This table contains the managed objects for the forwarding table of the
-- DECnet Phase IV router. This table is built from entries in the DECnet
-- Phase IV routing table(s) and reflects the routes that are considered
-- the best routes to forward on.
nwDecIVFibTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVFibEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each route being used to forward
DECnet data packets.."
::= { nwDecIVFib 1 }
nwDecIVFibEntry OBJECT-TYPE
SYNTAX NwDecIVFibEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in the table describes a route to a particular DECnet
destination network and node."
INDEX { nwDecIVFibNodeId }
::= { nwDecIVFibTable 1 }
NwDecIVFibEntry ::=
SEQUENCE {
nwDecIVFibNodeId DecIVAddress,
nwDecIVFibNextHopNodeId DecIVAddress,
nwDecIVFibNextHopIf INTEGER,
nwDecIVFibRouteType INTEGER
}
nwDecIVFibNodeId OBJECT-TYPE
SYNTAX DecIVAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the DECnet Address of the destination node of the route
for which the entry exists."
::= { nwDecIVFibEntry 1 }
nwDecIVFibNextHopNodeId OBJECT-TYPE
SYNTAX DecIVAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Contains the DECnet Address of the next hop router for the route
for which the entry exists."
::= { nwDecIVFibEntry 2 }
nwDecIVFibNextHopIf OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifindex, which identifies the router
port through which the route exists."
DEFVAL { 0 }
::= { nwDecIVFibEntry 3 }
nwDecIVFibRouteType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
invalid(2), -- not a valid route
direct(3), -- destination is on a direct conn. seg.
remote(4) -- destination is avail. through the next hop router.
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the status of the route. A value of 3 indicates that the
destination is on the network segment that is directly connected to
the router port identified by nwDecIVFibNextHopIf. A value of 4
indicates that the destination is on an indirectly connected network
segment, which is reachable through the next hop router indicated by
the value of nwDecIVFibNextHopNodeId. A value of 2 indicates that the
route is invalid."
DEFVAL { direct }
::= { nwDecIVFibEntry 4 }
-- DECnet Phase IV Access Control List Table
-- This table contains the managed objects for the Access Control Lists
-- within the DECnet Phase IV Router. Access Control Lists allow configuration of
-- restricted access to networks and protocols reachable thru the DecIV
-- Router device. Access Control Lists can be defined with these
nwDecIVAclValidEntries OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of valid entries that exist in the access
control list table, nwDecIVAclTable."
::= { nwDecIVAccessControl 1 }
nwDecIVAclTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVAclEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the access control list information for DECnet
traffic. This table contains entries each of which specifies whether
packet forwarding between a particular source destination pair is
permitted or denied. Each entry is part of a particular access
control list. Each list is identified by a unique Access Control ID.
Each list may contain multiple entries ordered by sequence number.
When an Access Control List is searched, it is searched in sequence
number order and the first match found ends the search. If no match
is found, access defaults to permitted."
::= { nwDecIVAccessControl 2 }
nwDecIVAclEntry OBJECT-TYPE
SYNTAX NwDecIVAclEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains DECnet source/destination access information."
INDEX { nwDecIVAclIdentifier, nwDecIVAclSequence }
::= { nwDecIVAclTable 1 }
NwDecIVAclEntry ::=
SEQUENCE {
nwDecIVAclIdentifier INTEGER,
nwDecIVAclSequence INTEGER,
nwDecIVAclPermission INTEGER,
nwDecIVAclMatches Counter,
nwDecIVAclDestAddress DecIVAddress,
nwDecIVAclSrcAddress DecIVAddress
}
nwDecIVAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the primary (major) index into the DECnet access control
list table. This value identifies each access control list by a
unique identifier, a number arbitrarily assigned by the user. All
entries that have the same value for nwDecIVAclIdentifier belong to
the same access control list."
::= { nwDecIVAclEntry 1 }
nwDecIVAclSequence OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the secondary (minor) index into the DECnet access control
list table. This number corresponds to a sequence number used to
order multiple entries within the same access control list."
::= { nwDecIVAclEntry 2 }
nwDecIVAclPermission OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
permit(3),
deny(4),
permit-bidirectional(5),
deny-bidirectional(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether access is allowed or denied between the source
and destination address pair. Note that source and destination are
interchangeable when bi-directional control is selected. To remove
an existing entry set nwDecIVAclPermission to invalid (2). Invalid
entries disappear after reboot."
DEFVAL { permit }
::= { nwDecIVAclEntry 3 }
nwDecIVAclMatches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of matches on this entry that have resulted
in the permit/deny access restriction being applied as part of the
forwarding process."
::= { nwDecIVAclEntry 4 }
nwDecIVAclDestAddress OBJECT-TYPE
SYNTAX DecIVAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the destination DECnet Address used to compare for
matches on the access control list. Either the Area ID or Node ID
of this address may be set to 0, a wildcard value which matches all
areas or all nodes."
::= { nwDecIVAclEntry 5 }
nwDecIVAclSrcAddress OBJECT-TYPE
SYNTAX DecIVAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the source DECnet Address used to compare for matches on
the access control list. Either the Area ID or Node ID of this
address may be set to a wildcard value which matches all areas or
all nodes."
::= { nwDecIVAclEntry 6 }
--
-- DecIV Hosts-to-Media Table
-- This table provides a mapping between DecIV Network Protocol
-- addresses and their corresponding circuit identifiers (if
-- applicable), port numbers, and framing.
nwDecIVHostMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVHostMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DecIV Address translation table used for mapping
a DecIV address to a circuit identifier (if applicable),
corresponding port number, and framing type."
::= { nwDecIVHostsToMedia 1 }
nwDecIVHostMapEntry OBJECT-TYPE
SYNTAX NwDecIVHostMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one DecIVAddress to circuit
equivalence. Also provided is the framing required to
converse with this host, and the corresponding logical
port number."
INDEX { nwDecIVHostMapIfIndex, nwDecIVHostMapDecIVAddr }
::= { nwDecIVHostMapTable 1 }
NwDecIVHostMapEntry ::=
SEQUENCE {
nwDecIVHostMapIfIndex INTEGER,
nwDecIVHostMapDecIVAddr DecIVAddress,
nwDecIVHostMapType INTEGER,
nwDecIVHostMapCircuitID INTEGER,
nwDecIVHostMapFraming INTEGER,
nwDecIVHostMapPortNumber INTEGER
}
nwDecIVHostMapIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the primary (major) index into the DecIV HostMap
table. This number corresponds to the index into the MIB-2
Interfaces Group which describes the DecIV router port for which
the entry exists."
::= { nwDecIVHostMapEntry 1 }
nwDecIVHostMapDecIVAddr OBJECT-TYPE
SYNTAX DecIVAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The DecIVAddress of the host on the corresponding interface
and circuit (if applicable)."
::= { nwDecIVHostMapEntry 2 }
nwDecIVHostMapType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
invalid(2),
dynamic(3),
static(4),
inactive(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this object to the value invalid(2) has
the effect of invalidating the corresponding entry in the
nwDecIVHostMapTable. That is, it effectively dissasociates
the circuitand/or interface identified with said entry from the
mapping identified with said entry. It is an implementation-
specific matter as to whether the agent removes an invalidated
entry from the table. Accordingly, management stations must be
prepared to receive tabular information from agents that
corresponds to entries not currently in use. Proper inter-
pretation of such entries requires examination of the relevant
wDecIVHostMapType object."
::= { nwDecIVHostMapEntry 3 }
nwDecIVHostMapCircuitID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The identifier for the virtual circuit present on the
interface. On an interface configured for Frame Relay,
this number is the DLCI for the DecIV Address at the end of
the circuit. For non-WAN interfaces, the value of this
object is zero."
::= { nwDecIVHostMapEntry 4 }
nwDecIVHostMapFraming OBJECT-TYPE
SYNTAX INTEGER { -- valid media types
other(1), -- experimental
ethernet(2), -- ethernet
snap(3), -- ethernet, fddi, and token ring
nativewan(8), -- wan media types
encapenet(9), -- wan media types
encapenetsnap(11), -- wan media types
encaptrsnap(14), -- wan media types
encapfddisnap(16), -- wan media types
canonical(17) -- special media, tbd
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the framing type required to converse with the
host for which this entry exists."
::= { nwDecIVHostMapEntry 5 }
nwDecIVHostMapPortNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique value for the logical port number. It's value
ranges between 1 and a maximum value which is dependent on both
the number of configured interfaces in the system and the number
of circuits present on those interfaces which are of WAN type."
::= { nwDecIVHostMapEntry 6 }
-- DECnet Event Group
nwDecIVEventAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1) ,
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of DECnet event logging. Enabled (3)
causes the event log to become active. Disabled (2) causes the event
log to become inactive."
DEFVAL { disabled }
::= { nwDecIVEventLogConfig 1 }
nwDecIVEventMaxEntries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the maximum number of entries allowed in the event log table.
When the number of entries reaches the value of nwDecIVEventMaxEntries,
the first (oldest) entry is deleted to allow a new entry to be added."
DEFVAL { 100 }
::= { nwDecIVEventLogConfig 2 }
nwDecIVEventTraceAll OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enabled (3) allows logging of all event types on all router ports
for all protocols and components. Disabled (2) causes the filter
table to specify which events to log."
DEFVAL { enabled }
::= { nwDecIVEventLogConfig 3 }
-- Event Log Filter Table
-- The Event Log Filter Table contains the managed objects used to set-up
-- and configure log entries.
nwDecIVEventFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVEventFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains and entry for each event filter configured for
DECnet Phase IV Routing Services events."
::= { nwDecIVEventLogFilterTable 1 }
nwDecIVEventFilterEntry OBJECT-TYPE
SYNTAX NwDecIVEventFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry describes an event filter which defines a particular type
of event to be logged to the event log. The value of
nwDecIVEventFltrProtocol indicates the value used either in the
nwRtgProtocolTable or the nwComponentTable in the Cabletron Routing
Services MIB, which identifies the protocol or component to which the
entry applies."
INDEX { nwDecIVEventFltrProtocol, nwDecIVEventFltrIfNum }
::= { nwDecIVEventFilterTable 1 }
NwDecIVEventFilterEntry ::=
SEQUENCE {
nwDecIVEventFltrProtocol INTEGER,
nwDecIVEventFltrIfNum INTEGER,
nwDecIVEventFltrControl INTEGER,
nwDecIVEventFltrType INTEGER,
nwDecIVEventFltrSeverity INTEGER,
nwDecIVEventFltrAction INTEGER
}
nwDecIVEventFltrProtocol OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of the Cabletron Routing Services MIB
nwRtgProtocolInstance or nwComponentRtgInstance which identifies the
protocol involved in the event for which the event filter exists."
::= { nwDecIVEventFilterEntry 1 }
nwDecIVEventFltrIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the router port involved in the event for which the event
filter exists."
::= { nwDecIVEventFilterEntry 2 }
nwDecIVEventFltrControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2),
add(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set this value to 3 to add the entry to the event filter table. Set
this value to 2 to remove the entry from the event filter table."
DEFVAL { add }
::= { nwDecIVEventFilterEntry 3 }
nwDecIVEventFltrType OBJECT-TYPE
SYNTAX INTEGER {
misc(1),
timer(2),
rcv(4),
xmit(8),
event(16),
diags(32),
error(64)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This 6 bit mask specifies the types of events to be logged. By
default all 6 bits are set to 1, indicating that all types of events
are to be logged. Setting any bit to 0 removes an event type from
this field and prevents that type of event from being logged. Setting
any bit to 1 adds an event type to this field and enables that type
of event to be logged."
::= { nwDecIVEventFilterEntry 4 }
nwDecIVEventFltrSeverity OBJECT-TYPE
SYNTAX INTEGER {
highest(1),
highmed(2),
highlow(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the level of severity an event must meet in order to be
logged. Controls the amount of event logging by ignoring events of a
lower priority than specified by this filter value. `Highmed' ignores
only events of the lowest severity. `Highlow' logs all events highest
priority through lowest. `Highest' severity causes all events except
those of the highest severity to be ignored. `Highmed' severity is the
default setting which causes only events of the lowest severity to be
ignored. `Highlow' severity logs all events, regardless of severity."
DEFVAL { highest }
::= { nwDecIVEventFilterEntry 5 }
nwDecIVEventFltrAction OBJECT-TYPE
SYNTAX INTEGER {
log(1),
trap(2),
log-trap(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies how the events are to be logged. Logging to the `log'
stores the events in the event log table (nwDecIVEventLogTable).
Logging to'trap' sends events out through the trap mechanism."
DEFVAL { log }
::= { nwDecIVEventFilterEntry 6 }
-- Event Log Table
-- The Event Log Table contains the logged events.
nwDecIVEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwDecIVEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each event that has been
logged."
::= { nwDecIVEventLogTable 1 }
nwDecIVEventEntry OBJECT-TYPE
SYNTAX NwDecIVEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the information about an event that has
been logged to the event table."
INDEX { nwDecIVEventNumber }
::= { nwDecIVEventTable 1 }
NwDecIVEventEntry ::=
SEQUENCE {
nwDecIVEventNumber INTEGER,
nwDecIVEventTime TimeTicks,
nwDecIVEventType INTEGER,
nwDecIVEventSeverity INTEGER,
nwDecIVEventProtocol INTEGER,
nwDecIVEventIfNum INTEGER,
nwDecIVEventTextString OCTET STRING
}
nwDecIVEventNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An ordinal value assigned to the event for which the log entry
exists. nwDecIVEventNumber is assigned so that each event in the
event log can be uniquely identified by the value of
nwDecIVEventNumber."
::= { nwDecIVEventEntry 1 }
nwDecIVEventTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the time at which the event was logged to the event
log."
::= { nwDecIVEventEntry 2 }
nwDecIVEventType OBJECT-TYPE
SYNTAX INTEGER {
misc(1),
timer(2),
rcv(4),
xmit(8),
event(16),
error(32)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the type of event that was logged."
::= { nwDecIVEventEntry 3 }
nwDecIVEventSeverity OBJECT-TYPE
SYNTAX INTEGER {
highest(1),
highmed(2),
highlow(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the severity that was assigned to the event."
::= { nwDecIVEventEntry 4 }
nwDecIVEventProtocol OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of the Cabletron Routing Services MIB
nwRtgProtocolInstance or nwComponentInstance which identifies the
protocol or component that was involved in the event."
::= { nwDecIVEventEntry 5 }
nwDecIVEventIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the router port that was involved in the event."
::= { nwDecIVEventEntry 6 }
nwDecIVEventTextString OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the actual text string that was logged."
::= { nwDecIVEventEntry 7 }
END
|