1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
|
CTRON-AppleTalk-ROUTER-MIB DEFINITIONS ::= BEGIN
-- ctron-appletalk-router-mib.txt
-- Revision: 1.01.00
-- Part Number:
-- 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 at 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, PhysAddress
FROM RFC1213-MIB
nwRouter, nwRtrProtoSuites
FROM ROUTER-OIDS
Counter, TimeTicks, Gauge
FROM RFC1155-SMI;
nwRtrExperimental OBJECT IDENTIFIER ::= { nwRouter 4 }
-- The At Router Group.
nwAtRouter OBJECT IDENTIFIER ::= { nwRtrProtoSuites 4 }
nwAtMibs OBJECT IDENTIFIER ::= { nwAtRouter 1 }
nwAtComponents OBJECT IDENTIFIER ::= { nwAtRouter 2 }
-- At Router Component Groups
nwAtSystem OBJECT IDENTIFIER ::= { nwAtComponents 1 }
nwAtForwarding OBJECT IDENTIFIER ::= { nwAtComponents 2 }
nwAtTopology OBJECT IDENTIFIER ::= { nwAtComponents 4 }
nwAtFib OBJECT IDENTIFIER ::= { nwAtComponents 5 }
nwAtEndSystems OBJECT IDENTIFIER ::= { nwAtComponents 6 }
nwAtAccessControl OBJECT IDENTIFIER ::= { nwAtComponents 7 }
nwAtFilters OBJECT IDENTIFIER ::= { nwAtComponents 8 }
nwAtRedirector OBJECT IDENTIFIER ::= { nwAtComponents 9 }
nwAtEvent OBJECT IDENTIFIER ::= { nwAtComponents 10 }
nwAtWorkGroup OBJECT IDENTIFIER ::= { nwAtComponents 11 }
nwAtNetDiag OBJECT IDENTIFIER ::= { nwAtComponents 12 }
-- At Router System Groups
nwAtSysConfig OBJECT IDENTIFIER ::= { nwAtSystem 1 }
nwAtSysAdministration OBJECT IDENTIFIER ::= { nwAtSystem 2 }
-- At Router Forwarding Groups
nwAtFwdSystem OBJECT IDENTIFIER ::= { nwAtForwarding 1 }
nwAtFwdInterfaces OBJECT IDENTIFIER ::= { nwAtForwarding 2 }
nwAtFwdCounters OBJECT IDENTIFIER ::= { nwAtFwdSystem 1 }
nwAtFwdIfConfig OBJECT IDENTIFIER ::= { nwAtFwdInterfaces 1 }
nwAtFwdIfCounters OBJECT IDENTIFIER ::= { nwAtFwdInterfaces 2 }
-- At Router Routing Groups
nwAtDistanceVector OBJECT IDENTIFIER ::= { nwAtTopology 1 }
nwAtLinkState OBJECT IDENTIFIER ::= { nwAtTopology 2 }
nwAtProto OBJECT IDENTIFIER ::= { nwAtDistanceVector 1 }
nwAtProtoSystem OBJECT IDENTIFIER ::= { nwAtProto 1 }
nwAtProtoInterface OBJECT IDENTIFIER ::= { nwAtProto 2 }
nwAtProtoConfig OBJECT IDENTIFIER ::= { nwAtProtoSystem 1 }
nwAtProtoCounters OBJECT IDENTIFIER ::= { nwAtProtoSystem 2 }
nwAtProtoIfConfig OBJECT IDENTIFIER ::= { nwAtProtoInterface 1 }
nwAtProtoIfCounters OBJECT IDENTIFIER ::= { nwAtProtoInterface 2 }
-- At Router Host End Systems Groups
nwAtHostsSystem OBJECT IDENTIFIER ::= { nwAtEndSystems 1 }
nwAtHostsInterfaces OBJECT IDENTIFIER ::= { nwAtEndSystems 2 }
nwAtHostsToMedia OBJECT IDENTIFIER ::= { nwAtEndSystems 3 }
-- At Router Access Control Group
-- At Router Filters Group
-- At Router Redirector Group
-- At Router Event Log Group
nwAtEventLogConfig OBJECT IDENTIFIER ::= { nwAtEvent 1 }
nwAtEventLogFilterTable OBJECT IDENTIFIER ::= { nwAtEvent 2 }
nwAtEventLogTable OBJECT IDENTIFIER ::= { nwAtEvent 3 }
-- At Router Work-Group Group
-- AT Network Diagnostic Group
nwAtNetDiagPing OBJECT IDENTIFIER ::= { nwAtNetDiag 1 }
nwAtNetDiagTelnet OBJECT IDENTIFIER ::= { nwAtNetDiag 2 }
nwAtNetDiagOutbound OBJECT IDENTIFIER ::= { nwAtNetDiag 3 }
AtNetworkNumber ::=
-- 2 octets of network number in network byte order
OCTET STRING (SIZE (2))
AtDdpNodeAddress ::=
-- 2 octets of net number in network byte order,
-- 1 octet of node number
OCTET STRING (SIZE (3))
AtName ::=
-- 0 to 32 octets of
-- AppleTalk ASCII [10]
OCTET STRING (SIZE (0..32))
-- At 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.
nwAtMibRevText OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the Cabletron at
Routing Services MIB in textual format."
::= { nwAtMibs 1 }
-- At Router System Group
-- This group contains the objects that pertain to the at routing
-- services at a global, device-wide level.
-- At System Configuration Group
-- This group contains the objects that pertain to the setup and
-- configuration of the At routing services at a global,
-- device-wide level.
nwAtSysRouterId OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk node address used to uniquely identify the
host (device) running the AppleTalk Routing Services. The
value of nwAtSysRouterId is equal to the highest AppleTalk
node address assigned to any router port."
::= { nwAtSysConfig 1 }
-- At System Administration Group
-- This group contains the objects that pertain to the administration of
-- At routing services at a global, device-wide level.
nwAtSysAdminSTATUS 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 AppleTalk Routing
Services system wide. Enabled (3) causes AppleTalk Routing
Services to become active on all router ports configured
and enabled for AppleTalk Routing Services. Disabled (2)
causes AppleTalk Routing Services to become inactive
system-wide."
::= { nwAtSysAdministration 1 }
nwAtSysOperSTATUS 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 operating condition of AppleTalk Routing
Services system- wide. The value of nwAtSysOperStatus
indicates any problem with your AppleTalk Routing Services
configuration. A value of 6 indicates that regardless of
the value of nwAtSysAdminStatus, AppleTalk Routing
Services is not operating because of an invalid
configuration."
::= { nwAtSysAdministration 2 }
nwAtSysAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets AppleTalk Routing Services system-wide. Reset (2)
forces a restart of AppleTalk Routing Services without a
graceful shutdown on any active router ports and without
affecting any other routing services."
::= { nwAtSysAdministration 3 }
nwAtSysOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtSysOperStatus has been in its current state."
::= { nwAtSysAdministration 4 }
nwAtSysVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the AppleTalk
Routing Services firmware, in textual format."
::= { nwAtSysAdministration 5 }
-- at Forwarding Group
-- This group contains the managed objects used to setup and configure
-- the at router ports for packet forwarding as well as the aggregate
-- and per-interface at packet forwarding counters.
-- at System-wide Packet Forwarding Counters
-- This group contains the aggregate (device-wide) at packet forwarding
-- counters. The byte counters include bytes for the network layer on
-- up, framing is not included.
nwAtFwdCtrAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the aggregate
(system-wide) AppleTalk packet and byte counters.
Enabled (3) causes these counters to become active.
Disabled (2) causes these counters to become inactive."
::= { nwAtFwdCounters 1 }
nwAtFwdCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reset(2) resets the aggregate (system-wide) AppleTalk
packet and byte counters. Reset (2) resets the AppleTalk
aggregate counters to 0.nwAtFwdCtrOperationalTime is also
reset to 0."
::= { nwAtFwdCounters 2 }
nwAtFwdCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtFwdCtrAdminStatus has been in the current state."
::= { nwAtFwdCounters 3 }
nwAtFwdCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been received, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 4 }
nwAtFwdCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been transmitted, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 5 }
nwAtFwdCtrFwdPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been forwarded, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 6 }
nwAtFwdCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been administratively filtered, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 7 }
nwAtFwdCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 8 }
nwAtFwdCtrAddrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, system-wide, during
nwAtFwdCtrOperationalTime because of addressing errors
in the AppleTalk header."
::= { nwAtFwdCounters 9 }
nwAtFwdCtrLenErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, system-wide, during
nwAtFwdCtrOperationalTime, because an invalid packet
length is contained in the AppleTalk header."
::= { nwAtFwdCounters 10 }
nwAtFwdCtrHdrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of at packets that have been
discarded, device-wide, during nwAtFwdCtrOperationalTime,
because of an invalid at header."
::= { nwAtFwdCounters 11 }
nwAtFwdCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been received, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 12 }
nwAtFwdCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been transmitted, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 13 }
nwAtFwdCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been forwarded, system-wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 14 }
nwAtFwdCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been administratively filtered,
system-wide, during nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 15 }
nwAtFwdCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been discarded, system wide, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 16 }
nwAtFwdCtrHostInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been successfully delivered to the local host,
during nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 17 }
nwAtFwdCtrHostOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been transmitted by the local host, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 18 }
nwAtFwdCtrHostDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded by the local host, during
nwAtFwdCtrOperationalTiime, due to a lack of host
resources."
::= { nwAtFwdCounters 19 }
nwAtFwdCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been received by the local host, during
nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 20 }
nwAtFwdCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been transmitted by the local host,
during nwAtFwdCtrOperationalTime."
::= { nwAtFwdCounters 21 }
nwAtFwdCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been discarded by the local host,
during nwAtFwdCtrOperationalTime, due to a lack of host
resources."
::= { nwAtFwdCounters 22 }
-- at Forwarding Interface Table
-- This table contains the managed objects used to set-up and configure
-- each router port.
nwAtFwdIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port.
This table is indexed by nwAtFwdIfIndex, which indicates
the value of MIB 2 ifindex, which identifies the router
port for which each entry exists."
::= { nwAtFwdIfConfig 1 }
nwAtFwdIfEntry OBJECT-TYPE
SYNTAX NwAtFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the AppeTalk Routing Services
configuration for the router port for which the entry
exists."
INDEX { nwAtFwdIfIndex }
::= { nwAtFwdIfTable 1 }
NwAtFwdIfEntry ::=
SEQUENCE {
nwAtFwdIfIndex INTEGER,
nwAtFwdIfAdminSTATUS INTEGER,
nwAtFwdIfOperSTATUS INTEGER,
nwAtFwdIfOperationalTime TimeTicks,
nwAtFwdIfControl INTEGER,
nwAtFwdIfMtu INTEGER,
nwAtFwdIfForwarding INTEGER,
nwAtFwdIfFrameType INTEGER,
nwAtFwdIfAclIdentifier INTEGER,
nwAtFwdIfAclSTATUS INTEGER,
nwAtFwdIfCacheControl INTEGER,
nwAtFwdIfCacheEntries Counter,
nwAtFwdIfCacheHits Counter,
nwAtFwdIfCacheMisses Counter
}
nwAtFwdIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of the MIB 2 ifIndex, which
identifies the router port for which the entry exists."
::= { nwAtFwdIfEntry 1 }
nwAtFwdIfAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of AppleTalk Routing
Services on the router port for which the entry exists.
Enabled (3) causes AppleTalk Routing Services to become
active. Disabled (2) causes it to become inactive."
::= { nwAtFwdIfEntry 2 }
nwAtFwdIfOperSTATUS 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 AppleTalk
Routing Services on the AppleTalk router port for which
the entry exists. The value of nwAtFwdIfOperStatus
indicates any problem with the configuration of AppleTalk
Routing Services on the router port. A value of 6
indicates that regardless of the state of
nwAtFwdIfAdminStatus AppleTalk Routing Services is not
operating because of an invalid port-level configuration."
::= { nwAtFwdIfEntry 3 }
nwAtFwdIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtFwdIfOper Status has been in its current state."
::= { nwAtFwdIfEntry 4 }
nwAtFwdIfControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
add(2),
delete(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."
::= { nwAtFwdIfEntry 5 }
nwAtFwdIfMtu OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Maximum Transmissions Unit (MTU) for
AppleTalk packets on the router port for which the entry
exists. This includes the AppleTalk header and data, but
does not include framing."
::= { nwAtFwdIfEntry 6 }
nwAtFwdIfForwarding OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls forwarding of AppleTalk packets on the
AppleTalk router port for which the entry exists.
Enabled (3) causes AppleTalk packets to be forwarded.
Disabled (2) prevents AppleTalk packets from being
forwarded."
::= { nwAtFwdIfEntry 7 }
nwAtFwdIfFrameType OBJECT-TYPE
SYNTAX INTEGER { -- valid media types
other(1), -- experimental
ethernet(2), -- ethernet
snap(3), -- enet,fddi,and token ring
nativewan(8), -- wan media types
encapenet(9), -- wan media types
encapenetsnap(11), -- wan media types
encapfddisnap(16), -- wan media types
canonical(17) -- special, tbd
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the framing type for AppleTalk 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 { snap }
::= { nwAtFwdIfEntry 8 }
nwAtFwdIfAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Access Control ID of the access control
list in effect for AppleTalk 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."
::= { nwAtFwdIfEntry 9 }
nwAtFwdIfAclSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of any access control list
configured for AppleTalk traffic on the router port for
which the entry exists. Enabled (3) applies the access
control list indicated by the value of
nwAtFwdIfAclIdentifier to all AppleTalk traffic being
routed on the port. Disabled (2) prevents the access
control list from being applied."
::= { nwAtFwdIfEntry 10 }
nwAtFwdIfCacheControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls AppleTalk Address caching on the router port
for which the entry exists. When AppleTalk Address
caching is enabled, AppleTalk Addresses used for address
validation, filtering, and forwarding are stored in the
cache. This cache is checked first before doing a full
route table lockup, which speeds up the switching process.
Enabled (3) turns on AppleTalk Address caching.
Disabled (2) turns it off."
::= { nwAtFwdIfEntry 11 }
nwAtFwdIfCacheEntries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of entries in the AppleTalk Address
cache on the router port for which the entry exists."
::= { nwAtFwdIfEntry 12 }
nwAtFwdIfCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of times entries in the AppleTalk
Address cache have been used to provide the AppleTalk
address required to validate, filter, or forward an
AppleTalk packet on the router port."
::= { nwAtFwdIfEntry 13 }
nwAtFwdIfCacheMisses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of times the AppleTalk Address
required to validate, filter, or forward an AppleTalk
packet on the router port was not found in the AppleTalk
Address cache."
::= { nwAtFwdIfEntry 14 }
-- The at Interface Address Table
-- This table contains the managed object used to setup and configure
-- at addresses on a per router port basis.
nwAtportTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtportEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port
configured for AppleTalk Routing Services."
::= { nwAtFwdIfConfig 2 }
nwAtportEntry OBJECT-TYPE
SYNTAX NwAtportEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the AppleTalk address information
for the router port for which the entry exists."
INDEX { nwAtportIndex }
::= { nwAtportTable 1 }
NwAtportEntry ::= SEQUENCE {
nwAtportIndex INTEGER,
nwAtportDescr DisplayString,
nwAtportType INTEGER,
nwAtportNetStart AtNetworkNumber,
nwAtportNetEnd AtNetworkNumber,
nwAtportNetAddress AtDdpNodeAddress,
nwAtportSTATUS INTEGER,
nwAtportNetConfig INTEGER,
nwAtportZoneConfig INTEGER,
nwAtportZoneDefault AtName,
nwAtportIfIndex INTEGER,
nwAtportNetFrom AtDdpNodeAddress,
nwAtportZoneFrom AtDdpNodeAddress,
nwAtportInPkts Counter,
nwAtportOutPkts Counter,
nwAtportHome INTEGER,
nwAtportCurrentZone AtName,
nwAtportConflictPhysAddr OCTET STRING
}
nwAtportIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates a unique value for each router port. The value
of nwAtportIndex is an integer between 1 and the total
number of ports configured for AppleTalk Routing
Services."
::= { nwAtportEntry 1 }
nwAtportDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This text string provides a description of the port to
the end-user; it must not contain anything but printable
ASCII characters."
::= { nwAtportEntry 2 }
-- objects throughout the MIB key off of nwAtportType to determine
-- the format of address OCTET STRINGs. The address formats
-- are as follows:
-- localtalk, ethertalk1, ethertalk2, tokentalk, iptalk,
-- fdditalk, smdstalk, arctalk, and virtual take the format of
-- DdpNodeAddress
-- serialPPP: null OCTET STRING
-- serialNonstandard: vendor specific
-- aurp: see AURP MIB to determine format
-- frameRelay: 32 bit DLCI in network byte order
-- (OCTET STRING (SIZE (4)))
-- x25: X121Address (see RFC 1382)
-- ip: IpAddress (see RFC 1155)
-- osi: NSAP (OCTET STRING (SIZE (3..20)))
-- decnetIV: 6 bit area, 10 bit host in network byte order
-- (OCTET STRING (SIZE (2)))
-- arap: ???
-- isdnInThePacketMode: ???
-- nonAppleTalk3Com: based on ifType
-- ipx: 32 bit network number in network byte order followed
-- by datalink address of host
-- arns: 32 bit ARNS header
-- hdlc: DdpNodeAddress or null OCTET STRING
nwAtportType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
localtalk(2),
ethertalk1(3),
ethertalk2(4),
tokentalk(5),
iptalk(6),
serialPPP(7),
serialNonstandard(8),
virtual(9), -- an internal interface
fdditalk(10),
arctalk(11),
smdstalk(12),
aurp(13),
frameRelay(14),
x25(15),
ip(16),
osi(17),
decnetIV(18),
arap(19),
isdnInThePacketMode(20),
nonAppleTalk3Com(21),
ipx(22),
arns(23),
hdlc(24)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The value of nwArPortType indicates which link-layer
protocol is running immediately below DDP in the protocol
stack on the router port for which the entry exists. The
value of nwAtPortType determines the format of address
octet stings throughout the entire AppleTalk MIB."
::= { nwAtportEntry 3 }
nwAtportNetStart OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The first AppleTalk network address in the network range
configured for the port. If the port is not a native
AppleTalk port, this object will have the value of two
octets of zero. Set this value to the first network
address in the network range configured for the port."
::= { nwAtportEntry 4 }
nwAtportNetEnd OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The last AppleTalk network address in the network range
configured for the port. If the network to which this
AppleTalk port is connected is a non-extended network, or
if it is not a native AppleTalk port, the value for
nwAtportNetEnd will be two octets of zero. Set this value
to the last network address in the network range
configured for the port."
::= { nwAtportEntry 5 }
nwAtportNetAddress OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk node number configured for the port. This
value may be used as a hint for an initial node number
used during node-finding. If the port is not a native
AppleTalk port, this object shall have the value of
three octets of zero."
::= { nwAtportEntry 6 }
nwAtportSTATUS OBJECT-TYPE
SYNTAX INTEGER {
routing(1), -- this port is fully configured and routing
unconfigured(2),
off(3),
invalid(4),
endNode(5), -- this port is acting as an end node
offDueToConflict(6), -- port is off due to configuration
other(7) -- none of the states defined above
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the current state of the router port's
AppleTalk configuration. If either nwAtportNetConfig or
nwApportZoneConfig are set to (5), conflictAverseSeed,
and either the configured network number range or zone
name seeded by the port conflict with the settings of a
neighbor router, nwApPortStatus will have a value of (6),
offDueToConflict."
::= { nwAtportEntry 7 }
nwAtportNetConfig OBJECT-TYPE
SYNTAX INTEGER {
conflictOrientedSeed(1),
garnered(2),
guessed(3),
unconfigured(4),
conflictAverseSeed(5),
softSeed(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the network configuration type of the port.
If the port is not a native AppleTalk port, this object
will have an unconfigured (4) value."
::= { nwAtportEntry 8 }
nwAtportZoneConfig OBJECT-TYPE
SYNTAX INTEGER {
conflictOrientedSeed(1),
garnered(2),
guessed(3),
unconfigured(4),
conflictAverseSeed(5),
softSeed(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the zone information configuration type of the port. If the port is not a native AppleTalk port, this object will have an unconfigured (4) value."
::= { nwAtportEntry 9 }
nwAtportZoneDefault OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the name of the default zone for the port. If
the port only has one zone, that zone is represented
here. If the port is not a native AppleTalk port, this
object will contain an octet string of zero length."
::= { nwAtportEntry 10 }
nwAtportIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifIndex, which identifies
the router port for which the entry exists."
::= { nwAtportEntry 11 }
nwAtportNetFrom OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When nwAtportNetConfig is set to garnered (2), this
variable contains the DDP address of the entity from
which the AppleTalk network number was garnered. When
nwAtportNetConfig is set to conflictOrientedSeed (1),
conflictAverseSeed (5), or softSeed (6), this variable
contains the DDP address of an entity which supplied or
confirmed the AppleTalk network number. If
nwAtportNetConfig is set to guessed (3) or
unconfigured (4), or if the AppleTalk Routing
Services-enabled device has not received any network
number confirmation, this object will be set to three
octets of zero."
::= { nwAtportEntry 12 }
nwAtportZoneFrom OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When nwAtportZoneConfig is set to garnered (2), this
variable contains the DDP address of the entity from
which the AppleTalk Zone List was garnered. When
nwAtportZoneConfig is set to conflictOrientedSeed (1),
conflictAverseSeed (5), or softSeed (6), this variable
contains the DDP address of an entity which supplied or
confirmed the AppleTalk zone information. If
nwAtportZoneConfig is set to guessed (3) or unconfigured
(4), or if the AppleTalk Routing Services-enabled device
has not received any zone confirmation, this object will
be set to three octets of zero."
::= { nwAtportEntry 13 }
nwAtportInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AppleTalk packets received on the
port."
::= { nwAtportEntry 14 }
nwAtportOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AppleTalk packets transmitted on the
port."
::= { nwAtportEntry 15 }
nwAtportHome OBJECT-TYPE
SYNTAX INTEGER {
home(1),
notHome(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of nwAtportHome indicates whether or not the
AppleTalk Routing Services-enabled device, the routing
entity, is `homed' on the port for which the entry exists.
If the entity is homed on the port, then it could perform
NBP (Name Binding Protocol) registrations for services
that it chooses to advertise."
::= { nwAtportEntry 16 }
-- note that modifications to the following variable do
-- not affect the nbpTable
nwAtportCurrentZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the current zone name for the port. In
general, this is the zone name in which services on the
port will be registered. If the port is not a native
AppleTalk port, this object will contain an octet string
of zero length."
::= { nwAtportEntry 17 }
nwAtportConflictPhysAddr OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the link-layer address of the device which
caused nwAtportStatus to be set to off (3). If this
address is not available, or if nwAtportStatus is not
set to off, this object will be a zero length octet
string."
::= { nwAtportEntry 18 }
-- at Forwarding Interfaces Counter Table
-- This table contains the objects that specify the packet and byte counters
-- for each configured at router port.
nwAtFwdIfCtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtFwdIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port
configured and enabled for AppleTalk Routing Services."
::= { nwAtFwdIfCounters 1 }
nwAtFwdIfCtrEntry OBJECT-TYPE
SYNTAX NwAtFwdIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry indicates the current packet and byte count
of AppleTalk packets on the router port for which the
entry exists."
INDEX { nwAtFwdIfCtrIfIndex }
::= { nwAtFwdIfCtrTable 1 }
NwAtFwdIfCtrEntry ::=
SEQUENCE {
nwAtFwdIfCtrIfIndex INTEGER,
nwAtFwdIfCtrAdminSTATUS INTEGER,
nwAtFwdIfCtrReset INTEGER,
nwAtFwdIfCtrOperationalTime TimeTicks,
nwAtFwdIfCtrInPkts Counter,
nwAtFwdIfCtrOutPkts Counter,
nwAtFwdIfCtrFwdPkts Counter,
nwAtFwdIfCtrFilteredPkts Counter,
nwAtFwdIfCtrDiscardPkts Counter,
nwAtFwdIfCtrAddrErrPkts Counter,
nwAtFwdIfCtrLenErrPkts Counter,
nwAtFwdIfCtrHdrErrPkts Counter,
nwAtFwdIfCtrInBytes Counter,
nwAtFwdIfCtrOutBytes Counter,
nwAtFwdIfCtrFwdBytes Counter,
nwAtFwdIfCtrFilteredBytes Counter,
nwAtFwdIfCtrDiscardBytes Counter,
nwAtFwdIfCtrHostInPkts Counter,
nwAtFwdIfCtrHostOutPkts Counter,
nwAtFwdIfCtrHostDiscardPkts Counter,
nwAtFwdIfCtrHostInBytes Counter,
nwAtFwdIfCtrHostOutBytes Counter,
nwAtFwdIfCtrHostDiscardBytes Counter
}
nwAtFwdIfCtrIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value MIB 2 ifindex, which identifies
the router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 1 }
nwAtFwdIfCtrAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the per-port AppleTalk
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."
::= { nwAtFwdIfCtrEntry 2 }
nwAtFwdIfCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the per-port AppleTalk packet and byte counters
on the router port for which the entry exists. Reset (2)
resets the counters to 0. nwAtFwdIfCtrOperationalTime is
also reset to 0."
::= { nwAtFwdIfCtrEntry 3 }
nwAtFwdIfCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time, in hundredths of a second,
that nwAtFwdIfCtrAdminStatus has been in the current
state."
::= { nwAtFwdIfCtrEntry 4 }
nwAtFwdIfCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been received, during nwAtFwdIfCtrOperationaltime,
on the router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 5 }
nwAtFwdIfCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been transmitted, during nwAtFwdIfCtrOperationaltime,
on the router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 6 }
nwAtFwdIfCtrFwdPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been forwarded, during nwAtFwdIfCtrOperationaltime,
on the router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 7 }
nwAtFwdIfCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been administratively filtered, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 8 }
nwAtFwdIfCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded (dropped), during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 9 }
nwAtFwdIfCtrAddrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, because of addressing errors in the
AppleTalk header, during nwAtFwdIfCtrOperationalTime,
on the router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 10 }
nwAtFwdIfCtrLenErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, because an invalid packet length
was contained in the AppleTalk header, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 11 }
nwAtFwdIfCtrHdrErrPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded, because of an invalid AppleTalk
header, during nwAtFwdIfCtrOperationalTime, on the router
port for which the entry exists."
::= { nwAtFwdIfCtrEntry 12 }
nwAtFwdIfCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been received, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 13 }
nwAtFwdIfCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been transmitted, durin
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 14 }
nwAtFwdIfCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been forwarded, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 15 }
nwAtFwdIfCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been administratively filtered, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 16 }
nwAtFwdIfCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been discarded, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 17 }
nwAtFwdIfCtrHostInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been successfully delivered to the local host during
nwAtFwdIfCtrOperationalTime, that were received on the
router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 18 }
nwAtFwdIfCtrHostOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been transmitted by the local host, during
nwAtFwdIfCtrOperationalTime, on the router port for which
the entry exists."
::= { nwAtFwdIfCtrEntry 19 }
nwAtFwdIfCtrHostDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that
have been discarded by the local host due to a lack of
host resources during nwAtFwdIfCtrOperationalTime, that
were received on the router port for which the entry
exists."
::= { nwAtFwdIfCtrEntry 20 }
nwAtFwdIfCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been successfully delivered to the
local host, during nwAtFwdIfCtrOperationalTime, that
were received on the router port for which the entry
exists."
::= { nwAtFwdIfCtrEntry 21 }
nwAtFwdIfCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been transmitted by the local host,
during nwAtFwdIfCtrOperationalTime, on the router port
for which the entry exists."
::= { nwAtFwdIfCtrEntry 22 }
nwAtFwdIfCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
packets that have been discarded by the local host, due
to a lack of host resources during
nwAtFwdIfCtrOperationalTime, that were received on the
router port for which the entry exists."
::= { nwAtFwdIfCtrEntry 23 }
-- DistanceVector-based Protocols
-- This group contains the managed objects for the Appletalk Routing Protocol,
-- RTMP DistanceVector based routing.
-- AppleTalk Proto System Configuration Parameters
-- This group contains the objects that pertain to the setup and
-- configuration of the AppleTalk Proto DistanceVector based routing protocol.
nwAtProtoAdminSTATUS 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 AppleTalk
distance-vector based routing protocol system-wide.
Enabled (3) causes the routing protocol to become active
on all router ports configured and enabled for AppleTalk
Routing Services. Disabled (2) causes the routing protocol
to become inactive."
::= { nwAtProtoConfig 1 }
nwAtProtoOperSTATUS 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
AppleTalk Routing Services distance-vector-based routing
protocol, system-wide. The value of nwAtProtoOperStatus
indicates any problem with the routing protocol
configuration. A value of 6 indicates that regardless of
the value of nwAtProtoAdminStatus, the routing protocol
is not operating because of an invalid configuration."
::= { nwAtProtoConfig 2 }
nwAtProtoAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the routing protocol. Reset (2) forces a
system-wide restart of the protocol without a graceful
shutdown on any active router ports."
::= { nwAtProtoConfig 3 }
nwAtProtoOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAtProtoOperStatus has been in the current state."
::= { nwAtProtoConfig 4 }
nwAtProtoVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the AppleTalk
routing protocol firmware, in textual format."
::= { nwAtProtoConfig 5 }
nwAtProtoStackSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the stack size of the AppleTalk routing
protocol thread. In order for a change of this value to
take effect, the protocol (nwAtProtoAdminReset),
AppleTalk Routing Services (nwAtProtoAdminReset), or the
device running Routing Services must be reset."
::= { nwAtProtoConfig 6 }
nwAtProtoThreadPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the run-time execution priority of the
AppleTalk routing protocol thread. In order for a change
of this value to take effect, the AppleTalk protocol
(nwAtProtoAdminReset), AppleTalk Routing Services
(nwAtProtoAdminReset), or the device running Routing
Services must be reset."
::= { nwAtProtoConfig 7 }
nwAtProtoDatabaseThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the run-time maximum number of entries that
can be held in the AppleTalk routing protocol route
table."
::= { nwAtProtoConfig 8 }
nwAtProtoAgeOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the amount of time (in seconds) an inactive entry
will be allowed to remain in the AppleTalk routing protocol routing table, before it is deleted, or aged-out."
::= { nwAtProtoConfig 9 }
nwAtProtoHoldDown 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."
::= { nwAtProtoConfig 10 }
-- AppleTalk Routing Protocol System (aggregate) Counters
-- This group contains the aggregate (device-wide) AppleTalk Routing Protocol
-- packet and byte counters.
nwAtProtoCtrAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the aggregate
(system-wide) AppleTalk routing protocol packet and byte
counters. Enabled (3)causes these counters to become
active. Disabled (2) causes these counters to be come
inactive."
::= { nwAtProtoCounters 1 }
nwAtProtoCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the aggregate (system-wide) AppleTalk
distance-vector based routing protocol packet and byte
counters. Reset (2) resets the AppleTalk aggregate
counters to 0. nwAtProtoCtrOperationalTime is also reset
to 0."
::= { nwAtProtoCounters 2 }
nwAtProtoCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundreds of seconds, that
nwAtProtoCtrAdminStatus, has been in the current
administrative state."
::= { nwAtProtoCounters 3 }
nwAtProtoCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk routing protocol
packets that have been received, system-wide, during
nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 4 }
nwAtProtoCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk routing protocol
packets that have been transmitted, system-wide, during
nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 5 }
nwAtProtoCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk routing protocol
packets that have been administratively filtered,
system-wide, during nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 6 }
nwAtProtoCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk routing protocol
packets that have been discarded, system-wide, during
nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 7 }
nwAtProtoCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
routing protocol packets that have been received,
system-wide, during nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 8 }
nwAtProtoCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
routing protocol packets that have been transmitted,
system-wide, during nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 9 }
nwAtProtoCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
routing protocol packets that have been administratively
filtered, system-wide, during
nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 10 }
nwAtProtoCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk
routing protocol packets that have been discarded,
system-wide during nwAtProtoCtrOperationalTime."
::= { nwAtProtoCounters 11 }
-- at Protocol Interface Table
nwAtProtoIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtProtoIfEntry
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 nwAtProtoIfIndex, which
indicates the value of MIB 2 ifindex, which identifies
the router port for which the entry exists."
::= { nwAtProtoIfConfig 1 }
nwAtProtoIfEntry OBJECT-TYPE
SYNTAX NwAtProtoIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the AppleTalk routing protocol
configuration for the router port for which the entry
exists."
INDEX { nwAtProtoIfIndex }
::= { nwAtProtoIfTable 1 }
NwAtProtoIfEntry ::=
SEQUENCE {
nwAtProtoIfIndex INTEGER,
nwAtProtoIfAdminSTATUS INTEGER,
nwAtProtoIfOperSTATUS INTEGER,
nwAtProtoIfOperationalTime TimeTicks,
nwAtProtoIfVersion INTEGER,
nwAtProtoIfAdvertisement INTEGER,
nwAtProtoIfFloodDelay INTEGER,
nwAtProtoIfRequestDelay INTEGER,
nwAtProtoIfPriority INTEGER,
nwAtProtoIfHelloTimer INTEGER,
nwAtProtoIfSplitHorizon INTEGER,
nwAtProtoIfPoisonReverse INTEGER,
nwAtProtoIfSnooping INTEGER,
nwAtProtoIfType INTEGER,
nwAtProtoIfXmitCost INTEGER,
nwAtProtoIfAclIdentifier INTEGER,
nwAtProtoIfAclSTATUS INTEGER
}
nwAtProtoIfIndex 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."
::= { nwAtProtoIfEntry 1 }
nwAtProtoIfAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the AppleTalk 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 { disabled }
::= { nwAtProtoIfEntry 2 }
nwAtProtoIfOperSTATUS 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
AppleTalk routing protocol on the router port for which
the entry exists. The value of nwAtProtoIfOperStatus
indicates any problem with your AppleTalk routing
protocol configuration on the router port. A value of 6
indicates that regardless of the value of
nwAtProtoIfAdminStatus, the routing protocol is not
operating on the router port because of an invalid
configuration."
::= { nwAtProtoIfEntry 3 }
nwAtProtoIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundreds of seconds, that
nwAtProtoIfOperStatus has been in the current state."
::= { nwAtProtoIfEntry 4 }
nwAtProtoIfVersion OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the revision level of AppleTalk routing
protocol firmware on the router port for which the entry
exists, in textual format."
::= { nwAtProtoIfEntry 5 }
nwAtProtoIfAdvertisement OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This specifies the periodic interval (in seconds) that the
AppleTalk routing protocol agent will advertise routes on this
DECnet routing port."
DEFVAL { 60 }
::= { nwAtProtoIfEntry 6 }
nwAtProtoIfFloodDelay 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"
::= { nwAtProtoIfEntry 7 }
nwAtProtoIfRequestDelay 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."
::= { nwAtProtoIfEntry 8 }
nwAtProtoIfPriority OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the priority of the AppleTalk routing protocol on
the router port for which the entry exists."
::= { nwAtProtoIfEntry 9 }
nwAtProtoIfHelloTimer 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."
::= { nwAtProtoIfEntry 10 }
nwAtProtoIfSplitHorizon OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the operating condition of Split Horizon on the
router port for which the entry exists. When Split Horizon
is enabled, the AppleTalk routing protocol keeps track of
which router port route information is received on, and
prevents information about a route form being sent back
out the same router port it was received on."
DEFVAL { enabled }
::= { nwAtProtoIfEntry 11 }
nwAtProtoIfPoisonReverse OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the operating condition of Poison Reverse on the
router port for which the entry exists. When Poison
Reverse is enabled, the AppleTalk routing protocol
advertises any downed routes as unreachable during the
period of time that it must wait before removing the
route from the route table."
DEFVAL { disabled }
::= { nwAtProtoIfEntry 12 }
nwAtProtoIfSnooping OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of AppleTalk routing protocol
Snooping on the router port. When AppleTalk routing
protocol Snooping is enabled, the routing protocol
operates in passive mode, so that it receives route
information, builds and maintains a route table, but
does not advertise or send updates on the router port for
which the entry exists."
DEFVAL { disabled }
::= { nwAtProtoIfEntry 13 }
nwAtProtoIfType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
bma(2),
nbma(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates whether the directly connected network
segment does or does not support broadcast media access.
If broadcast media access is supported, AppleTalk routing
protocol advertisements are sent out one broadcast packet
per port. If broadcast media is not supported, AppleTalk
routing protocol advertisements are sent to each
neighbor."
::= { nwAtProtoIfEntry 14 }
nwAtProtoIfXmitCost OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the cost of transmitting a packet on the network
segment connected to router port for which the entry
exists."
::= { nwAtProtoIfEntry 15 }
nwAtProtoIfAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Access Control List ID of the access
control list in effect for AppleTalk 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 AppleTalk routing protocol packets on the
router port."
::= { nwAtProtoIfEntry 16 }
nwAtProtoIfAclSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of the access control list
identified by nwAtProtoIfAclIdentifier. Enabled (3)
causes the access control list to be applied to all
AppleTalk routing protocol packet traffic on the router
port for which the entry exists. Disabled (2) prevents
the access control list from being applied."
::= { nwAtProtoIfEntry 17 }
-- AppleTalk Protocol Interface Counters Table
-- This table contains the managed objects for AppleTalk protocols packet and
-- byte counter on a per router port basis.
nwAtProtoIfCtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtProtoIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the AppleTalk packet and byte counters for
each router port on this device."
::= { nwAtProtoIfCounters 1 }
nwAtProtoIfCtrEntry OBJECT-TYPE
SYNTAX NwAtProtoIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the DECnet Phase IV packet and byte
counters on a per router port basis."
INDEX { nwAtProtoIfCtrIfIndex }
::= { nwAtProtoIfCtrTable 1 }
NwAtProtoIfCtrEntry ::=
SEQUENCE {
nwAtProtoIfCtrIfIndex INTEGER,
nwAtProtoIfCtrAdminSTATUS INTEGER,
nwAtProtoIfCtrReset INTEGER,
nwAtProtoIfCtrOperationalTime TimeTicks,
nwAtProtoIfCtrInPkts Counter,
nwAtProtoIfCtrOutPkts Counter,
nwAtProtoIfCtrFilteredPkts Counter,
nwAtProtoIfCtrDiscardPkts Counter,
nwAtProtoIfCtrInBytes Counter,
nwAtProtoIfCtrOutBytes Counter,
nwAtProtoIfCtrFilteredBytes Counter,
nwAtProtoIfCtrDiscardBytes Counter
}
nwAtProtoIfCtrIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the primary index into the AppleTalk interface counter
table. This number corresponds to the index into the mib2
InterfaceTable which describes the router port for which
the entry exists."
::= { nwAtProtoIfCtrEntry 1 }
nwAtProtoIfCtrAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the AppleTalk packet and byte
counters on the router port for which the entry exists.
enabled(3) causes these counters to become active on the
configured AppleTalk router port. disabled(2) causes these
counters to become inactive on the configured AppleTalk router
port."
::= { nwAtProtoIfCtrEntry 2 }
nwAtProtoIfCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the AppleTalk packet and byte counters on the router
port for which the entry exists. reset (2) resets the
interface-specific counters to 0.
nwAtProtoIfCtrOperationalTime is also reset to 0."
::= { nwAtProtoIfCtrEntry 3 }
nwAtProtoIfCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time (No. of time ticks) that the
interface-specific AppleTalk packet and byte counters have been
active on the router port for which the entry exists."
::= { nwAtProtoIfCtrEntry 4 }
nwAtProtoIfCtrInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that have been
received, on the router port for which the entry exists,
during nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 5 }
nwAtProtoIfCtrOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that have been forwarded, on the router port for which the entry exists, during nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 6 }
nwAtProtoIfCtrFilteredPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that have been
administratively filtered, on the router port for which this
entry exists, during nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 7 }
nwAtProtoIfCtrDiscardPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of AppleTalk packets that have been discarded, on the router port for which the entry exists, during
nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 8 }
nwAtProtoIfCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk packets that have been received, on the router port for which the entry exists, during nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 9 }
nwAtProtoIfCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk packets that have been forwarded, on the router port for which the entry exists, during nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 10 }
nwAtProtoIfCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk packets that have been administratively filtered, that were received on the router port for which the entry exists, during nwAtProtoIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 11 }
nwAtProtoIfCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the AppleTalk packets that have been discarded, that were received on the router port for
which the entry exists, during nwAtIfCtrOperationalTime."
::= { nwAtProtoIfCtrEntry 12 }
-- at Forward Information Base (FIB) Group
-- This group contains the managed objects for the forwarding table of the
-- at router.
nwAtFibTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtFibEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each route being used
to forward AppleTalk data packets."
::= { nwAtFib 1 }
nwAtFibEntry OBJECT-TYPE
SYNTAX NwAtFibEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry in the table describes an AppleTalk route
to a particular destination."
INDEX { nwAtFibStartNet }
::= { nwAtFibTable 1 }
NwAtFibEntry ::=
SEQUENCE {
nwAtFibStartNet AtNetworkNumber,
nwAtFibEndNet AtNetworkNumber,
nwAtFibNextHop AtDdpNodeAddress,
nwAtFibNextHopIf INTEGER,
nwAtFibHops INTEGER,
nwAtFibRouteType INTEGER
}
nwAtFibStartNet OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the start of the network range for the route."
::= { nwAtFibEntry 1 }
nwAtFibEndNet OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the end of the network range for the route."
::= { nwAtFibEntry 2 }
nwAtFibNextHop OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the full AppleTalk network address of the
next hop router for the route. An address of all zeros
indicates a directly connected net."
::= { nwAtFibEntry 3 }
nwAtFibNextHopIf OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB 2 ifindex, which identifies
the router port through which the next hop node exists.
Packets destined for the network specified by the entry
will be forwarded on this router port."
::= { nwAtFibEntry 4 }
nwAtFibHops OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of hops required to reach the
destination for which the entry exists. It is considered
as metric 1."
::= { nwAtFibEntry 5 }
nwAtFibRouteType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
appleTalk(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the type of route (Allows for PPP entries
later)."
::= { nwAtFibEntry 6 }
-- at Host End Systems Group
-- This group contains the managed objects which control the use of the
-- Address Resolution Protocol (ARP) for mapping host addresses to physical
-- addresses of each router port ARP cache. Mechanisms are also
-- provided which allow 'snooping' such that all directly connected
-- end systems using ARP can be discovered along with their addresses.
nwAtHostsTimeToLive OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time (in minutes) that an entry
can remain in the AARP cache."
::= { nwAtHostsSystem 1 }
nwAtHostsRetryCount OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of times AppleTalk Routing
Services will retry each attempt to resolve a host
address."
::= { nwAtHostsSystem 2 }
-- at Host Interfaces Table
-- This table contains the objects that specify the control information for
-- maintaining the ARP cache (at Net-to-Media Table).
nwAtHostCtlTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtHostCtlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the control information for
maintaining an AARP cache on each router port. Note that
the cache entries are maintained by theAppleTalk Address
Resolution Protocol Table of the AppleTalk MIB."
::= { nwAtHostsInterfaces 1 }
nwAtHostCtlEntry OBJECT-TYPE
SYNTAX NwAtHostCtlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the control information for the ARP
cache on the router port indicated by the value
nwAtHostCtlIfIndex."
INDEX { nwAtHostCtlIfIndex }
::= { nwAtHostCtlTable 1 }
NwAtHostCtlEntry ::=
SEQUENCE {
nwAtHostCtlIfIndex INTEGER,
nwAtHostCtlAdminSTATUS INTEGER,
nwAtHostCtlOperSTATUS INTEGER,
nwAtHostCtlOperationalTime TimeTicks,
nwAtHostCtlProtocol INTEGER,
nwAtHostCtlSnooping INTEGER,
nwAtHostCtlProxy INTEGER,
nwAtHostCtlCacheMax INTEGER,
nwAtHostCtlCacheSize INTEGER,
nwAtHostCtlNumStatics Counter,
nwAtHostCtlNumDynamics Counter,
nwAtHostCtlCacheHits Counter,
nwAtHostCtlCacheMisses Counter
}
nwAtHostCtlIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the value of MIB2 ifindex, which identifies
the router port for which the entry exists."
::= { nwAtHostCtlEntry 1 }
nwAtHostCtlAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the AARP cache on the
router port for which the entry exists. Enabled (3) causes
AARP caching to become active. Disabled (2) causes AARP
caching to perform a graceful shutdown."
::= { nwAtHostCtlEntry 2 }
nwAtHostCtlOperSTATUS 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 AARP
Table on the router port for which the entry exists."
::= { nwAtHostCtlEntry 3 }
nwAtHostCtlOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time, in hundredths of a second,
that nwAtHostCtlOperStatus has been in the current state."
::= { nwAtHostCtlEntry 4 }
nwAtHostCtlProtocol OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls the operation of the AARP protocol on the
router port for which the entry exists."
::= { nwAtHostCtlEntry 5 }
nwAtHostCtlSnooping OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Controls AARP Snooping on the router port for which the
entry exists. Given the AARP protocol is enabled,
setting nwAtHostCtlIfSnooping to enabled (3) turns on AARP Snooping.
When AARP Snooping is enabled the source AppleTalk and physical
addresses of all AARP packets received on the router port are added to
the AARP Table."
::= { nwAtHostCtlEntry 6 }
nwAtHostCtlProxy OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(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."
::= { nwAtHostCtlEntry 7 }
nwAtHostCtlCacheMax OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the maximum number of entry slots the AARP
cache can consist of. nwAtHostCtlCacheMax cannot be set
to less than 16. Setting this value does not allocate
any memory for the cache."
::= { nwAtHostCtlEntry 8 }
nwAtHostCtlCacheSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the current number of entry slots in the AARP
cache on the router port for which the entry exists. The
cache automatically resizes to accommodate all entries
up to the maximum number of entries set by
nwAtHostCtlCacheMax."
::= { nwAtHostCtlEntry 9 }
nwAtHostCtlNumStatics OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of static entries in the AARP
cache on the router port for which the entry exists.
Static entries remain in the cache until they are
administratively removed."
::= { nwAtHostCtlEntry 10 }
nwAtHostCtlNumDynamics OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of dynamic entries in the AARP
cache on the router port for which the entry exists.
Dynamic entries area added and aged out by the AARP
protocol."
::= { nwAtHostCtlEntry 11 }
nwAtHostCtlCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of times an entry in the AARP cache
has been used to successfully provide the physical address
required to forward an AppleTalk packet on the router
port for which the entry exists."
::= { nwAtHostCtlEntry 12 }
nwAtHostCtlCacheMisses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of times the physical address
required to forward an AppleTalk packet has not been
found in the AARP cache on the router port for which the
entry exists."
::= { nwAtHostCtlEntry 13 }
-- at Access Control List Table
-- This table contains the managed objects for the Access Control Lists
-- within the at Router. Access Control Lists allow configuration of
-- restricted access to networks and protocols reachable thru the at
-- Router device. Access Control Lists can be defined with these
-- objects and then be independently applied to at forwarding router ports.
nwAtAclValidEntries OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of valid entries that exist in the
Access Control List Table."
::= { nwAtAccessControl 1 }
nwAtAclTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtAclEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the Access Control List information
for theAppleTalk protocol. This table contains entries,
each of which allows packet forwarding between
source/destination pairs to be permitted or denied. The
particular list is identified by the access control
list ID. Each list may contain multiple entries ordered
by sequence number. When a particular 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."
::= { nwAtAccessControl 2 }
nwAtAclEntry OBJECT-TYPE
SYNTAX NwAtAclEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains AppleTalk source/destination access
information."
INDEX { nwAtAclIdentifier, nwAtAclSequence }
::= { nwAtAclTable 1 }
NwAtAclEntry ::=
SEQUENCE {
nwAtAclIdentifier INTEGER,
nwAtAclSequence INTEGER,
nwAtAclPermission INTEGER,
nwAtAclMatches Counter,
nwAtAclDestZone AtName,
nwAtAclSrcZone AtName
}
nwAtAclIdentifier OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the primary (major) index into the AppleTalk
access control list table. Essentially, this identifies
the access control list by a unique identifier (at least 1)
and is arbitrarily assigned by the user. All entries that
have the same ID belong to the same access control list."
::= { nwAtAclEntry 1 }
nwAtAclSequence OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the secondary (minor) index into the AppleTalk
access control list table. This number corresponds to a
sequence number used to order multiple entries within the
same access control list."
::= { nwAtAclEntry 2 }
nwAtAclPermission 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 pairs. Note that
source and destination are interchangeable when
bi-directional control is selected. To remove an existing
entry set invalid (2), and it will disappear after
reboot."
::= { nwAtAclEntry 3 }
nwAtAclMatches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the number of matches on this entry that
have resulted in the access restriction permit/deny
being applied as part of the forwarding process."
::= { nwAtAclEntry 4 }
nwAtAclDestZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the destination zone name used to compare for
matches on the access control list."
::= { nwAtAclEntry 5 }
nwAtAclSrcZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the source zone to be used to compare for
matches on the access control list."
::= { nwAtAclEntry 6 }
-- AppleTalk Event Group
nwAtEventAdminSTATUS OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of AppleTalk event
logging. Enabled (3) causes the event log to become
active. Disabled (2) causes the event log to become
inactive."
::= { nwAtEventLogConfig 1 }
nwAtEventMaxEntries 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 nwAtEventMaxEntries the first (oldest) entry is deleted
to allow a new entry to be added."
::= { nwAtEventLogConfig 2 }
nwAtEventTraceAll 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 from all protocols and components. Disabled
(2) causes the event log filter table to specify which
events to log."
::= { nwAtEventLogConfig 3 }
-- Event Log Filter Table
-- The Event Log Filter Table contains the managed objects used to set-up
-- and configure log entries.
nwAtEventFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtEventFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each event filter
configured for AppleTalk Routing Service's events."
::= { nwAtEventLogFilterTable 1 }
nwAtEventFilterEntry OBJECT-TYPE
SYNTAX NwAtEventFilterEntry
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 nwIpEventProtocol indicates the value used
in either the nwRtgProtocolTable or the nwComponentTable
Cabletron Routing Services MIB, which indentifies the
protocol to which the entry exists."
INDEX { nwAtEventFltrProtocol, nwAtEventFltrIfNum }
::= { nwAtEventFilterTable 1 }
NwAtEventFilterEntry ::=
SEQUENCE {
nwAtEventFltrProtocol INTEGER,
nwAtEventFltrIfNum INTEGER,
nwAtEventFltrControl INTEGER,
nwAtEventFltrType INTEGER,
nwAtEventFltrSeverity INTEGER,
nwAtEventFltrAction INTEGER
}
nwAtEventFltrProtocol 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."
::= { nwAtEventFilterEntry 1 }
nwAtEventFltrIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the router port involved in the event for
which the event filter exists."
::= { nwAtEventFilterEntry 2 }
nwAtEventFltrControl 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 log
table. Set this value to 2 to remove the entry from the
event filter table."
::= { nwAtEventFilterEntry 3 }
nwAtEventFltrType OBJECT-TYPE
SYNTAX INTEGER {
misc(1),
timer(2),
rcv(4),
xmit(8),
event(16),
error(32)
}
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. "
::= { nwAtEventFilterEntry 4 }
nwAtEventFltrSeverity 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."
::= { nwAtEventFilterEntry 5 }
nwAtEventFltrAction 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
(nwIpEventFltrAction). Logging to `trap' sends events
out through the trap mechanism."
::= { nwAtEventFilterEntry 6 }
-- Event Log Table
-- The Event Log Table contains the logged events.
nwAtEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each event that has
been logged."
::= { nwAtEventLogTable 1 }
nwAtEventEntry OBJECT-TYPE
SYNTAX NwAtEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains the information about an event that
has been logged to the event table."
INDEX { nwAtEventNumber }
::= { nwAtEventTable 1 }
NwAtEventEntry ::=
SEQUENCE {
nwAtEventNumber INTEGER,
nwAtEventTime TimeTicks,
nwAtEventType INTEGER,
nwAtEventSeverity INTEGER,
nwAtEventProtocol INTEGER,
nwAtEventIfNum INTEGER,
nwAtEventTextString OCTET STRING
}
nwAtEventNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An ordinal value assigned to the event for which the
log entry exists. nwAtEvnetNumber is assigned so that
each event in the event log can be uniquely identified by
the value of nwAtEventNumber."
::= { nwAtEventEntry 1 }
nwAtEventTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the time at which the event was logged to the
event log"
::= { nwAtEventEntry 2 }
nwAtEventType 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."
::= { nwAtEventEntry 3 }
nwAtEventSeverity OBJECT-TYPE
SYNTAX INTEGER {
highest(1),
highmed(2),
highlow(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the severity that was assigned to this event."
::= { nwAtEventEntry 4 }
nwAtEventProtocol 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."
::= { nwAtEventEntry 5 }
nwAtEventIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the router port that was involved in the
event."
::= { nwAtEventEntry 6 }
nwAtEventTextString OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Contains the actual text string that was logged."
::= { nwAtEventEntry 7 }
-- AppleTalk Outbound Diagnostics Group
nwAtNetDiagOutboundNetAddress OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk Network Address of a node with which the
diagnostic test will directly correspond."
::= { nwAtNetDiagOutbound 1 }
nwAtNetDiagOutboundPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An integer representing the port through which the
diagnostic test will broadcast or multicast packets."
::= { nwAtNetDiagOutbound 2 }
nwAtNetDiagOutboundTimeout OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An integer representing the number of seconds before a
diagnostic request will time out."
::= { nwAtNetDiagOutbound 3 }
nwAtNetDiagOutboundRetries OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"An integer representing the number of times a request
will be repeated before failure."
::= { nwAtNetDiagOutbound 4 }
nwAtNetDiagOutboundATEchoType OBJECT-TYPE
SYNTAX INTEGER {
noAction(1),
sendEchoRequest(2),
other(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of echo diagnostic function to initiate. Upon
setting this to send EchoRequest (2), an echo request
will be initiated and the value will be set to noAction
(1)."
::= { nwAtNetDiagOutbound 5 }
nwAtNetDiagOutboundATEchoStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
inProgress(2),
timeout(3),
success(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current status of the echo diagnostic."
::= { nwAtNetDiagOutbound 6 }
nwAtNetDiagOutboundNBPEntityObject OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The entity object or wildcard object used in the
NBP lookup diagnostic."
::= { nwAtNetDiagOutbound 7 }
nwAtNetDiagOutboundNBPEntityType OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The entity type or wildcard type used in the
NBP lookup diagnostic."
::= { nwAtNetDiagOutbound 8 }
nwAtNetDiagOutboundNBPEntityZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The entity zone used in the NBP lookup diagnostic."
::= { nwAtNetDiagOutbound 9 }
nwAtNetDiagOutboundNBPType OBJECT-TYPE
SYNTAX INTEGER {
noAction(1),
localRequest(2),
lookupMcast(3),
lookupBcast(4),
lookupDirect(5),
bcastRequestBcast(6),
bcastRequestDirect(7),
forwardRequestBcast(8),
forwardRequestDirect(9),
other(10)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the type of outbound NBP diagnostic function
to initiate. Upon setting this value to any value other
than noAction (1) or other (10), the corresponding request
will be made and the value will be set to noAction (1)."
::= { nwAtNetDiagOutbound 10 }
nwAtNetDiagOutboundNBPStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
inProgress(2),
done(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the current status of the outbound NBP
diagnostic."
::= { nwAtNetDiagOutbound 11 }
nwAtNetDiagOutboundRTMPType OBJECT-TYPE
SYNTAX INTEGER {
noAction(1),
sendRequest(2),
bcastRequest(3),
sendRDRequestSplitHorizon(4),
bcastRDRequestSplitHorizon(5),
sendRDRequestFullTable(6),
bcastRDRequestFullTable(7),
other(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of outbound RTMP diagnostic function to initiate.
Upon setting this value to a value other than noAction(1)
or other(8), the corresponding request will be initiated
and the value will be set to noAction(1)."
::= { nwAtNetDiagOutbound 12 }
nwAtNetDiagOutboundRTMPStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
inProgress(2),
done(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current status of the outbound RTMP diagnostic."
::= { nwAtNetDiagOutbound 13 }
nwAtNetDiagOutboundRTMPNetStart OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The start of the network range from the last successful
outbound RTMP request or route data request."
::= { nwAtNetDiagOutbound 14 }
nwAtNetDiagOutboundRTMPNetEnd OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The end of the network range from the last successful
outbound RTMP request or route data request."
::= { nwAtNetDiagOutbound 15 }
nwAtNetDiagOutboundZIPType OBJECT-TYPE
SYNTAX INTEGER {
noAction(1),
sendQuery(2),
bcastQuery(3),
sendGetZonesList(4),
sendGetLocalZones(5),
sendGetMyZone(6),
sendGetNetInfo(7),
bcastGetNetInfo(8),
other(9)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of outbound ZIP diagnostic function to initiate.
Upon setting this value to a value other than noAction(1)
or other(8), the corresponding request will be initiated
and the value will be set to noAction(1)."
::= { nwAtNetDiagOutbound 16 }
nwAtNetDiagOutboundZIPStatus OBJECT-TYPE
SYNTAX INTEGER {
inactive(1),
queryInProgress(2),
atpInProgress(3),
gniInProgress(4),
done(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current status of the outbound ZIP diagnostic."
::= { nwAtNetDiagOutbound 17 }
nwAtNetDiagOutboundZIPQueryNet OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The start of the network range to send ZIP query for."
::= { nwAtNetDiagOutbound 18 }
nwAtNetDiagOutboundZIPQueryZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The first zone from the last successful ZIP query."
::= { nwAtNetDiagOutbound 19 }
nwAtNetDiagOutboundZIPGetNetInfoZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The zone name to be used in a ZIP get-net-info request
diagnostic."
::= { nwAtNetDiagOutbound 20 }
nwAtNetDiagOutboundZIPGetNetInfoNetStart OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The start of the network range from the last successful
ZIP get-net-info request."
::= { nwAtNetDiagOutbound 21 }
nwAtNetDiagOutboundZIPGetNetInfoNetEnd OBJECT-TYPE
SYNTAX AtNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The end of the network range from the last successful
ZIP get-net-info request."
::= { nwAtNetDiagOutbound 22 }
nwAtNetDiagOutboundZIPGetNetInfoMulticast OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The data-link multicast address from the last successful
ZIP get-net-info request."
::= { nwAtNetDiagOutbound 23 }
nwAtNetDiagOutboundZIPGetNetInfoDefaultZone OBJECT-TYPE
SYNTAX AtName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The default zone name from the last successful
ZIP get-net-info request."
::= { nwAtNetDiagOutbound 24 }
-- AppleTalk Experimental Branch
-- The AppleTalk zone table has been placed under the
-- experimental branch because it is based on the appletalk
-- draft mib and shall be deprecated when the draft mib
-- becomes a standard.
-- The atportZoneTable stores information about the zones
-- associated with each port. The default zone for each
-- port is stored in the port's atportZoneDefault variable;
-- all other zones for the port are listed in this table.
-- If a port only has one zone, it should be stored in the
-- port's atportZoneDefault variable, and this table should
-- be empty.
nwAtportZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtportZoneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of zone information for non-default
zones on ports."
::= { nwRtrExperimental 1 }
nwAtportZoneEntry OBJECT-TYPE
SYNTAX NwAtportZoneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry of zone information for a port."
INDEX { nwAtportZonePort, nwAtportZoneName }
::= { nwAtportZoneTable 1 }
NwAtportZoneEntry ::= SEQUENCE {
nwAtportZonePort INTEGER,
nwAtportZoneName AtName,
nwAtportZoneStatus INTEGER
}
nwAtportZonePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An integer representing the port to which this zone belongs.
The port identified by a particular value of this object
is the same port as identified by the same value of
nwAtportIndex."
::= { nwAtportZoneEntry 1 }
nwAtportZoneName OBJECT-TYPE
SYNTAX AtName
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A zone name configured for the AppleTalk port referred to in
the corresponding entry of nwAtportZonePort.
When this value is changed in a router, the router must
send a zipNotify packet on the associated network."
::= { nwAtportZoneEntry 2 }
nwAtportZoneStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this zone entry.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in the
nwAtportZoneTable. That is, it effectively disassociates
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 from agents tabular information corresponding
to entries not currently in use. Proper
interpretation of such entries requires examination
of the relevant nwAtportZoneStatus object."
::= { nwAtportZoneEntry 3 }
--
-- IP Hosts-to-Media Table
-- This table serves to supplement the MIB-2 Net-To-Media Table. It
-- supports both non-WAN interfaces and logical WAN interfaces and the
-- circuits under them. In addition to the ifIndex, AtNetworkNumber, and
-- PhysAddress mapping, each address translation includes the framing
-- required to converse with the host, the platform's logical port number,
-- and the circuit identifier associated with the mapping if applicable.
nwAtHostMapTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAtHostMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Ip Address translation table used for mapping an IP
address to physical address, framing, port and circuit
identifier, if applicable."
::= { nwAtHostsToMedia 1 }
nwAtHostMapEntry OBJECT-TYPE
SYNTAX NwAtHostMapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one AtNetworkNumber to 'physical'
address equivalence, including a circuit identifier
if applicable. Also provided is the framing and
port number required to converse with this host."
INDEX { nwAtHostMapIfIndex, nwAtHostMapAtAddr }
::= { nwAtHostMapTable 1 }
NwAtHostMapEntry ::=
SEQUENCE {
nwAtHostMapIfIndex INTEGER,
nwAtHostMapAtAddr AtDdpNodeAddress,
nwAtHostMapPhysAddr PhysAddress,
nwAtHostMapType INTEGER,
nwAtHostMapCircuitID INTEGER,
nwAtHostMapFraming INTEGER,
nwAtHostMapPortNumber INTEGER
}
nwAtHostMapIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the primary (major) index into the HostMap
table. This number corresponds to the index into the
MIB-2 Interfaces Group which describes the IP router
port for which the entry exists."
::= { nwAtHostMapEntry 1 }
nwAtHostMapAtAddr OBJECT-TYPE
SYNTAX AtDdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The AtDdpNodeAddress corresponding to the
media-dependent 'physical' address and circuit
identifier (if applic)."
::= { nwAtHostMapEntry 2 }
nwAtHostMapPhysAddr OBJECT-TYPE
SYNTAX PhysAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The media-dependent 'physical' address. The value of
this object is 0 for entries indicating native-wan(8)
framing."
::= { nwAtHostMapEntry 3 }
nwAtHostMapType 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 nwAtHostMapTable. That is, it effectively
dissasociates the circuit 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 interpretation of such
entries requires examination of the relevant
nwAtHostMapType object."
::= { nwAtHostMapEntry 4 }
nwAtHostMapCircuitID 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 IP Address at the end of
the circuit. For non-WAN interfaces, the value of this
object is zero."
::= { nwAtHostMapEntry 5 }
nwAtHostMapFraming OBJECT-TYPE
SYNTAX INTEGER { -- valid media types
other(1), -- experimental
ethernet(2), -- ethernet
snap(3), -- enet,fddi,and token ring
nativewan(8), -- wan media types
encapenet(9), -- wan media types
encapenetsnap(11), -- wan media types
encapfddisnap(16), -- wan media types
canonical(17) -- special, tbd
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the framing type required to converse with the
host for which this entry exists."
::= { nwAtHostMapEntry 6 }
nwAtHostMapPortNumber 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 interfaces in the system and the number
of circuits present on interfaces which are of WAN type."
::= { nwAtHostMapEntry 7 }
END
|