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
|
CTRON-APPN-MIB DEFINITIONS ::= BEGIN
-- ctron-appn-mib.txt
-- Revision: 1.00.03
-- Part Number: 2171066
-- Date: June 20, 1996
-- 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 APPN 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
nwRtrProtoSuites
FROM ROUTER-OIDS
DisplayString
FROM RFC1213-MIB
Counter, TimeTicks
FROM RFC1155-SMI;
-- The APPN Router Group.
nwAppnRouter OBJECT IDENTIFIER ::= { nwRtrProtoSuites 5 }
nwAppnMibs OBJECT IDENTIFIER ::= { nwAppnRouter 1 }
nwAppnComponents OBJECT IDENTIFIER ::= { nwAppnRouter 2 }
-- APPN Router Component Groups
nwAppnSystem OBJECT IDENTIFIER ::= { nwAppnComponents 1 }
nwAppnForwarding OBJECT IDENTIFIER ::= { nwAppnComponents 2 }
nwAppnTopology OBJECT IDENTIFIER ::= { nwAppnComponents 4 }
nwAppnFib OBJECT IDENTIFIER ::= { nwAppnComponents 5 }
nwAppnEndSystems OBJECT IDENTIFIER ::= { nwAppnComponents 6 }
nwAppnAccessControl OBJECT IDENTIFIER ::= { nwAppnComponents 7 }
nwAppnFilters OBJECT IDENTIFIER ::= { nwAppnComponents 8 }
nwAppnRedirector OBJECT IDENTIFIER ::= { nwAppnComponents 9 }
nwAppnEvent OBJECT IDENTIFIER ::= { nwAppnComponents 10 }
nwAppnWorkGroup OBJECT IDENTIFIER ::= { nwAppnComponents 11 }
-- APPN Router System Groups
nwAppnSysConfig OBJECT IDENTIFIER ::= { nwAppnSystem 1 }
nwAppnSysAdministration OBJECT IDENTIFIER ::= { nwAppnSystem 2 }
-- APPN Router System Configuration Groups
nwAppnSysCfgLocalNode OBJECT IDENTIFIER ::= { nwAppnSysConfig 2 }
nwAppnSysCfgTables OBJECT IDENTIFIER ::= { nwAppnSysConfig 3 }
-- APPN Router Forwarding Groups
nwAppnFwdSystem OBJECT IDENTIFIER ::= { nwAppnForwarding 1 }
nwAppnFwdInterfaces OBJECT IDENTIFIER ::= { nwAppnForwarding 2 }
nwAppnFwdLinks OBJECT IDENTIFIER ::= { nwAppnForwarding 3 }
nwAppnFwdCounters OBJECT IDENTIFIER ::= { nwAppnFwdSystem 1 }
nwAppnFwdIfConfig OBJECT IDENTIFIER ::= { nwAppnFwdInterfaces 1 }
nwAppnIfCn OBJECT IDENTIFIER ::= { nwAppnFwdIfConfig 3 }
nwAppnFwdIfCounters OBJECT IDENTIFIER ::= { nwAppnFwdInterfaces 2 }
nwAppnFwdLsConfig OBJECT IDENTIFIER ::= { nwAppnFwdLinks 1 }
nwAppnFwdLsCounters OBJECT IDENTIFIER ::= { nwAppnFwdLinks 2 }
-- APPN Router Routing Groups
nwAppnDistanceVector OBJECT IDENTIFIER ::= { nwAppnTopology 1 }
nwAppnLinkState OBJECT IDENTIFIER ::= { nwAppnTopology 2 }
nwAppnIsr OBJECT IDENTIFIER ::= { nwAppnLinkState 1 }
nwAppnIsrSystem OBJECT IDENTIFIER ::= { nwAppnIsr 1 }
nwAppnIsrInterfaces OBJECT IDENTIFIER ::= { nwAppnIsr 2 }
nwAppnIsrDatabase OBJECT IDENTIFIER ::= { nwAppnIsr 3 }
nwAppnIsrFilters OBJECT IDENTIFIER ::= { nwAppnIsr 4 }
nwAppnIsrConfig OBJECT IDENTIFIER ::= { nwAppnIsrSystem 1 }
nwAppnIsrCounters OBJECT IDENTIFIER ::= { nwAppnIsrSystem 2 }
nwAppnIsrIfConfig OBJECT IDENTIFIER ::= { nwAppnIsrInterfaces 1 }
nwAppnIsrIfCounters OBJECT IDENTIFIER ::= { nwAppnIsrInterfaces 2 }
-- APPN Router Host End Systems Groups ( NOT USED )
nwAppnHostsSystem OBJECT IDENTIFIER ::= { nwAppnEndSystems 1 }
nwAppnHostsInterfaces OBJECT IDENTIFIER ::= { nwAppnEndSystems 2 }
-- APPN Router Event Log Group
nwAppnEventLogConfig OBJECT IDENTIFIER ::= { nwAppnEvent 1 }
nwAppnEventLogFilterTable OBJECT IDENTIFIER ::= { nwAppnEvent 2 }
nwAppnEventLogTable OBJECT IDENTIFIER ::= { nwAppnEvent 3 }
-- APPN 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.
nwAppnMibRevText OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the Cabletron APPN
Router MIB in textual format."
::= { nwAppnMibs 1 }
-- APPN Routing Services System Group
-- This group contains the objects related to APPN Routing Services at a
-- global system-wide level.
-- APPN Routing Services System Configuration Group
-- This group contains the objects that pertain to the setup and
-- configuration of APPN Routing Services at a global,
-- system-wide level.
nwAppnSysRouterId OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the APPN Fully-Qualified Control Point name that is used
to uniquely identify APPN Routing Services in an APPN network. The
name format is NNNNNNNN.CCCCCCCC where NNNNNNNN is the network
identifier and CCCCCCCC is the Control Point name. Valid characters
to make up these two strings are uppercase letters A through Z,
numerics 0 through 9, and the special characters $, @, and #. The
first character of the string must NOT be numeric. Each string must
be a maximum length of 8 characters with no embedded spaces and the
strings are joined by a dot. nwAppnSysRouterId cannot be modified
while APPN routing services is in any operational state other than
DISABLED as reflected in nwAppnSysOperStatus. Otherwise, the
request will be rejected."
::= { nwAppnSysConfig 1 }
-- APPN Routing Services System Group
-- This group contains the objects related to initializing APPN Routing Services
-- at a global, system-wide level.
-- All parameters (except for Stop Type) cannot be modified unless the
-- operational state is disabled. Otherwise, the request will be rejected.
nwAppnSysNodeType OBJECT-TYPE
SYNTAX INTEGER {
networknode(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the node type supported by APPN Routing Services which
is always of type Network Node. "
DEFVAL { networknode }
::= { nwAppnSysCfgLocalNode 1 }
nwAppnSysCpAlias OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the Control Point alias name used by APPN Routing
Services. "
::= { nwAppnSysCfgLocalNode 2 }
nwAppnSysModeCosMap OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether mode to COS mapping is supported by
APPN Routing Services."
DEFVAL { yes }
::= { nwAppnSysCfgLocalNode 3 }
nwAppnSysMdsSupport OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether Management Services supports Multiple
Domain Support and Management Services capabilities. "
DEFVAL { yes }
::= { nwAppnSysCfgLocalNode 4 }
nwAppnSysMaxLocates OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum Number of locate requests that APPN Routing
Services can concurrently process. Note: if nwAppnSysMaxLocates is
set to a value too small, it will be internally increased to a
higher value after APPN Routing Services has been successfully
enabled. A subsequent GET operation on nwAppnSysMaxLocates will
reflect this new value."
DEFVAL { 10 }
::= { nwAppnSysCfgLocalNode 6 }
nwAppnSysDirCacheSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies number of located resources maintained in the Directory
Cache. Note: if nwAppnSysDirCacheSize is set to a value too small,
it will be internally increased to a higher value after APPN routing
services has been successfully enabled. A subsequent GET
operation on nwAppnSysDirCacheSize will reflect this new value. "
DEFVAL { 255 }
::= { nwAppnSysCfgLocalNode 7 }
nwAppnSysMaxDirEntries OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of directory entries. If zero is selected,
the number of entries is unlimited. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 8}
nwAppnSysLocateTimeout OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies time in seconds before a network search will timeout. Zero
indicates that the search has no timeout."
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 9 }
nwAppnSysRegCds OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether the local or domain resources can be registered
with the Central Directory Server."
DEFVAL { yes }
::= { nwAppnSysCfgLocalNode 10 }
nwAppnSysMdsSendQSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies size of the MDS send alert Queue."
DEFVAL { 100 }
::= { nwAppnSysCfgLocalNode 11 }
nwAppnSysCosSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of COS definitions maintained in the COS
database weights cache. It determines the size of the COS Database
weights cache. Note: if nwAppnSysCosSize is set to a value too
small, it will be internally increased to a higher value after
APPN Routing Services has been successfully enabled. A subsequent
GET operation on nwAppnSysCosSize will reflect this new value. "
DEFVAL { 16 }
::= { nwAppnSysCfgLocalNode 12 }
nwAppnSysTreeSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the number of routes maintained in the Topology Database
routing tree cache. Note: if nwAppnSysTreeSize is set to a value
too small, it will be internally increased to a higher value after
APPN Routing Services has been successfully enabled. A subsequent
GET operation on nwAppnSysTreeSize will reflect this new value. "
DEFVAL { 40 }
::= { nwAppnSysCfgLocalNode 13 }
nwAppnSysTreeUseLimit OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Maximum number of times a cached tree will be used to compute a
route before the tree is discarded and recomputed. This
allows the APPN Routing Services to balance sessions among
equal weight routes. A low value provides better load balancing
at the expense of increased activation latency. "
DEFVAL { 40 }
::= { nwAppnSysCfgLocalNode 14 }
nwAppnSysMaxTdmNodes OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of nodes that can be stored in the Topology
Database. Zero means unlimited. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 15 }
nwAppnSysMaxTdmTGs OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of transmission groups that can be stored in
Topology Database. Zero means unlimited. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 16 }
nwAppnSysMaxIsrSessions OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum number of intermediate routing sessions permitted
by APPN Routing Services at one time. This must be a non-negative
number."
DEFVAL { 1000 }
::= { nwAppnSysCfgLocalNode 18 }
nwAppnSysIsrUpperThresh OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The thresholds control the congestion status of APPN routing
services. If the number of ISR sessions exceeds the upper
threshold, congestion status changes from uncongested to congested.
When this occurs, the status will not become uncongested until the
the number of ISR sessions fall below the lower threshold. The
lower threshold should be less than the upper threshold to prevent
thrashing. The upper threshold should be lower than
nwAppnSysMaxIsrSessions. This must be a non-negative number."
DEFVAL { 900 }
::= { nwAppnSysCfgLocalNode 19 }
nwAppnSysIsrLowerThresh OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifes the number of ISR sessions at which congestion status will
revert to uncongested. This must be a non-negative number.
nwAppnSysIsrLowerThresh must be less than nwAppnSysIsrUpperThresh
to prevent thrashing. "
DEFVAL { 800 }
::= { nwAppnSysCfgLocalNode 20 }
nwAppnSysIsrMaxRuSize OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum RU size supported for intermediate sessions.
Note: the number provided will be rounded up to the
next valid RU size if necessary after APPN Routing Services has
been successfully enabled. A subsequent GET operation on
nwAppnSysMaxLocates will reflect this new value."
DEFVAL { 1024 }
::= { nwAppnSysCfgLocalNode 21 }
nwAppnSysIsrRcvPaceWind OBJECT-TYPE
SYNTAX INTEGER (1..63)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies suggested receive pacing window size for intermediate
sessions. This value may be used as a fixed window size for
fixed pacing, or as a tuning value for adaptive pacing. "
DEFVAL { 8 }
::= { nwAppnSysCfgLocalNode 22 }
nwAppnSysRtAddResist OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies a desirability factor for APPN Routing Services to
perform intermediate session routing. 255 is least desirable
and 0 is more desirable. "
DEFVAL { 0 }
::= { nwAppnSysCfgLocalNode 23 }
nwAppnSysStopType OBJECT-TYPE
SYNTAX INTEGER {
abort(1), -- Shutdown APPN Routing Services immediately
immediate(2), -- deactivate links then abort(1)
quiesce(3), -- advertize quiesce, deactivate endpoint
-- sessions, then immediate(2)
quiesceIsr(4) -- allow all isr sessions to end then
-- quiesce(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the type of APPN Routing Services shutdown.
Once specified, select disable from nwAppnSysAdminStatus. The
shutdown choices are as follows:
abort(1) All APPN Routing Services components are immediately
stopped and resources released. To become active again,
the APPN Routing Services must be enabled.
immediate(2) APPN Routing Services immediately deactivates all links
then performs abort(1) processing.
quiesce(3) APPN Routing Services indicates to other APPN network
nodes that it is quiesced. Session limits
are reset on all modes, UNBINDs are issued
on all endpoint sessions (CP-CP sessions last),
and then immediate(2) processing is performed.
quiesceIsr(4) Allows all intermediate sessions to end,
then performs the quiesce(3) processing."
DEFVAL { quiesceIsr }
::= { nwAppnSysCfgLocalNode 24 }
nwAppnSysBlockNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(3))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the 3 hexadecimal digit block number which
precedes the 5 digit id number in the 8 digit node id used in
XIDs and Alerts. The block number identifies the product type.
Both the block number and id number combined, uniquely identify
this instance of APPN Routing Services within the installation
network."
-- DEFVAL { 'e08'H }
::= { nwAppnSysCfgLocalNode 25 }
nwAppnSysIdNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(5))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the 5 hexadecimal digit id number which follows
the 3 digit block number in the 8 digit node id used in XIDs and
Alerts. The id number uniquely identifies this instance of APPN
Routing Services within a product type indicated by the block number.
Both the block number and id number combined, uniquely identify
this instance of APPN Routing Services within the installation
network."
-- DEFVAL { '00000'H }
::= { nwAppnSysCfgLocalNode 26 }
-- APPN Router System Group - Local APPN Routing Service Parameters
-- This group contains tables related to configuring:
--
-- LU Definition Table
--
-- LU Table
--
nwAppnSysLuTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnSysLuEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains entries for LUs that are owned by adjacent
LEN nodes. Defining or deleting an entry is equivalent to defining
or deleting an entry in the directory database. To add an entry,
set nwAppnSysLuControl to other. To delete an entry, set
nwAppnSysLuControl to delete."
::= { nwAppnSysCfgTables 1 }
nwAppnSysLuEntry OBJECT-TYPE
SYNTAX NwAppnSysLuEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry defines an LU entry in the directory database. The
fully qualified CP name and the name of the LU are the indexes into
this table."
INDEX { nwAppnSysCpName, nwAppnSysLuName }
::= { nwAppnSysLuTable 1 }
NwAppnSysLuEntry ::= SEQUENCE {
nwAppnSysCpName DisplayString,
nwAppnSysLuName DisplayString,
nwAppnSysLuControl INTEGER
}
nwAppnSysCpName OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the fully qualified name of the Control Point
containing the LU being defined. The format of this name
is NNNNNNNN.CCCCCCCC where NNNNNNNN is the network identifier and
CCCCCCCC is the LU or Control Point name. Valid characters to make
up these two strings are uppercase letters A through Z, numerics 0
through 9 and the special charcters $, @, and #. The first character
of the name must NOT be numeric. Each string must be a maximum length
of 8 characters with no embedded spaces and the strings are joined by
a dot. This CP name must appear as an Adjacent CP in a link station
definition where the adjacent CP type is EN and CP-CP session support
is NO."
::= { nwAppnSysLuEntry 1 }
nwAppnSysLuName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the name of the LU being registered. The name format is
LLLLLLLL where LLLLLLLL are the characters: uppercase letters
A through Z, numerics 0 through 9, and the special characters
$, @, and #. The first character of the name must NOT be numeric.
The string must be a maximum length of 8 characters with no
embedded spaces. Note that the nework identifier of the LU is
taken from the fully qualified control point name of the adjacent
LEN node (nwAppnSysCpName) which owns the LU. "
::= { nwAppnSysLuEntry 2 }
nwAppnSysLuControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set this object to delete to remove an entry."
::= { nwAppnSysLuEntry 3 }
-- APPN System Administration Group
-- This group contains the objects that pertain to the administration of
-- APPN Routing Services at a global, system-wide level.
nwAppnSysAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disable(2), -- shut down APPN Routing Services
enabled(3) -- start up APPN Routing Services
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the system-wide administrative state of APPN Routing Services.
If enable(3) is selected, APPN Routing Services is activated.
There are two cases: the very first activation, and activations
subsequent to the successful first activation. Before activating
APPN Routing Services the very first time, nwAppnSysRouterId in
the System Configuration branch and all objects under
nwAppnSysCfgLocalNode must be assigned a value. If not explicitly
assigned, default values will be used for objects under
nwAppnSysCfgLocalNode. After this first activation has completed
successfully, all objects under nwAppnSysCfgLocalNode will be
saved in non-volatile RAM and restored for the next node activation
at power up time. After this subsequent power up, enable(3) may be
selected without setting nwAppnSysRouterId or any objects under
under nwAppnSysCfgLocalNode. Those values defined prior to the
last power up or reset will be used.
If disable(2) is selected, APPN Routing Services will become
inactive in the manner specifed by nwAppnSysStopType. To
modify objects under nwAppnSysCfgLocalNode, nwAppnSysAdminStatus
must be disabled. "
::= { nwAppnSysAdministration 1 }
nwAppnSysOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- inactive
enabled(3), -- active
pendingDisable(4), -- deactivate in progress
pendingEnable(5) -- activate in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating system-wide status of APPN
Routing Services. "
::= { nwAppnSysAdministration 2 }
nwAppnSysAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
reset(2) -- force a reset
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets APPN Routing Services system-wide. Reset (2) forces a
restart of APPN Routing Services without a graceful shutdown on
any active router ports, without affecting any other routing
services."
::= { nwAppnSysAdministration 3 }
nwAppnSysOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwAppnOperStatus has been in its current state."
::= { nwAppnSysAdministration 4 }
nwAppnSysVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of APPN routing
services in textual format."
::= { nwAppnSysAdministration 5 }
-- APPN Forwarding Group
-- This group contains the managed objects used to setup and configure
-- APPN Routing Services for aggregate, system-wide, port Message Unit
-- (MU) and byte counters.
nwAppnFwdCtrAdminStatus 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,
port Message Unit (MU) and byte counters. Enabled (3) causes
these counters to become active. Disabled (2) causes these
counters to become inactive."
::= { nwAppnFwdCounters 1 }
nwAppnFwdCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the aggregate, system-wide port Message Unit (MU)
and byte counters. Reset (2) resets the aggregate counters to 0.
nwAppnFwdCtrOperationalTime is also reset to 0."
::= { nwAppnFwdCounters 2 }
nwAppnFwdCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second,
that nwAppnFwdCtrAdminStatus has been in the current state."
::= { nwAppnFwdCounters 3 }
nwAppnFwdCtrInMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been received system-wide (for all ports) during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 4 }
nwAppnFwdCtrOutMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been transmitted system-wide (for all ports) during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 5 }
nwAppnFwdCtrFwdMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been forwarded system-wide (for all ports) during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 6 }
nwAppnFwdCtrFilteredMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 7 }
nwAppnFwdCtrDiscardMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 8 }
nwAppnFwdCtrAddrErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs)
that have been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime, that contain an address error(s)
in the SNA header."
::= { nwAppnFwdCounters 9 }
nwAppnFwdCtrLenErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime, that contain a length error."
::= { nwAppnFwdCounters 10 }
nwAppnFwdCtrHdrErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime, that contain an SNA header error
other than an address or length error."
::= { nwAppnFwdCounters 11 }
nwAppnFwdCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates number of bytes in Message Units (MUs) that have
been received system-wide (for all ports), during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 12 }
nwAppnFwdCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs) that
have been forwarded system-wide (for all ports), during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 13 }
nwAppnFwdCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs) that
have been forwarded system-wide (for all ports), during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 14 }
nwAppnFwdCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 15 }
nwAppnFwdCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 16 }
nwAppnFwdCtrHostInMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been delivered system-wide (for all ports), to local half
sessions during nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 17 }
nwAppnFwdCtrHostOutMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been successfully sent from local half sessions system-wide
(for all ports), to Path Control during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 18 }
nwAppnFwdCtrHostDiscardMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 19 }
nwAppnFwdCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs)
that have been delivered system-wide (for all ports), to
local half sessions during nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 20 }
nwAppnFwdCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs)
that have been successfully sent from local half sessions
system-wide (for all ports), to Path Control during
nwAppnFwdCtrOperationalTime."
::= { nwAppnFwdCounters 21 }
nwAppnFwdCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdCounters 22 }
-- APPN Forwarding Port Table
-- This table contains the managed objects used to setup and configure
-- each port used by APPN Routing Services.
--
--
nwAppnFwdIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains an entry for each router port which can
be used by APPN Routing Services. This table is indexed by
nwAppnFwdIfIndex, which indicates the value of MIB 2 ifindex
which identifes the router port for which an entry exists.
These port configuration entries will be provided automatically
based on physical port configuration. Such entries cannot be
deleted - only modified."
::= { nwAppnFwdIfConfig 1 }
nwAppnFwdIfEntry OBJECT-TYPE
SYNTAX NwAppnFwdIfEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the APPN Routing Services port
configuration for the router port for which the entry exists."
INDEX { nwAppnFwdIfIndex }
::= { nwAppnFwdIfTable 1 }
NwAppnFwdIfEntry ::=
SEQUENCE {
nwAppnFwdIfIndex INTEGER,
nwAppnFwdIfAdminStatus INTEGER,
nwAppnFwdIfOperStatus INTEGER,
nwAppnFwdIfOperationalTime TimeTicks,
nwAppnFwdIfControl INTEGER,
nwAppnFwdIfMtu INTEGER,
nwAppnFwdIfForwarding INTEGER,
nwAppnFwdIfFrameType INTEGER,
nwAppnFwdIfAclIdentifier INTEGER,
nwAppnFwdIfAclStatus INTEGER,
nwAppnFwdIfCacheControl INTEGER,
nwAppnFwdIfCacheEntries Counter,
nwAppnFwdIfCacheHits Counter,
nwAppnFwdIfCacheMisses Counter
}
nwAppnFwdIfIndex 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. "
::= { nwAppnFwdIfEntry 1 }
nwAppnFwdIfAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of an APPN Routing Services
port for which the entry exists. enabled(3) causes the
APPN Routing Services port to become active. disable(2)
causes it to become inactive. There are various choices
for the method by which the port can be disabled, which are
enumerated by nwAppnExtIfStopType. "
::= { nwAppnFwdIfEntry 2 }
nwAppnFwdIfOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- inactive
enabled(3), -- active
pendingDisable(4), -- deactivate in progress
pendingEnable(5) -- activate in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current operating condition of the APPN Routing
Services port for which the entry exists."
::= { nwAppnFwdIfEntry 3 }
nwAppnFwdIfOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwAppnFwdIfOperStatus has been in the current state."
::= { nwAppnFwdIfEntry 4 }
nwAppnFwdIfControl OBJECT-TYPE
SYNTAX INTEGER {
other(1)
}
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."
::= { nwAppnFwdIfEntry 5 }
nwAppnFwdIfMtu 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."
::= { nwAppnFwdIfEntry 6 }
nwAppnFwdIfForwarding OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs. Setting this object has no effect."
::= { nwAppnFwdIfEntry 7 }
nwAppnFwdIfFrameType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ethernet(2),
i8022(4),
sync(8)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the framing type for the APPN Routing Services port
for which the entry exists. "
::= { nwAppnFwdIfEntry 8 }
nwAppnFwdIfAclIdentifier 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."
::= { nwAppnFwdIfEntry 9 }
nwAppnFwdIfAclStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs. Setting this object has no effect."
::= { nwAppnFwdIfEntry 10 }
nwAppnFwdIfCacheControl 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."
::= { nwAppnFwdIfEntry 11 }
nwAppnFwdIfCacheEntries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs. Setting this object has no effect."
::= { nwAppnFwdIfEntry 12 }
nwAppnFwdIfCacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs. Setting this object has no effect."
::= { nwAppnFwdIfEntry 13 }
nwAppnFwdIfCacheMisses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs. Setting this object has no effect."
::= { nwAppnFwdIfEntry 14 }
-- The APPN Routing Services Port Extension Table
-- This table contains additional objects used to setup and configure
-- APPN Routing Services on a per port basis.
nwAppnExtensionTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnExtEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains additional APPN definitions for each
physical port. Entries cannot be added to or deleted from this
table. With the exception of nwAppnExtIfStopType, objects in
this table may only be modified when nwAppnFwdIfAdminStatus
is disabled. Note: if APPN Routing Services is not active, no
entries will exist for this table. "
::= { nwAppnFwdIfConfig 2 }
nwAppnExtEntry OBJECT-TYPE
SYNTAX NwAppnExtEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies additional APPN configuration parameters
for the port for which this entry exists."
INDEX { nwAppnExtIfIndex }
::= { nwAppnExtensionTable 1 }
NwAppnExtEntry ::=
SEQUENCE {
nwAppnExtIfIndex INTEGER,
nwAppnExtIfPortName DisplayString,
nwAppnExtIfPortType INTEGER,
nwAppnExtIfDlcType INTEGER,
nwAppnExtIfMaxRBtuSize INTEGER,
nwAppnExtIfTotLsActLim INTEGER,
nwAppnExtIfInbLsActLim INTEGER,
nwAppnExtIfOutbLsActLim INTEGER,
nwAppnExtIfLocalLsRole INTEGER,
nwAppnExtIfActXidXchgLimit INTEGER,
nwAppnExtIfNonActXidXchgLimit INTEGER,
nwAppnExtIfLsXmitRcvCap INTEGER,
nwAppnExtIfMaxIfrmRcvd INTEGER,
nwAppnExtIfDfltTargetPacing INTEGER,
nwAppnExtIfDfltMaxSBtuSize INTEGER,
nwAppnExtIfDfltEffectCap INTEGER,
nwAppnExtIfDfltConnectCost INTEGER,
nwAppnExtIfDfltByteCost INTEGER,
nwAppnExtIfDfltSecurity INTEGER,
nwAppnExtIfDfltPropDelay INTEGER,
nwAppnExtIfDfltUsrDef1 INTEGER,
nwAppnExtIfDfltUsrDef2 INTEGER,
nwAppnExtIfDfltUsrDef3 INTEGER,
nwAppnExtIfStopType INTEGER,
nwAppnExtIfCpCpSupp INTEGER,
nwAppnExtIfLimitedRsrc INTEGER,
nwAppnExtIfAddress OCTET STRING,
nwAppnExtIfSsap OCTET STRING
}
nwAppnExtIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the primary index into the APPN port extension table.
This number corresponds to the index into the nwAppnFwdIfTable. "
::= { nwAppnExtEntry 1 }
nwAppnExtIfPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the user friendly name for this port. "
::= { nwAppnExtEntry 2 }
nwAppnExtIfPortType OBJECT-TYPE
SYNTAX INTEGER {
nonswitched(1),
switched(2),
satf(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the type of line used by the port. The value
corresponds to one of the following: nonswitched(1),
switched(2), or satf(3). "
::= { nwAppnExtEntry 4 }
nwAppnExtIfDlcType OBJECT-TYPE
SYNTAX INTEGER {
llc2(1),
sdlc(2),
x25(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the type of DLC using the port. "
::= { nwAppnExtEntry 5 }
nwAppnExtIfMaxRBtuSize OBJECT-TYPE
SYNTAX INTEGER (99..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum Message Unit (MU) size that can be received. "
DEFVAL { 2048 }
::= { nwAppnExtEntry 6 }
nwAppnExtIfTotLsActLim OBJECT-TYPE
SYNTAX INTEGER (1..256)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the total number of links that can be active on this
port. If nwAppnExtIfPortType = nonswitched(1) and
nwAppnExtIfLocalLsRole = negotiable(1), or secondary(3), then
this value must be set to 1. "
DEFVAL { 16 }
::= { nwAppnExtEntry 7 }
nwAppnExtIfInbLsActLim OBJECT-TYPE
SYNTAX INTEGER (0..256)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the total number of inbound links that can be active on
this port. If nwAppnExtIfPortType = nonswitched(1) and
nwAppnExtIfLocalLsRole = negotiable(1) or primary(2), then this
value must be set to 0. "
DEFVAL { 8 }
::= { nwAppnExtEntry 8 }
nwAppnExtIfOutbLsActLim OBJECT-TYPE
SYNTAX INTEGER (0..256)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the total number of outbound links that can be active on
this port. If nwAppnExtIfPortType = nonswitched(1) and
nwAppnExtIfLocalLsRole = negotiable(1), then this value must be
set to 0. If nwAppnExtIfLocalLsRole = primary(2), then this value
must be set the same as nwAppnExtIfTotLsActLim. "
DEFVAL { 8 }
::= { nwAppnExtEntry 9 }
nwAppnExtIfLocalLsRole OBJECT-TYPE
SYNTAX INTEGER { negotiable(1),
primary(2),
secondary(3) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the link station role - primary, secondary, or
negotiable. For nwAppnExtIfPortType = satf(3), the link station
role must be negotiable(1). "
DEFVAL { negotiable }
::= { nwAppnExtEntry 10 }
nwAppnExtIfActXidXchgLimit OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the total number of activation XIDs that may be
exchanged. "
DEFVAL { 9 }
::= { nwAppnExtEntry 11 }
nwAppnExtIfNonActXidXchgLimit OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the total number of non-activation XIDs that may be
exchanged. "
DEFVAL { 5 }
::= { nwAppnExtEntry 12 }
nwAppnExtIfLsXmitRcvCap OBJECT-TYPE
SYNTAX INTEGER { twowaysimultaneous(1),
twowayalternating(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the link station's transmit/receive capability. "
DEFVAL { twowaysimultaneous }
::= { nwAppnExtEntry 13 }
nwAppnExtIfMaxIfrmRcvd OBJECT-TYPE
SYNTAX INTEGER (1..127)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum number of I-frames received before an
acknowledgment is sent to the sender. "
DEFVAL { 4 }
::= { nwAppnExtEntry 14 }
nwAppnExtIfDfltTargetPacing OBJECT-TYPE
SYNTAX INTEGER (1..32767)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the pacing window size for BINDs on this transmission
group. "
DEFVAL { 7 }
::= { nwAppnExtEntry 15 }
nwAppnExtIfDfltMaxSBtuSize OBJECT-TYPE
SYNTAX INTEGER (99..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum Message Unit (MU) size which can be sent. "
DEFVAL { 2048 }
::= { nwAppnExtEntry 16 }
nwAppnExtIfDfltEffectCap OBJECT-TYPE
SYNTAX INTEGER (0..603979776)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the default maximum kilo bits per second rate
(line speed) for all links on this port. "
::= { nwAppnExtEntry 17 }
nwAppnExtIfDfltConnectCost OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the default cost per connect time for all link
stations on this port. 0 is the lowest cost and 255 is the
largest cost. "
::= { nwAppnExtEntry 18 }
nwAppnExtIfDfltByteCost OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the default Cost per Byte for link stations. 0 is
the lowest cost and 255 is the largest cost. "
::= { nwAppnExtEntry 19 }
nwAppnExtIfDfltSecurity OBJECT-TYPE
SYNTAX INTEGER { nonsecure(1), --X'01'
publicSwitchNw(32), --X'20'
undergroundCable(64), --X'40'
secureConduit(96), --X'60'
guardedConduit(128), --X'80'
encrypted(160), --X'A0'
guardedRadiation(192) --X'C0'
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specify one of the following security selections:
non-secure - specifies no security.
public switched - data flows over a public switched
network.
underground cable - data transmitted over a secure
underground cable.
secure conduit - line is secure conduit that is not
guarded.
guarded conduit - conduit that is protected against
physical tapping.
encrypted - encryption over the line.
guarded radiation - line is proected against physical
and radiation tapping. "
::= { nwAppnExtEntry 20 }
nwAppnExtIfDfltPropDelay OBJECT-TYPE
SYNTAX INTEGER {
minimum(0), --X'00'
negligible(384), --X'4C'
terrestrial(9216), --X'71'
packetswitched(147456), --X'91'
long(294912), --X'99'
maximum(2013265920) --X'FF'
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the propagation delay which represents the relative
time it takes for a signal to travel the length of the link in
microseconds, with some of the more common default values
enumerated. The default times in parentheses are in microseconds.
These default values fall into the following ranges:
minimum - no propagation delay
negligible, lan - less than 480 microseconds
terrestrial, telephone - between 480 and 49,512
microseconds
packetswitched - between 49,512 and 245,760
microseconds
long, satellite - more than 245760 microseconds.
maximum - the maximum propagation delay. "
::= { nwAppnExtEntry 21 }
nwAppnExtIfDfltUsrDef1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 1. "
DEFVAL { 128 }
::= { nwAppnExtEntry 22 }
nwAppnExtIfDfltUsrDef2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 2. "
DEFVAL { 128 }
::= { nwAppnExtEntry 23 }
nwAppnExtIfDfltUsrDef3 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 3. "
DEFVAL { 128 }
::= { nwAppnExtEntry 24 }
nwAppnExtIfStopType OBJECT-TYPE
SYNTAX INTEGER {
immediate(1),
orderly(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the type of shutdown for APPN Routing Services
on the port. Once set, nwAppnFwdIfAdminStatus may
be set to disable. The disable choices are as follows:
immediate(1) causes the link stations belonging to the
physical port to be disabled immediately
without flushing pending messages and
without initiating an orderly disconnect sequence.
orderly(2) causes pending messages in link stations to be
flushed, followed by an orderly disconnect
sequence. The link station is then disabled. "
DEFVAL { orderly }
::= { nwAppnExtEntry 25 }
nwAppnExtIfCpCpSupp OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether CP-CP sessions are permitted on dynamic
links generated on this port. "
DEFVAL { yes }
::= { nwAppnExtEntry 26 }
nwAppnExtIfLimitedRsrc OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether dynamic links generated on this port
are a limited resource. A limited resource link will
be deactivated when there are no sessions using the link."
DEFVAL { no }
::= { nwAppnExtEntry 27 }
nwAppnExtIfAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the physical address of this port depending on the
media type. For token ring or ethernet ports, the information is
the 6 byte MAC address which starts in byte 1 and ends in byte 6.
For token ring ports the MAC address must be specified in non-
canonical format. For ethernet ports the MAC address must be
specified in canonical format. For frame relay ports, there is
no associated address, i.e., it will be a zero length octet string."
::= { nwAppnExtEntry 28 }
nwAppnExtIfSsap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"For token ring or ethernet ports specifies the Source SAP Address
of this port. "
DEFVAL { '04'h }
::= { nwAppnExtEntry 29 }
--
-- Connection Network Tables
--
nwAppnIfCnPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnIfCnPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains definitions for the Connection
Network port table which defines which local ports can
access a connection network. To add a row to the table,
nwAppnIfCnPtFqName and nwAppnIfCnPtName are required entries.
To delete a row, set the control field to delete.
Adding the first row for a connection network implicitly
creates the connection network and deleting the last
remaining row for a connection network implicitly removes
the connection network."
::= { nwAppnIfCn 1 }
nwAppnIfCnPortEntry OBJECT-TYPE
SYNTAX NwAppnIfCnPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Specifies the APPN Connection Network port definitions."
INDEX { nwAppnIfCnPtFqName, nwAppnIfCnPtName }
::= { nwAppnIfCnPortTable 1 }
NwAppnIfCnPortEntry ::=
SEQUENCE {
nwAppnIfCnPtFqName DisplayString,
nwAppnIfCnPtName DisplayString,
nwAppnIfCnPtControl INTEGER
}
nwAppnIfCnPtFqName OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the fully-qualified Name of the Virtual Routing Node.
The name format is NNNNNNNN.CCCCCCCC where NNNNNNNN is the
network identifier and CCCCCCCC is the Control Point name. Valid
characters to make up these two strings are uppercase letters
A through Z, numerics 0 through 9, and the special characters
$, @, and #. The first character of the name must NOT be
numeric. Each string must be a maximum length of 8 characters
with no embedded spaces and the strings are joined by a dot. "
::= { nwAppnIfCnPortEntry 1 }
nwAppnIfCnPtName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies one of the ports which can access this Connection
Network."
::= { nwAppnIfCnPortEntry 2 }
nwAppnIfCnPtControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set this object to delete to delete this port from this
Connection Network."
::= { nwAppnIfCnPortEntry 3 }
nwAppnIfCnTgCharTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnIfCnTgCharEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the APPN definitions for a Connection
Network's transmission group characteristics. Rows may be
neither added nor deleted, only modified. Rows are
added/deleted implicitly through CnPortTable."
::= { nwAppnIfCn 2 }
nwAppnIfCnTgCharEntry OBJECT-TYPE
SYNTAX NwAppnIfCnTgCharEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Specifies the APPN transmission group characteristics for
the Connection Network."
INDEX { nwAppnIfCnTgFqName }
::= { nwAppnIfCnTgCharTable 1 }
NwAppnIfCnTgCharEntry ::=
SEQUENCE {
nwAppnIfCnTgFqName DisplayString,
nwAppnIfCnTgEffectCap INTEGER,
nwAppnIfCnTgConnectCost INTEGER,
nwAppnIfCnTgByteCost INTEGER,
nwAppnIfCnTgSecurity INTEGER,
nwAppnIfCnTgPropDelay INTEGER,
nwAppnIfCnTgUsrDef1 INTEGER,
nwAppnIfCnTgUsrDef2 INTEGER,
nwAppnIfCnTgUsrDef3 INTEGER
}
nwAppnIfCnTgFqName OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the fully-qualified Name of the Virtual Routing Node.
The name format is NNNNNNNN.CCCCCCCC where NNNNNNNN is the
network identifier and CCCCCCCC is the Control Point name. Valid
characters to make up these two strings are uppercase letters
A through Z, numerics 0 through 9, and the special characters
#, $, and @. The first character of the name must NOT be
numeric. Each string must be a maximum length of 8 characters
with no embedded spaces and the strings are joined by a dot. "
::= { nwAppnIfCnTgCharEntry 1 }
nwAppnIfCnTgEffectCap OBJECT-TYPE
SYNTAX INTEGER (0..603979776)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the maximum kilo bits per second rate (link speed) for
the connection network. "
::= { nwAppnIfCnTgCharEntry 2 }
nwAppnIfCnTgConnectCost OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the cost per connect time for the Connection Network.
0 is the lowest cost and 255 is the largest cost."
::= { nwAppnIfCnTgCharEntry 3 }
nwAppnIfCnTgByteCost OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the cost per byte for the Connection Network.
0 is the lowest cost and 255 is the largest cost."
::= { nwAppnIfCnTgCharEntry 4 }
nwAppnIfCnTgSecurity OBJECT-TYPE
SYNTAX INTEGER { nonsecure(1), --X'01'
publicSwitchNw(32), --X'20'
undergroundCable(64), --X'40'
secureConduit(96), --X'60'
guardedConduit(128), --X'80'
encrypted(160), --X'A0'
guardedRadiation(192) --X'C0'
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"For the Connection Network, specify one of the following
security selections:
non-secure - specifies no security.
public switched - data flows over a public switched
network.
underground cable - data transmitted over a secure
underground cable.
secure conduit - line is secure conduit that is not
guarded.
guarded conduit - conduit that is protected against
physical tapping.
encrypted - encryption over the line.
guarded radiation - line is proected against physical
and radiation tapping. "
::= { nwAppnIfCnTgCharEntry 5 }
nwAppnIfCnTgPropDelay OBJECT-TYPE
SYNTAX INTEGER {
minimum(0), --X'00'
negligible(384), --X'4C'
terrestrial(9216), --X'71'
packetswitched(147456), --X'91'
long(294912), --X'99'
maximum(2013265920) --X'FF'
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the propagation delay which represents the time it
takes for a signal to travel the length of the link in
microseconds, with some of the more common default values
enumerated. The default times in parentheses are in microseconds.
These default values fall into the following ranges:
minimum - no propagation delay
negligible, lan - less than 480 microseconds
terrestrial, telephone - between 480 and 49,512
microseconds
packetswitched - between 49,512 and 245,760
microseconds
long, satellite - more than 245760 microseconds.
maximum - the maximum propagation delay. "
::= { nwAppnIfCnTgCharEntry 6 }
nwAppnIfCnTgUsrDef1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 1. "
DEFVAL { 128 }
::= { nwAppnIfCnTgCharEntry 7 }
nwAppnIfCnTgUsrDef2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 2. "
DEFVAL { 128 }
::= { nwAppnIfCnTgCharEntry 8 }
nwAppnIfCnTgUsrDef3 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 3. "
DEFVAL { 128 }
::= { nwAppnIfCnTgCharEntry 9 }
-- APPN Forwarding Ports Counter Table
-- This table contains the objects that specify the Message Unit (MU) and byte
-- counters for each port used by APPN Routing Services.
--
--
nwAppnFwdIfCtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnFwdIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the Message Unit (MU) and byte counters for
each port configured and enabled for APPN Routing Services. "
::= { nwAppnFwdIfCounters 1 }
nwAppnFwdIfCtrEntry OBJECT-TYPE
SYNTAX NwAppnFwdIfCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry indicates Message Units (MU) and byte counts on
the router port for which this entry exists."
INDEX { nwAppnFwdIfCtrIfIndex }
::= { nwAppnFwdIfCtrTable 1 }
NwAppnFwdIfCtrEntry ::=
SEQUENCE {
nwAppnFwdIfCtrIfIndex INTEGER,
nwAppnFwdIfCtrAdminStatus INTEGER,
nwAppnFwdIfCtrReset INTEGER,
nwAppnFwdIfCtrOperationalTime TimeTicks,
nwAppnFwdIfCtrInMus Counter,
nwAppnFwdIfCtrOutMus Counter,
nwAppnFwdIfCtrFwdMus Counter,
nwAppnFwdIfCtrFilteredMus Counter,
nwAppnFwdIfCtrDiscardMus Counter,
nwAppnFwdIfCtrAddrErrMus Counter,
nwAppnFwdIfCtrLenErrMus Counter,
nwAppnFwdIfCtrHdrErrMus Counter,
nwAppnFwdIfCtrInBytes Counter,
nwAppnFwdIfCtrOutBytes Counter,
nwAppnFwdIfCtrFwdBytes Counter,
nwAppnFwdIfCtrFilteredBytes Counter,
nwAppnFwdIfCtrDiscardBytes Counter,
nwAppnFwdIfCtrHostInMus Counter,
nwAppnFwdIfCtrHostOutMus Counter,
nwAppnFwdIfCtrHostDiscardMus Counter,
nwAppnFwdIfCtrHostInBytes Counter,
nwAppnFwdIfCtrHostOutBytes Counter,
nwAppnFwdIfCtrHostDiscardBytes Counter
}
nwAppnFwdIfCtrIfIndex 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. This is the primary
index into the APPN per-port counter table. "
::= { nwAppnFwdIfCtrEntry 1 }
nwAppnFwdIfCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the per-port Message Unit
(MU) 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."
::= { nwAppnFwdIfCtrEntry 2 }
nwAppnFwdIfCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the per-port Message Unit (MU) and byte counters on the
router port for which this entry exists. reset (2) resets the
counters to 0. nwAppnFwdIfCtrOperationalTime is also reset to 0."
::= { nwAppnFwdIfCtrEntry 3 }
nwAppnFwdIfCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the amount of time in hundreths of a second that the
per-port Message Unit (MU) and byte counters have been active on
the APPN routing services port for which this entry exists."
::= { nwAppnFwdIfCtrEntry 4 }
nwAppnFwdIfCtrInMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have been
received, during nwAppnFwdIfCtrOperationaltime on the router port
for which this entry exists."
::= { nwAppnFwdIfCtrEntry 5 }
nwAppnFwdIfCtrOutMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have been
transmitted, during nwAppnFwdIfCtrOperationalTime, on the router
port for which this entry exists."
::= { nwAppnFwdIfCtrEntry 6 }
nwAppnFwdIfCtrFwdMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MU)s that have
been forwarded during nwAppnFwdIfCtrOperationalTime on the router
port for which this entry exists."
::= { nwAppnFwdIfCtrEntry 7 }
nwAppnFwdIfCtrFilteredMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdIfCtrEntry 8 }
nwAppnFwdIfCtrDiscardMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdIfCtrEntry 9 }
nwAppnFwdIfCtrAddrErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that contain
an address error in the SNA header that have been received
during nwAppnFwdIfCtrOperationalTime on the router port for which
this entry exists."
::= { nwAppnFwdIfCtrEntry 10 }
nwAppnFwdIfCtrLenErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that contain
a length error that have been received during
nwAppnFwdIfCtrOperationalTime on the router port for which
this entry exists."
::= { nwAppnFwdIfCtrEntry 11 }
nwAppnFwdIfCtrHdrErrMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that contain
a header error other than an address or length error that have
been received during nwAppnFwdIfCtrOperationalTime on the router
port for which this entry exists."
::= { nwAppnFwdIfCtrEntry 12 }
nwAppnFwdIfCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the Message Units (MU)s
that have been received, during nwAppnFwdIfCtrOperationalTime,
on the router port for which the entry exists."
::= { nwAppnFwdIfCtrEntry 13 }
nwAppnFwdIfCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in the Message Units (MU)s
that have been transmitted, during nwAppnFwdIfCtrOperationalTime,
on the router port for which the entry exists."
::= { nwAppnFwdIfCtrEntry 14 }
nwAppnFwdIfCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MU)s that
have been forwarded during nwAppnFwdIfCtrOperationalTime on the
router port for which this entry exists."
::= { nwAppnFwdIfCtrEntry 15 }
nwAppnFwdIfCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdIfCtrEntry 16 }
nwAppnFwdIfCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdIfCtrEntry 17 }
nwAppnFwdIfCtrHostInMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been delivered to local half sessions during
nwAppnFwdIfCtrOperationalTime on the router port for which this
entry exists."
::= { nwAppnFwdIfCtrEntry 18 }
nwAppnFwdIfCtrHostOutMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of Message Units (MUs) that have
been successfully sent from local half sessions to Path Control
during nwAppnFwdIfCtrOperationalTime on the router port for
which this entry exists."
::= { nwAppnFwdIfCtrEntry 19 }
nwAppnFwdIfCtrHostDiscardMus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdIfCtrEntry 20 }
nwAppnFwdIfCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs)
that have been delivered to local half sessions during
nwAppnFwdIfCtrOperationalTime on the router port for which this
entry exists."
::= { nwAppnFwdIfCtrEntry 21 }
nwAppnFwdIfCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the total number of bytes in Message Units (MUs) that
have been successfully sent from local half sessions to Path
Control during nwAppnFwdIfCtrOperationalTime on the router port
for which this entry exists."
::= { nwAppnFwdIfCtrEntry 22 }
nwAppnFwdIfCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdIfCtrEntry 23 }
-- APPN Forwarding Adjacent Link Station Table
-- This table contains the managed objects used to set up and configure
-- links to adjacent link stations. Only those links that are configured by the
-- user can be modified. Links which are active cannot be modified.
-- If an attempt is made to modify an active link, the operational status
-- will indicate busy-failed.
nwAppnFwdLsTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnFwdLsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the configuration and management
information for links to adjacent link stations. This table is
indexed by nwAppnFwdLsName. Operations which apply are add,
delete, modify, enable, and disable. To add a row to the
table, the required fields in the row must be provided.
The required fields are nwAppnFwdLsPortName and
nwAppnFwdLsDestAddr. All other fields which are not provided
will be defaulted. To enable a link select enable(3) from
nwAppnFwdLsAdminStatus. To delete a row, set nwAppnFwdLsControl
to delete(3). To disable a link set nwAppnFwdLsStopType and
then select disable(2) in nwAppnFwdLsAdminStatus.
If nwAppnFwdLsStopType is not selected, the link is disabled in
an orderly fashion. "
::= { nwAppnFwdLsConfig 1 }
nwAppnFwdLsEntry OBJECT-TYPE
SYNTAX NwAppnFwdLsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Specifies the configuration for a link to an adjacent link
station for which the entry exists."
INDEX { nwAppnFwdLsName }
::= { nwAppnFwdLsTable 1 }
NwAppnFwdLsEntry ::=
SEQUENCE {
nwAppnFwdLsName DisplayString,
nwAppnFwdLsAdminStatus INTEGER,
nwAppnFwdLsOperStatus INTEGER,
nwAppnFwdLsOperationalTime TimeTicks,
nwAppnFwdLsControl INTEGER,
nwAppnFwdLsPortName DisplayString,
nwAppnFwdLsAdjCpName DisplayString,
nwAppnFwdLsAdjCpType INTEGER,
nwAppnFwdLsAutoActSupport INTEGER,
nwAppnFwdLsLimitedRsrc INTEGER,
nwAppnFwdLsSscpSession INTEGER,
nwAppnFwdLsPuName DisplayString,
nwAppnFwdLsBackLvlLenEN INTEGER,
nwAppnFwdLsCpCpSessSupp INTEGER,
nwAppnFwdLsEffectCap INTEGER,
nwAppnFwdLsConnectCost INTEGER,
nwAppnFwdLsByteCost INTEGER,
nwAppnFwdLsSecurity INTEGER,
nwAppnFwdLsPropDelay INTEGER,
nwAppnFwdLsUsrDef1 INTEGER,
nwAppnFwdLsUsrDef2 INTEGER,
nwAppnFwdLsUsrDef3 INTEGER,
nwAppnFwdLsTrgtPacingCount INTEGER,
nwAppnFwdLsMaxSendBtu INTEGER,
nwAppnFwdLsNumActiveSession INTEGER,
nwAppnFwdLsdynamicLs INTEGER,
nwAppnFwdLsStopType INTEGER,
nwAppnFwdLsPortNbr INTEGER,
nwAppnFwdLsDestAddr OCTET STRING,
nwAppnFwdLsDsap OCTET STRING,
nwAppnFwdLsBlockNum DisplayString,
nwAppnFwdLsIdNum DisplayString
}
nwAppnFwdLsName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the primary index to the adjacent link station table
(nwAppnFwdLsTable). "
::= { nwAppnFwdLsEntry 1 }
nwAppnFwdLsAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disable(2),
enable(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of a link to an adjacent
link station. enabled(3) causes the link to become established.
disable(2) causes the link to terminate. There are various
severities of disabling a link which are selected via the leaf
node nwAppnFwdLsStopType described further within this branch. "
::= { nwAppnFwdLsEntry 2 }
nwAppnFwdLsOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- inactive
enabled(3), -- active
pendingDisable(4), -- deactivate in progress
pendingEnable(5) -- activate in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the current operating status of the link for which this
entry exists."
::= { nwAppnFwdLsEntry 3 }
nwAppnFwdLsOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the elapsed time, in hundredths of a second, that
nwAppnFwdLsAdminStatus has been either enabled or DISABLED.
If the operational state is pending-disable,
nwAppnFwdLsOperationalTime indicates the amount of time since
the state was enabled. If the operational state is pending-enable,
nwAppnFwdLsOperationalTime indicates the amount of time since the
state was DISABLED."
::= { nwAppnFwdLsEntry 4 }
nwAppnFwdLsControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set this object to delete in order to delete the entry."
::= { nwAppnFwdLsEntry 5 }
nwAppnFwdLsPortName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This link station port name corresponds to the port name
index into the the nwAppnExtensionTable which describes the
router port on which the adjacent link station is defined."
::= { nwAppnFwdLsEntry 6 }
nwAppnFwdLsAdjCpName OBJECT-TYPE
SYNTAX DisplayString (SIZE (3..17))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the fully-qualified, 17 byte long, adjacent Control
Point name. The name format is NNNNNNNN.CCCCCCCC where NNNNNNNN
is the network identifier and CCCCCCCC is the Control Point name.
Valid characters to make up these two strings are uppercase
letters A through Z, numerics 0 through 9, and the special
characters $, # and @. The first character of the name must NOT
be numeric. Each string must be a maximum length of 8 characters
with no embedded spaces and the strings are joined by a dot. "
::= { nwAppnFwdLsEntry 7 }
nwAppnFwdLsAdjCpType OBJECT-TYPE
SYNTAX INTEGER { endnode(1), networknode(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the adjacent node type. The following values are
valid: endnode(1), networknode(2). endnode(1) includes both
End Node and LEN node types."
DEFVAL { endnode }
::= { nwAppnFwdLsEntry 8 }
nwAppnFwdLsAutoActSupport OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether the link is automatically enabled when
a session is activated over the link. It is an error to set
this to yes(1) when nwAppnFwdLsCpCpSessSupp is set to yes(1). "
DEFVAL { no }
::= { nwAppnFwdLsEntry 10 }
nwAppnFwdLsLimitedRsrc OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether this link is to be deactivated when
there are no sessions using the link. If
nwAppnFwdLsCpCpSessSupp is yes, however, the link will
not be deactivated if CP-CP sessions are terminated.
Note also that a link over a non-switched port cannot
be configured as a limited resource."
DEFVAL { no }
::= { nwAppnFwdLsEntry 11 }
nwAppnFwdLsSscpSession OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Requests a host system to initiate sessions between its SSCP and
dependent LUs within APPN Routing Services. If set to yes,
then nwAppnFwdLsPuName is required. Note: once this parameter
is set along with other link station parameters associated with
a link station definition, it cannot be modified. In order to
change it, the link station definition itself must be deleted and
then redefined with the new parameter."
DEFVAL { no }
::= { nwAppnFwdLsEntry 12 }
nwAppnFwdLsPuName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the name of the local PU if nwAppnFwdLsSscpSession is
set to yes. Valid characters are uppercase A through Z and
numerics 0 through 9. The name must start with an alphabetic
character. Note: once this parameter is set along with other
link station parameters associated with a link station definition,
it cannot be modified. In order to change it, the link station
definition itself must be deleted and then redefined with the new
parameter."
::= { nwAppnFwdLsEntry 13 }
nwAppnFwdLsBackLvlLenEN OBJECT-TYPE
SYNTAX INTEGER { no(1), xid3(2), xid0(3), noxid(4) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether or not the adjacent node is a back level
LEN Node. If so, specify the type of back level LEN node as
follows:
xid3(2) - supports XID-3 protocols, but does not include
Network Name control vector in the XID.
xid0(3) - Supports XID-0 protocols. Not valid if
nwAppnExtIfLocalLsRole is negotiable(1).
noxid(4) - Does not support XID protocols. Valid only if
nwAppnExtIfPortType is nonswitched(1) and not
valid if nwAppnExtIfLocalLsRole is negotiable(1).
If not no(1), then nwAppnFwdLsAdjCpName and nwAppnFwdLsIdNum
must be specified. "
DEFVAL { no }
::= { nwAppnFwdLsEntry 14 }
nwAppnFwdLsCpCpSessSupp OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies whether this link supports CP to CP sessions."
DEFVAL { yes }
::= { nwAppnFwdLsEntry 16 }
nwAppnFwdLsEffectCap OBJECT-TYPE
SYNTAX INTEGER (0..603979776)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies th maximum kilo bits per second rate (link speed)
for the link. "
::= { nwAppnFwdLsEntry 17 }
nwAppnFwdLsConnectCost OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the cost per connect time for the link. Zero is the
lowest cost and 255 is the largest cost."
::= { nwAppnFwdLsEntry 18 }
nwAppnFwdLsByteCost OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the cost per Byte for the link. Zero is the lowest
cost and 255 is the largest cost."
::= { nwAppnFwdLsEntry 19 }
nwAppnFwdLsSecurity OBJECT-TYPE
SYNTAX INTEGER { nonsecure(1), --X'01'
publicSwitchNw(32), --X'20'
undergroundCable(64), --X'40'
secureConduit(96), --X'60'
guardedConduit(128), --X'80'
encrypted(160), --X'A0'
guardedRadiation(192) --X'C0'
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Security selections available for the link are as follows:
non-secure - specifies no security.
public switched - data flows over a public switched
network.
underground cable - data transmitted over a secure
underground cable.
secure conduit - line is secure conduit that is not
guarded.
guarded conduit - conduit that is protected against
physical tapping.
encrypted - encryption over the line.
guarded radiation - line is proected against physical
and radiation tapping. "
::= { nwAppnFwdLsEntry 20 }
nwAppnFwdLsPropDelay OBJECT-TYPE
SYNTAX INTEGER {
minimum(0), --X'00'
negligible(384), --X'4C'
terrestrial(9216), --X'71'
packetswitched(147456), --X'91'
long(294912), --X'99'
maximum(2013265920) --X'FF'
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the propagation delay which represents the relative
time it takes for a signal to travel the length of the link in
microseconds, with some of the more common default values
enumerated. The default times in parentheses are in microseconds.
These default values fall into the following ranges:
minimum - no propagation delay
negligible, lan - less than 480 microseconds
terrestrial, telephone - between 480 and 49,512
microseconds
packetswitched - between 49,512 and 245,760
microseconds
long, satellite - more than 245760 microseconds.
maximum - the maximum propagation delay. "
::= { nwAppnFwdLsEntry 21 }
nwAppnFwdLsUsrDef1 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 1. "
DEFVAL { 128 }
::= { nwAppnFwdLsEntry 22 }
nwAppnFwdLsUsrDef2 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 2. "
DEFVAL { 128 }
::= { nwAppnFwdLsEntry 23 }
nwAppnFwdLsUsrDef3 OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies user defined parameter 3. "
DEFVAL { 128 }
::= { nwAppnFwdLsEntry 24 }
nwAppnFwdLsTrgtPacingCount OBJECT-TYPE
SYNTAX INTEGER (0..32767)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Species the desired pacing window size for BINDs on this
transmission group. The number is a value between 0 and 32767
and is significant only when fixed bind pacing is being used."
DEFVAL { 7 }
::= { nwAppnFwdLsEntry 25 }
nwAppnFwdLsMaxSendBtu OBJECT-TYPE
SYNTAX INTEGER (99..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies maximum Message Unit (MU) size that can be sent."
DEFVAL { 2048 }
::= { nwAppnFwdLsEntry 26 }
nwAppnFwdLsNumActiveSession OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies total number of active sessions on this link.
This includes both end point sessions and intermediate sessions."
::= { nwAppnFwdLsEntry 27 }
nwAppnFwdLsdynamicLs OBJECT-TYPE
SYNTAX INTEGER { yes(1), no(2) }
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies whether this link station was dynamically
allocated (yes(1)) or whether the link station was defined by
the user (no(2))."
::= { nwAppnFwdLsEntry 28 }
nwAppnFwdLsStopType OBJECT-TYPE
SYNTAX INTEGER {
immediate(1),
orderly(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the type of shutdown for a link. Once selected,
set disable in nwAppnFwdIfAdminStatus. The shutdown choices are
as follows:
immediate(1) causes the link station to disconnect
immediately without flushing remaining Message Unit (MU)s.
orderly(2) causes the link station to disconnect
after successfully flushing remaining Message Unit (MU)s. "
DEFVAL { orderly }
::= { nwAppnFwdLsEntry 29 }
nwAppnFwdLsPortNbr OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This link station port number corresponds to the index into
the nwAppnFwdIfTable and the nwAppnExtensionTable, which
together describe the port used by APPN Routing Services."
::= { nwAppnFwdLsEntry 30 }
nwAppnFwdLsDestAddr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Specifies the destination address of the adjacent link station
depending on the media type. For token ring or ethernet ports,
the information is the 6 byte Destination MAC Address which
starts in byte 1 and ends in byte 6. For token ring ports,
the MAC address must be specified in non-canonical format.
For ethernet ports the MAC address must be specified in
canonical format. For frame relay, the address is a non-null
terminated string which is the ascii representation of the DLCI."
::= { nwAppnFwdLsEntry 31 }
nwAppnFwdLsDsap OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"For a token ring or ethernet network, specifies the destination
SAP address associated with the adjacent link station. "
DEFVAL { '04'h }
::= { nwAppnFwdLsEntry 32 }
nwAppnFwdLsBlockNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(3))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the 3 hexadecimal digit block number which
precedes the 5 digit id number in the 8 digit node id of the
adjacent node. The node id is used in XIDs and Alerts. The
block number identifies the product type. Both the block number
and id number combined, uniquely identify the adjacent node
within the installation network."
::= { nwAppnFwdLsEntry 33 }
nwAppnFwdLsIdNum OBJECT-TYPE
SYNTAX DisplayString (SIZE(5))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This represents the 5 hexadecimal digit id number which follows
the 3 digit block number in the 8 digit node id of the adjacent
node. The node id is used in XIDs and Alerts. The id number
uniquely identifies the adjacent node within a product type
indicated by its block number. Both the block number and id number
combined, uniquely identify the adjacent node within the
installation network."
::= { nwAppnFwdLsEntry 34 }
-- APPN Forwarding Link Station Counter Table
-- APPN Forwarding link station Counter Table
-- This table contains the objects that specify Basic Link Unit (BLU) and
-- byte counters for each configured adjacent link station.
--
nwAppnFwdLsCtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnFwdLsCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains the Basic Link Unit (BLU) and byte
counters for each configured adjacent link station."
::= { nwAppnFwdLsCounters 1 }
nwAppnFwdLsCtrEntry OBJECT-TYPE
SYNTAX NwAppnFwdLsCtrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry indicates the Basic Link Unit (BLU) and byte
count for the configured adjacent link station for which the
entry exists. "
INDEX { nwAppnFwdLsCtrLsName }
::= { nwAppnFwdLsCtrTable 1 }
NwAppnFwdLsCtrEntry ::=
SEQUENCE {
nwAppnFwdLsCtrLsName DisplayString,
nwAppnFwdLsCtrAdminStatus INTEGER,
nwAppnFwdLsCtrReset INTEGER,
nwAppnFwdLsCtrOperationalTime TimeTicks,
nwAppnFwdLsCtrInBlus Counter,
nwAppnFwdLsCtrOutBlus Counter,
nwAppnFwdLsCtrFwdBlus Counter,
nwAppnFwdLsCtrFilteredBlus Counter,
nwAppnFwdLsCtrDiscardBlus Counter,
nwAppnFwdLsCtrAddrErrBlus Counter,
nwAppnFwdLsCtrLenErrBlus Counter,
nwAppnFwdLsCtrHdrErrBlus Counter,
nwAppnFwdLsCtrInBytes Counter,
nwAppnFwdLsCtrOutBytes Counter,
nwAppnFwdLsCtrFwdBytes Counter,
nwAppnFwdLsCtrFilteredBytes Counter,
nwAppnFwdLsCtrDiscardBytes Counter,
nwAppnFwdLsCtrHostInBlus Counter,
nwAppnFwdLsCtrHostOutBlus Counter,
nwAppnFwdLsCtrHostDiscardBlus Counter,
nwAppnFwdLsCtrHostInBytes Counter,
nwAppnFwdLsCtrHostOutBytes Counter,
nwAppnFwdLsCtrHostDiscardBytes Counter
}
nwAppnFwdLsCtrLsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the primary index into the link station
counter table. This index is the link station name. "
::= { nwAppnFwdLsCtrEntry 1 }
nwAppnFwdLsCtrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Sets the administrative state of the Basic Link Unit (BLU)
and byte counters on the link for which this entry exists.
enabled(3) causes these counters to reset and become active.
disabled(2) causes these counters to become inactive. "
::= { nwAppnFwdLsCtrEntry 2 }
nwAppnFwdLsCtrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
reset(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Resets the Basic Link Unit (BLU) and byte counters on the link
for which this entry exists. reset(2) resets the counters to 0.
nwAppnFwdLsCtrOperationalTime is also reset to 0."
::= { nwAppnFwdLsCtrEntry 3 }
nwAppnFwdLsCtrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the amount of time in hundreths of a second that the
Basic Link Unit (BLU) and byte counters have been active on the
link for which this entry exists."
::= { nwAppnFwdLsCtrEntry 4 }
nwAppnFwdLsCtrInBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the total number of Basic Link Unit (BLU)s that have
been received, during nwAppnFwdLsCtrOperationaltime, on the link
for which this entry exists. This includes both information
(I-frame) and XID BLUs."
::= { nwAppnFwdLsCtrEntry 5 }
nwAppnFwdLsCtrOutBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the total number of Basic Link Unit (BLU)s that have
been transmitted, during nwAppnFwdLsCtrOperationalTime, on the
link for which this entry exists. This includes both information
(I-frame) and XID BLUs."
::= { nwAppnFwdLsCtrEntry 6 }
nwAppnFwdLsCtrFwdBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 7 }
nwAppnFwdLsCtrFilteredBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 8 }
nwAppnFwdLsCtrDiscardBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 9 }
nwAppnFwdLsCtrAddrErrBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 10 }
nwAppnFwdLsCtrLenErrBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the total number of received Basic Link Unit (BLU)s
during nwAppnFwdLsCtrOperationalTime which have invalid DLC
headers on the link for which this entry exists."
::= { nwAppnFwdLsCtrEntry 11 }
nwAppnFwdLsCtrHdrErrBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the total number of received Basic Link Unit (BLU)s
during nwAppnFwdLsCtrOperationalTime which have length errors
on the link for which this entry exists."
::= { nwAppnFwdLsCtrEntry 12 }
nwAppnFwdLsCtrInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the total number of bytes that have been received,
during nwAppnFwdLsCtrOperationalTime, on the link for which
the entry exists. This includes bytes contained in
information (I-frames) and XID BLUs."
::= { nwAppnFwdLsCtrEntry 13 }
nwAppnFwdLsCtrOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the total number of bytes that have been transmitted,
during nwAppnFwdLsCtrOperationalTime, on the link for which the
entry exists. This includes bytes contained in information
(I-frames) and XID BLUs."
::= { nwAppnFwdLsCtrEntry 14 }
nwAppnFwdLsCtrFwdBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 15 }
nwAppnFwdLsCtrFilteredBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 16 }
nwAppnFwdLsCtrDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 17 }
nwAppnFwdLsCtrHostInBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 18 }
nwAppnFwdLsCtrHostOutBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 19 }
nwAppnFwdLsCtrHostDiscardBlus OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 20 }
nwAppnFwdLsCtrHostInBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 21 }
nwAppnFwdLsCtrHostOutBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 22 }
nwAppnFwdLsCtrHostDiscardBytes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnFwdLsCtrEntry 23 }
-- Link State-Based Protocols
-- This group contains the managed objects for Link State protocols for
-- APPN Routing Services.
-- APPN ISR System Group
-- This group contains the managed objects for global, system-wide
-- APPN Intermediate Session Routing (ISR) LinkState based routing protocol.
-- APPN ISR System Configuration Parameters
-- This group contains the objects that pertain to the setup and
-- configuration of the APPN ISR LinkState based routing protocol.
-- Link State-Based Protocols
-- This group contains the objects that apply to the Link State based routing
-- protocols supported by APPN Routing Services.
-- APPN ISR System Group
-- This group contains the objects that pertain to the APPN Intermediate Session
-- Routing (ISR) LinkState-based routing protocol at a system-wide, global level.
-- APPN ISR System Configuration Parameters
-- This group contains the objects that pertain to the setup and configuration
-- of the APPN ISR Link State based routing protocol at a system-wide, global level.
nwAppnIsrAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disable(2), -- disable
enable(3) -- enable
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Intermediate Session Routing cannot be turned on and
off. Any modifications to this leaf will have no
affect. "
::= { nwAppnIsrConfig 1 }
nwAppnIsrOperStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
disabled(2), -- inactive
enabled(3), -- active
pendingDisable(4), -- deactivate in progress
pendingEnable(5) -- activate in progress
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the current operating condition of the ISR routing
protocol, system-wide."
::= { nwAppnIsrConfig 2 }
nwAppnIsrAdminReset OBJECT-TYPE
SYNTAX INTEGER {
other(1) -- none of the following
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object does not apply to this protocol. It is a common
object, inherited from the MIB framework used to provide a
common management interface to all the Cabletron Routing Services
protocol-specific MIBs."
::= { nwAppnIsrConfig 3 }
nwAppnIsrOperationalTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the elapsed time, in hundredths of a second, that
nwAppnOperStatus has been in its current state."
::= { nwAppnIsrConfig 4 }
nwAppnIsrVersion OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates the current revision level of the ISR firmware in
textual format. This is the same version number as that of APPN
Routing Services firmware, nwAppnSysVersion. "
::= { nwAppnIsrConfig 5 }
-- APPN Event Group
nwAppnEventAdminStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Set the administrative state of APPN Routing Services event
logging. enabled(3) causes the event log to become active.
disabled(2) causes the event log to become inactive."
::= { nwAppnEventLogConfig 1 }
nwAppnEventMaxEntries 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
nwAppnEventMaxEntries the first (oldest) entry is deleted
to allow a new entry to be added."
::= { nwAppnEventLogConfig 2 }
nwAppnEventTraceAll 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 ports.
disabled(2) causes the filter table to specify which events to
log."
::= { nwAppnEventLogConfig 3 }
-- Event Log Filter Table
-- The Event Log Filter Table contains the managed objects used to setup
-- and configure event log filters for APPN Routing Services events.
nwAppnEventFilterTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnEventFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains descriptions of how to filter log entries."
::= { nwAppnEventLogFilterTable 1 }
nwAppnEventFilterEntry OBJECT-TYPE
SYNTAX NwAppnEventFilterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies the filter for log entries. The
instance nwAppnEventProtocol refers to the instance used
in the nwRtgProtocolTable and nwComponentTable specified
by the ctrouter-mib.txt. "
INDEX { nwAppnEventFltrProtocol, nwAppnEventFltrIfNum }
::= { nwAppnEventFilterTable 1 }
NwAppnEventFilterEntry ::=
SEQUENCE {
nwAppnEventFltrProtocol INTEGER,
nwAppnEventFltrIfNum INTEGER,
nwAppnEventFltrControl INTEGER,
nwAppnEventFltrType INTEGER,
nwAppnEventFltrSeverity INTEGER,
nwAppnEventFltrAction INTEGER
}
nwAppnEventFltrProtocol OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Selects the protocol to log events from."
::= { nwAppnEventFilterEntry 1 }
nwAppnEventFltrIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the APPN Routing Services port on which to log events. "
::= { nwAppnEventFilterEntry 2 }
nwAppnEventFltrControl OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2),
add(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this field to delete will allow entries to be
removed from the table. This is done by adding new entries
with instance fields that match the entry to be removed from
the table. The new entry being added must have this control
field set to delete in order for the matching entry already
in the table to be deleted. Setting this field to add will
add the entry to the table."
::= { nwAppnEventFilterEntry 3 }
nwAppnEventFltrType OBJECT-TYPE
SYNTAX INTEGER {
misc(1),
timer(2),
rcv(4),
xmit(8),
event(16),
error(32)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This bit field mask filter will allow only events of
certain types to be logged. By default all types will be
logged. Clearing event types from this field will cause
those types not to be logged. Adding event types to this
field will enable those types to be logged. "
::= { nwAppnEventFilterEntry 4 }
nwAppnEventFltrSeverity OBJECT-TYPE
SYNTAX INTEGER {
highest(1),
highmed(2),
highlow(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This filter controls the amount of logging by ignoring events
of lower priority than that specified by the filter value.
Specifying highest(1) causes all events except those of highest
severity to be ignored. Specifying highmed(2) causes lowest
severity events to be ignored. Specifying highlow(3) causes
all events to be logged. highmed(2) is the default setting."
::= { nwAppnEventFilterEntry 5 }
nwAppnEventFltrAction OBJECT-TYPE
SYNTAX INTEGER {
log(1),
trap(2),
logTrap(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This field specifies how the events are to be logged.
Specifying log(1) stores the events in the event log
table (defined below). Specifying trap(2) sends events
out through the trap mechanism. Specifying logTrap(3)
does both. "
::= { nwAppnEventFilterEntry 6 }
-- Event Log Table
-- The Event Log Table contains the logged events.
nwAppnEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF NwAppnEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This table contains all events that have been logged."
::= { nwAppnEventLogTable 1 }
nwAppnEventEntry OBJECT-TYPE
SYNTAX NwAppnEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry specifies events that have been logged."
INDEX { nwAppnEventNumber }
::= { nwAppnEventTable 1 }
NwAppnEventEntry ::=
SEQUENCE {
nwAppnEventNumber INTEGER,
nwAppnEventTime TimeTicks,
nwAppnEventType INTEGER,
nwAppnEventSeverity INTEGER,
nwAppnEventProtocol INTEGER,
nwAppnEventIfNum INTEGER,
nwAppnEventTextString OCTET STRING
}
nwAppnEventNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This ordinal number uniquely identifies events."
::= { nwAppnEventEntry 1 }
nwAppnEventTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This number specifies when the event was logged."
::= { nwAppnEventEntry 2 }
nwAppnEventType OBJECT-TYPE
SYNTAX INTEGER {
misc(1),
timer(2),
rcv(4),
xmit(8),
event(16),
diags(32),
error(64)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies type of event logged."
::= { nwAppnEventEntry 3 }
nwAppnEventSeverity OBJECT-TYPE
SYNTAX INTEGER {
highest(1),
highmed(2),
highlow(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the severity of the event logged."
::= { nwAppnEventEntry 4 }
nwAppnEventProtocol OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the protocol where the event occured."
::= { nwAppnEventEntry 5 }
nwAppnEventIfNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the APPN Routing Services port the event occurred on."
::= { nwAppnEventEntry 6 }
nwAppnEventTextString OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies the actual text string to be logged."
::= { nwAppnEventEntry 7 }
END
|