1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
|
Network Working Group S. Waldbusser
Request for Comments: 1742 Carnegie Mellon University
Obsoletes: 1243 K. Frisa
Category: Standards Track FORE Systems, Inc.
January 1995
AppleTalk Management Information Base II
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Abstract
This memo defines a portion of the Management Information Base (MIB)
for use with network management protocols in TCP/IP-based internets.
In particular, it defines objects for managing AppleTalk networks.
RFC 1243 defines a set of MIB objects for managing the lower layers
of the AppleTalk protocol stack, up to the Network layer. This memo
defines additional objects that exist in the AppleTalk portion of the
MIB. These objects provide for the management of the transport and
session layers of the AppleTalk protocol stack, as well as extensions
to the lower layers. This is achieved in an upwardly-compatable
fashion.
Table of Contents
1. The Network Management Framework ...................... 2
2. Additions and Changes ................................. 3
2.1 New Groups ........................................... 3
2.2 Additional Variables ................................. 3
2.2.1 AARP Additions ..................................... 3
2.2.2 ATPort Additions ................................... 3
2.2.3 DDP Addition ....................................... 3
2.2.4 RTMP Additions ..................................... 4
2.2.5 KIP Addition ....................................... 4
2.2.6 ZIP Additions ...................................... 4
2.2.7 NBP Additions ...................................... 4
2.2.8 ATEcho Additions ................................... 4
2.3 Deprecations ......................................... 4
2.4 Changes .............................................. 5
3. Objects ............................................... 6
Waldbusser & Frisa [Page 1]
^L
RFC 1742 AppleTalk MIB II January 1995
3.1 Format of Definitions ................................ 6
4. Overview .............................................. 6
4.1 Structure of MIB ..................................... 7
4.2 The LocalTalk Link Access Protocol Group ............. 7
4.3 The AppleTalk Address Resolution Protocol Group ...... 7
4.4 The AppleTalk Port Group ............................. 8
4.5 The Datagram Delivery Protocol Group ................. 8
4.6 The Datagram Delivery Protocol Router Group .......... 8
4.7 The Routing Table Maintenance Protocol Group ......... 8
4.8 The Routing Table Maintenance Protocol Stub Group .... 8
4.9 The Kinetics Internet Protocol Group ................. 8
4.10 The Zone Information Protocol Router Group .......... 9
4.11 The Zone Information Protocol End Node Group ........ 9
4.12 The Name Binding Protocol Group ..................... 9
4.13 The AppleTalk Echo Protocol Group ................... 9
4.14 The AppleTalk Transaction Protocol Group ............ 9
4.15 The Printer Access Protocol Group ................... 9
4.16 The AppleTalk Session Protocol Group ................ 9
4.17 The AppleTalk Data Stream Protocol Group ............ 10
4.18 The AppleTalk Port Point to Point Group ............. 10
4.19 The Per Port Counters Group ......................... 10
4.20 Textual Conventions ................................. 10
5. Definitions ........................................... 11
6. Acknowledgmnts ........................................ 82
7. References ............................................ 83
8. Security Considerations ............................... 84
9. Authors' Addresses .................................... 84
1. The Network Management Framework
The Internet-standard Network Management Framework consists of three
components. They are:
STD 16/RFC 1155 which defines the SMI, the mechanisms used for
describing and naming objects for the purpose of management.
STD 16/RFC 1212 defines a more concise description mechanism,
which is wholly consistent with the SMI.
RFC 1156 which defines MIB-I, the core set of managed objects for
the Internet suite of protocols. STD 17/RFC 1213 defines MIB-
II, an evolution of MIB-I based on implementation experience
and new operational requirements.
STD 15/RFC 1157 which defines the SNMP, the protocol used for
network access to managed objects.
Waldbusser & Frisa [Page 2]
^L
RFC 1742 AppleTalk MIB II January 1995
The Framework permits new objects to be defined for the purpose of
experimentation and evaluation.
2. Additions and Changes
This MIB includes additions and changes to RFC 1243. These changes
are outlined in the following sections.
2.1. New Groups
The following groups are introduced in this MIB:
- DDP Router
- RTMP Stub
- ZIP Router
- ATP
- PAP
- ASP
- ADSP
- ATPortPtoP
- Per Port Counters
2.2. Additional Variables
Many variables, mostly counters, were added to groups that existed in
RFC 1243. These variables are listed in the following sections.
2.2.1. AARP Additions
aarpStatus
aarpLookups
aarpHits
2.2.2. ATPort Additions
atportNetFrom
atportZoneFrom
atportInPkts
atportOutPkts
atportHome
atportCurrentZone
atportConflictPhysAddr
atportZoneTable
2.2.3. DDP Addition
ddpListenerTable
Waldbusser & Frisa [Page 3]
^L
RFC 1742 AppleTalk MIB II January 1995
2.2.4. RTMP Additions
rtmpInDataPkts
rtmpOutDataPkts
rtmpInRequestPkts
rtmpNextIREqualChanges
rtmpNextIRLessChanges
rtmpRouteDeletes
rtmpRoutingTableOverflows
2.2.5. KIP Addition
kipFrom
2.2.6. ZIP Additions
zipNetInfoTable
zipInErrors
2.2.7. NBP Additions
nbpAddress
nbpSocket
nbpEnumerator
nbpInLookUpRequests
nbpInLookUpReplies
nbpInBroadcastRequests
nbpInForwardRequests
nbpOutLookUpReplies
nbpRegistrationFailures
nbpInErrors
2.2.8. ATEcho Additions
atechoOutRequests
atechoInReplies
2.3. Deprecations
The following variables have been deprecated in this version of the
MIB:
llapInPkts
llapOutPkts
llapInNoHandlers
llapInErrors
Waldbusser & Frisa [Page 4]
^L
RFC 1742 AppleTalk MIB II January 1995
These llap variables were duplicated in the interfaces table of MIB-
II.
2.4. Changes
The IMPORTS list has been updated to reflect the current SNMP
documents.
New textual conventions have been defined.
Hyphens have been removed from enumeration strings.
Variables used as INDEXes to new tables have ACCESS not-accessible.
This is because the values of the INDEX variables are contained in
the object identifier for any of the other variables in the table;
therefore, it does not need to be explicitly available as data.
The atportNetConfig and atportZoneConfig variables have been changed
from read-only to read-write.
The atportZone variable has be renamed to atportZoneDefault, and its
DESCRIPTION clause has been clarified.
The atportType, atportStatus, and kipType variables have had more
values added to their enumeration lists.
The DDP group has been split into two groups; one includes variables
that any AppleTalk node would implement and the other includes
variables only a router would implement.
The rtmpState variable now includes another enumeration, invalid(5),
which is used when deleting rows.
The variables rtmpRangeStart, rtmpRangeEnd, rtmpNextHop, rtmpType,
rtmpPort, and rtmpHops have been changed from read-write to read-
only.
The ZIP Group has been renamed the ZIP End Node Group.
The DESCRIPTION clause for zipZoneIndex has been clarified.
The variables zipZoneName, zipZoneNetStart, and zipZoneNetEnd have
been changed from read-write to read-only.
The nbpIndex variable has been changed from read-only to read-write.
The nbpObject, nbpType, and nbpZone variables now suggest that the
agent reregister its service when any of these variables is changed.
Waldbusser & Frisa [Page 5]
^L
RFC 1742 AppleTalk MIB II January 1995
The nbpState variable includes new enumerations.
3. Objects
Managed objects are accessed via a virtual information store, termed
the Management Information Base or MIB. Objects in the MIB are
defined using the subset of Abstract Syntax Notation One (ASN.1) [7]
defined in the SMI. In particular, each object has a name, a syntax,
and an encoding. The name is an object identifier, an
administratively assigned name, which specifies an object type. The
object type together with an object instance serves to uniquely
identify a specific instantiation of the object. For human
convenience, we often use a textual string, termed the OBJECT
DESCRIPTOR, to also refer to the object type.
The syntax of an object type defines the abstract data structure
corresponding to that object type. The ASN.1 language is used for
this purpose. However, the SMI [3] purposely restricts the ASN.1
constructs which may be used. These restrictions are explicitly made
for simplicity.
The encoding of an object type is simply how that object type is
represented using the object type's syntax. Implicitly tied to the
notion of an object type's syntax and encoding is how the object type
is represented when being transmitted on the network.
The SMI specifies the use of the basic encoding rules of ASN.1 [8],
subject to the additional requirements imposed by the SNMP.
3.1. Format of Definitions
Section 5 contains the specification of all object types contained in
this MIB module. The object types are defined using the conventions
defined in the SMI, as amended by the extensions specified in [9].
4. Overview
AppleTalk is a protocol suite which features an open peer-to-peer
architecture that runs over a variety of transmission media.
AppleTalk is defined in [10]. This protocol suite interoperates with
the IP protocol suite through various encapsulation methods. As
large AppleTalk networks are built that coexist with large IP
networks, a method to manage the AppleTalk networks with SNMP becomes
necessary. This MIB defines managed objects to be used for managing
AppleTalk networks.
Waldbusser & Frisa [Page 6]
^L
RFC 1742 AppleTalk MIB II January 1995
4.1. Structure of MIB
The objects are arranged into the following groups:
- LLAP
- AARP
- ATPort
- DDP
- DDP Router
- RTMP
- RTMP Stub
- KIP
- ZIP Router
- ZIP End Node
- NBP
- ATEcho
- ATP
- PAP
- ASP
- ADSP
- ATPortPtoP
- Per Port Counters
These groups are the basic unit of conformance. If the semantics of a
group is applicable to an implementation, then it must implement all
objects in that group. For example, a managed agent must implement
the KIP group if and only if it implements the KIP protocol.
These groups are defined to provide a method for managed agents to
know which objects they must implement.
4.2. The LocalTalk Link Access Protocol Group
The LocalTalk Link Access Protocol (LLAP) is a medium-speed data-link
protocol designed for low cost and plug-and-play operation. The LLAP
group is designed to manage all interfaces on a managed device that
use this protocol.
4.3. The AppleTalk Address Resolution Protocol Group
The AppleTalk Address Resolution Protocol (AARP) is used to map
between AppleTalk node addresses, used by the Datagram Delivery
Protocol, and the addresses of the underlying data link layer. The
AARP table allows for management of the Address Mapping Table on the
managed device.
Waldbusser & Frisa [Page 7]
^L
RFC 1742 AppleTalk MIB II January 1995
4.4. The AppleTalk Port Group
An AppleTalk Port is a logical connection to a network over which
AppleTalk packets can be transmitted. The "network" could be a
tunnel, backbone network, point-to-point link, etc, as well as a
native AppleTalk network. This group allows the management of the
configuration of these AppleTalk ports.
4.5. The Datagram Delivery Protocol Group
The Datagram Delivery Protocol (DDP) is the network-layer protocol
that is responsible for the socket-to-socket delivery of datagrams
over the AppleTalk Internet. This group manages the DDP layer on the
managed device.
The DDP group contains statistical counters for the DDP protocol, and
a table describing the DDP sockets that have protocol handlers
registered.
4.6. The Datagram Delivery Protocol Router Group
Some variables relevant to the Datagram Delivery Protocol (DDP) are
only applicable to AppleTalk routers. These variables are included
in this group.
4.7. The Routing Table Maintenance Protocol Group
The Routing Table Maintenance Protocol (RTMP) is used by AppleTalk
routers to create and maintain the routing tables that dictate the
process of forwarding datagrams on the AppleTalk internet. The RTMP
group manages the RTMP protocol as well as the routing tables
generated by this protocol.
4.8. The Routing Table Maintenance Protocol Stub Group
The RTMP Stub process is implemented by end nodes in order to
maintain information about the routers on their networks. The
variables in this group apply to both routers and end nodes. This
group manages the RTMP stub process.
4.9. The Kinetics Internet Protocol Group
The Kinetics Internet Protocol (KIP) is a protocol for encapsulating
and routing AppleTalk datagrams over an IP internet. This name is
historical. The KIP group manages the KIP routing protocol as well
as the routing tables generated by this protocol.
Waldbusser & Frisa [Page 8]
^L
RFC 1742 AppleTalk MIB II January 1995
4.10. The Zone Information Protocol Router Group
The Zone Information Protocol (ZIP) is used to maintain a mapping
between networks and zone names to facilitate the name lookup process
performed by the Name Binding Protocol. Some variables relevant to
the Zone Information Protocol (ZIP) are only applicable to AppleTalk
routers. These variables are included in this group.
4.11. The Zone Information Protocol End Node Group
The ZIP End Node group manages the variables relevant to the Zone
Information Protocol (ZIP) that are applicable to both routers and
end nodes.
4.12. The Name Binding Protocol Group
The Name Binding Protocol (NBP) is a transport-level protocol that is
used to convert human readable service names into the numeric
AppleTalk network addresses needed for communicating across the
AppleTalk network. The NBP group manages this protocol and the NBP
services that exist on the managed device.
4.13. The AppleTalk Echo Protocol Group
The AppleTalk Echo Protocol is a transport-level protocol used to
test and verify the status of the AppleTalk internet. The AtEcho
group manages this protocol.
4.14. The AppleTalk Transaction Protocol Group
The AppleTalk Transaction Protocol (ATP) is a transport-level
protocol that is defined to support transaction based communications.
The ATP group manages this protocol.
4.15. The Printer Access Protocol Group
The Printer Access Protocol (PAP) is a session-level protocol that
enables communications between workstations and print servers. The
PAP group manages this protocol.
4.16. The AppleTalk Session Protocol Group
The AppleTalk Session Protocol (ASP) is a session-level protocol that
enables sequences of communications to occur. ASP uses the services
of the AppleTalk Transaction Protocol (ATP), but extends these
services into the session layer. The ASP group manages this
protocol.
Waldbusser & Frisa [Page 9]
^L
RFC 1742 AppleTalk MIB II January 1995
4.17. The AppleTalk Data Stream Protocol Group
The AppleTalk Data Stream Protocol (ADSP) is a session-level protocol
that provides symmetric, connection-oriented, full-duplex
communication between two sockets on the AppleTalk internet. In
addition, ADSP handles flow-control and reliability. The ADSP group
manages this protocol.
4.18. The AppleTalk Port Point to Point Group
The AppleTalk Port Point to Point Group manages ports that have one
or more associated point-to-point connections.
4.19. The Per Port Counters Group
The Per Port Counters Group contains a set of counters which are
deemed useful on a per port basis.
4.20. Textual Conventions
New data types are introduced as textual conventions in this MIB
document. These textual conventions enhance the readability of the
specification and can ease comparison with other specifications if
appropriate. It should be noted that the introduction of these
textual conventions has no effect on either the syntax or the
semantics of any managed objects. The use of this is merely an
artifact of the explanatory method used. Objects defined in terms of
this method are always encoded by means of the rules that define the
primitive type. Hence, no changes to the SMI or the SNMP are
necessary to accommodate these textual conventions which are adopted
merely for the convenience of readers and writers in pursuit of the
elusive goal of clear, concise, and unambiguous MIB documents.
The new data types are:
ATNetworkNumber ::= -- 2 octets of network
-- number in network
-- byte order
OCTET STRING (SIZE (2))
DdpNodeAddress ::= -- 2 octets of net number
-- in network byte order,
-- 1 octet of node number
OCTET STRING (SIZE (3))
DdpSocketAddress ::= -- 2 octets of net number
-- in network byte order,
-- 1 octet of node number,
Waldbusser & Frisa [Page 10]
^L
RFC 1742 AppleTalk MIB II January 1995
-- 1 octet of socket
-- number (0..255)
OCTET STRING (SIZE (4))
ATName ::= -- 0 to 32 octets of
-- AppleTalk ASCII [10]
OCTET STRING (SIZE (0..32))
5. Definitions
APPLETALK-MIB DEFINITIONS ::= BEGIN
IMPORTS
Counter, IpAddress, TimeTicks
FROM RFC1155-SMI
DisplayString, mib-2
FROM RFC1213-MIB
OBJECT-TYPE
FROM RFC-1212;
-- This MIB module uses the extended OBJECT-TYPE macro as
-- defined in RFC-1212.
-- The following reference is used in this MIB:
-- [Inside AppleTalk]
-- This refers to Gursharan S. Sidhu, Richard F. Andrews, and
-- Alan B. Oppenheimer, Inside AppleTalk, Second Edition,
-- Addison Wesley, (1990).
-- AppleTalk MIB
appletalk OBJECT IDENTIFIER ::= { mib-2 13 }
ATNetworkNumber ::= -- 2 octets of net number
-- in network byte order
OCTET STRING (SIZE (2))
DdpNodeAddress ::= -- 2 octets of net number
-- in network byte order,
-- 1 octet of node number
OCTET STRING (SIZE (3))
DdpSocketAddress ::= -- 2 octets of net number
-- in network byte order,
-- 1 octet of node number,
Waldbusser & Frisa [Page 11]
^L
RFC 1742 AppleTalk MIB II January 1995
-- 1 octet of socket number
-- (0..255)
OCTET STRING (SIZE (4))
ATName ::= -- 0 to 32 octets of AppleTalk
-- ASCII [Inside AppleTalk]
OCTET STRING (SIZE (0..32))
llap OBJECT IDENTIFIER ::= { appletalk 1 }
aarp OBJECT IDENTIFIER ::= { appletalk 2 }
atport OBJECT IDENTIFIER ::= { appletalk 3 }
ddp OBJECT IDENTIFIER ::= { appletalk 4 }
rtmp OBJECT IDENTIFIER ::= { appletalk 5 }
kip OBJECT IDENTIFIER ::= { appletalk 6 }
zipRouter OBJECT IDENTIFIER ::= { appletalk 7 }
nbp OBJECT IDENTIFIER ::= { appletalk 8 }
atecho OBJECT IDENTIFIER ::= { appletalk 9 }
atp OBJECT IDENTIFIER ::= { appletalk 10 }
pap OBJECT IDENTIFIER ::= { appletalk 11 }
asp OBJECT IDENTIFIER ::= { appletalk 12 }
adsp OBJECT IDENTIFIER ::= { appletalk 13 }
atportptop OBJECT IDENTIFIER ::= { appletalk 14 }
rtmpStub OBJECT IDENTIFIER ::= { appletalk 16 }
zipEndNode OBJECT IDENTIFIER ::= { appletalk 17 }
perPort OBJECT IDENTIFIER ::= { appletalk 18 }
-- The LLAP Group
--
-- Implementation of this group is mandatory for all
-- entities that implement LLAP
--
-- Notes for the interfaces group
--
-- When implementing the Interfaces Group of MIB-II, it is
-- suggested that the following values be used for any
-- LocalTalk interfaces:
-- ifMtu: 600
-- ifSpeed: 230000
-- ifPhysAddress: the one octet node number for the
-- particular interface
--
-- Note also that LLAP control packets should not be
-- included in the Interfaces Group packet or octet
-- counters.
Waldbusser & Frisa [Page 12]
^L
RFC 1742 AppleTalk MIB II January 1995
llapTable OBJECT-TYPE
SYNTAX SEQUENCE OF LlapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The list of LLAP entries."
::= { llap 1 }
llapEntry OBJECT-TYPE
SYNTAX LlapEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An LLAP entry containing objects for the LocalTalk
Link Access Protocol for a particular LocalTalk
interface.
As an example, an instance of the llapOutPkts object
might be named llapOutPks.1"
INDEX { llapIfIndex }
::= { llapTable 1 }
LlapEntry ::= SEQUENCE {
llapIfIndex INTEGER,
llapInPkts Counter,
llapOutPkts Counter,
llapInNoHandlers Counter,
llapInLengthErrors Counter,
llapInErrors Counter,
llapCollisions Counter,
llapDefers Counter,
llapNoDataErrors Counter,
llapRandomCTSErrors Counter,
llapFCSErrors Counter
}
llapIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The LLAP interface to which this entry pertains.
The interface identified by a particular value of
this index is the same interface as identified
by the same value of ifIndex."
::= { llapEntry 1 }
Waldbusser & Frisa [Page 13]
^L
RFC 1742 AppleTalk MIB II January 1995
-- this object has been deprecated because it duplicates the
-- sum of the MIB-II variables ifInUcastPkts and
-- ifInNUcastPkts
llapInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of good data packets received on
this LocalTalk interface."
::= { llapEntry 2 }
-- this object has been deprecated because it duplicates the
-- sum of the MIB-II variables ifOutUcastPkts and
-- ifOutNUcastPkts
llapOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of data packets transmitted on
this LocalTalk interface."
::= { llapEntry 3 }
-- this object has been deprecated because it duplicates the
-- MIB-II variable ifInUnknownProtos
llapInNoHandlers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of good packets received on this
LocalTalk interface for which there was no protocol
handler."
::= { llapEntry 4 }
llapInLengthErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of packets received on this LocalTalk
interface whose actual length did not match the length
in the header."
::= { llapEntry 5 }
Waldbusser & Frisa [Page 14]
^L
RFC 1742 AppleTalk MIB II January 1995
-- this object has been deprecated because it duplicates the
-- MIB-II variable ifInErrors
llapInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of packets containing errors received
on this LocalTalk interface."
::= { llapEntry 6 }
llapCollisions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of collisions assumed on this
LocalTalk interface due to the lack of a lapCTS reply."
::= { llapEntry 7 }
llapDefers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of times this LocalTalk interface
deferred to other packets."
::= { llapEntry 8 }
llapNoDataErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of times this LocalTalk interface
received a lapRTS packet and expected a data packet,
but did not receive any data packet."
::= { llapEntry 9 }
llapRandomCTSErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of times this LocalTalk interface
received a lapCTS packet that was not solicited by a
lapRTS packet."
Waldbusser & Frisa [Page 15]
^L
RFC 1742 AppleTalk MIB II January 1995
::= { llapEntry 10 }
llapFCSErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of times this LocalTalk interface
received a packet with an FCS (Frame Check Sequence)
error."
::= { llapEntry 11 }
-- The AARP Group
--
-- Implementation of this group is mandatory for all entities
-- that implement AARP
aarpTable OBJECT-TYPE
SYNTAX SEQUENCE OF AarpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The AppleTalk Address Translation Table contains an
equivalence of AppleTalk Network Addresses to the link
layer physical address."
::= { aarp 1 }
aarpEntry OBJECT-TYPE
SYNTAX AarpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Each entry contains one AppleTalk Network Address to
physical address equivalence.
As an example, an instance of the aarpPhysAddress
object might be named aarpPhysAddress.1.0.80.234"
INDEX { aarpIfIndex, aarpNetAddress }
::= { aarpTable 1 }
AarpEntry ::= SEQUENCE {
aarpIfIndex INTEGER,
aarpPhysAddress OCTET STRING,
aarpNetAddress DdpNodeAddress,
aarpStatus INTEGER
}
Waldbusser & Frisa [Page 16]
^L
RFC 1742 AppleTalk MIB II January 1995
aarpIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The interface on which this entry's equivalence is
effective. The interface identified by a particular
value of this index is the same interface as
identified by the same value of ifIndex."
::= { aarpEntry 1 }
aarpPhysAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The media-dependent physical address."
::= { aarpEntry 2 }
aarpNetAddress OBJECT-TYPE
SYNTAX DdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The AppleTalk Network Address corresponding to the
media-dependent physical address."
::= { aarpEntry 3 }
aarpStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this AARP entry.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in the
aarpTable. That is, it effectively disassociates
the mapping identified with said entry. It is an
implementation-specific matter as to whether the agent
removes an invalidated entry from the table.
Accordingly, management stations must be prepared to
receive from agents tabular information corresponding
to entries not currently in use. Proper
interpretation of such entries requires examination
of the relevant aarpStatus object."
Waldbusser & Frisa [Page 17]
^L
RFC 1742 AppleTalk MIB II January 1995
::= { aarpEntry 4 }
aarpLookups OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the AARP cache for this entity
was searched."
::= { aarp 2 }
aarpHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times an entry was searched for and
found in the AARP cache for this entity."
::= { aarp 3 }
-- The ATPort Group
--
-- Implementation of this group is mandatory for all entities
-- that implement AppleTalk ports
--
-- Note that to be compliant with this group, all variables
-- that have read-write access must be implemented as
-- read-write.
atportTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtportEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of AppleTalk ports for this entity."
::= { atport 1 }
atportEntry OBJECT-TYPE
SYNTAX AtportEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of one of the AppleTalk
ports on this entity.
As an example, an instance of the atportNetFrom object
might be named atportNetFrom.2"
Waldbusser & Frisa [Page 18]
^L
RFC 1742 AppleTalk MIB II January 1995
INDEX { atportIndex }
::= { atportTable 1 }
AtportEntry ::= SEQUENCE {
atportIndex INTEGER,
atportDescr DisplayString,
atportType INTEGER,
atportNetStart ATNetworkNumber,
atportNetEnd ATNetworkNumber,
atportNetAddress DdpNodeAddress,
atportStatus INTEGER,
atportNetConfig INTEGER,
atportZoneConfig INTEGER,
atportZoneDefault ATName,
atportIfIndex INTEGER,
atportNetFrom DdpNodeAddress,
atportZoneFrom DdpNodeAddress,
atportInPkts Counter,
atportOutPkts Counter,
atportHome INTEGER,
atportCurrentZone ATName,
atportConflictPhysAddr OCTET STRING
}
atportIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each AppleTalk port.
Its value is between 1 and the total number of
AppleTalk ports. The value for each port must
remain constant at least from the re-initialization
of the entity's network management system to the
next re-initialization."
::= { atportEntry 1 }
atportDescr OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A text string containing information about the
port. This string is intended for presentation
to a human; it must not contain anything but printable
ASCII characters."
::= { atportEntry 2 }
Waldbusser & Frisa [Page 19]
^L
RFC 1742 AppleTalk MIB II January 1995
-- Several objects throughout the MIB key off of atportType to
-- determine the format of OCTET STRING addresses of peers.
-- The address formats are as follows:
-- localtalk, ethertalk1, ethertalk2, tokentalk, iptalk,
-- fdditalk, smdstalk, arctalk, and virtual take the
-- format of DdpNodeAddress
-- serialPPP: null OCTET STRING
-- serialNonstandard: vendor specific
-- aurp: see AURP MIB to determine format
-- frameRelay: 32 bit DLCI in network byte order
-- (OCTET STRING (SIZE (4)))
-- x25: X121Address (see RFC 1382)
-- ip: IP address (OCTET STRING (SIZE (4)))
-- osi: NSAP (OCTET STRING (SIZE (3..20)))
-- decnetIV: 6 bit area, 10 bit host in network byte order
-- (OCTET STRING (SIZE (2)))
-- arap: ???
-- nonAppleTalk3Com: based on ifType
-- ipx: 32 bit network number in network byte order
-- followed by datalink address of host
-- arns: 32 bit ARNS header
-- hdlc: DdpNodeAddress or null OCTET STRING
atportType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- none of the following
localtalk(2),
ethertalk1(3),
ethertalk2(4),
tokentalk(5),
iptalk(6),
serialPPP(7),
serialNonstandard(8),
virtual(9), -- an internal interface
fdditalk(10),
arctalk(11),
smdstalk(12),
aurp(13),
frameRelay(14),
x25(15),
ip(16),
osi(17),
decnetIV(18),
arap(19),
isdnInThePacketMode(20),
nonAppleTalk3Com(21),
ipx(22),
arns(23),
Waldbusser & Frisa [Page 20]
^L
RFC 1742 AppleTalk MIB II January 1995
hdlc(24)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of port, distinguished by the protocol
immediately below DDP in the protocol stack."
::= { atportEntry 3 }
atportNetStart OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The first AppleTalk network address in the range
configured for this port. If this port is not a
native AppleTalk port, this object shall have the
value of two octets of zero."
::= { atportEntry 4 }
atportNetEnd OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The last AppleTalk network address in the range
configured for this port. If the network to which
this AppleTalk port is connected is a non-extended
network, or if it is not a native AppleTalk port,
the value for atportNetEnd shall be two octets of
zero."
::= { atportEntry 5 }
atportNetAddress OBJECT-TYPE
SYNTAX DdpNodeAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk network address configured for this
port. In addition, this value may be used as a hint
for an initial node number used during node-finding.
If this port is not a native AppleTalk port, this
object shall have the value of three octets of zero."
::= { atportEntry 6 }
atportStatus OBJECT-TYPE
SYNTAX INTEGER {
routing(1), --this port is fully configured & routing
Waldbusser & Frisa [Page 21]
^L
RFC 1742 AppleTalk MIB II January 1995
unconfigured(2),
off(3),
invalid(4),
endNode(5), -- this port is acting as an end node
offDueToConflict(6), -- port is off due to
-- configuration conflict
other(7) -- none of the states defined above
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The configuration status of this port.
Setting this object to the value invalid(4) has the
effect of invalidating the corresponding entry in the
atportTable. That is, it effectively disassociates the
mapping identified with said entry. It is an
implementation-specific matter as to whether the agent
removes an invalidated entry from the table.
Accordingly, management stations must be prepared to
receive from agents tabular information corresponding
to entries not currently in use. Proper
interpretation of such entries requires examination
of the relevant atportStatus object."
::= { atportEntry 7 }
atportNetConfig OBJECT-TYPE
SYNTAX INTEGER {
conflictOrientedSeed(1), -- use configured network
-- range even if it conflicts with another
-- AppleTalk device
garnered(2), -- acquire from another AppleTalk device
guessed(3), -- generate a "random" network range
unconfigured(4), -- no other value applies
conflictAverseSeed(5), -- use configured network
-- range, but don't come up if it conflicts
softSeed(6) -- attempt to use configured network
-- range, but use network range from another
-- router if our configuration conflicts
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the network information for this port.
If this port is not a native AppleTalk port, this
object shall have the value unconfigured(4)."
::= { atportEntry 8 }
Waldbusser & Frisa [Page 22]
^L
RFC 1742 AppleTalk MIB II January 1995
atportZoneConfig OBJECT-TYPE
SYNTAX INTEGER {
conflictOrientedSeed(1), -- use configured zone
-- information even if it conflicts with
-- another AppleTalk device
garnered(2), -- acquire from another AppleTalk device
guessed(3), -- generate "random" zone information
unconfigured(4), -- no other value applies
conflictAverseSeed(5), -- use configured zone
-- information, but don't come up if it
-- conflicts
softSeed(6) -- attempt to use configured zone
-- information, but use zone information
-- from another router if our configuration
-- conflicts
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the zone information for this port.
If this port is not a native AppleTalk port, this
object shall have the value unconfigured(4)."
::= { atportEntry 9 }
atportZoneDefault OBJECT-TYPE
SYNTAX ATName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The name of the default zone for this port. If
this port only has one zone, that zone is
represented here. If this port is not a native
AppleTalk port, this object shall contain an octet
string of zero length.
When this value is changed in a router, the router
must send a zipNotify packet on the associated
network."
::= { atportEntry 10 }
atportIfIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The physical interface associated with this
AppleTalk port. The interface identified by a
particular value of this index is the same interface
Waldbusser & Frisa [Page 23]
^L
RFC 1742 AppleTalk MIB II January 1995
as identified by the same value of ifIndex."
::= { atportEntry 11 }
atportNetFrom OBJECT-TYPE
SYNTAX DdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When atportNetConfig is set to garnered(2), this
variable contains the DDP address of an entity from
which the AppleTalk network number was garnered.
When atportNetConfig is set to
conflictOrientedSeed(1), conflictAverseSeed(5),
or softSeed(6), this variable contains the DDP
address of an entity which confirmed or supplied our
AppleTalk network number, for example by replying to
a ZIP GetNetInfo request.
If atportNetConfig is set to guessed(3) or
unconfigured(4), or if the entity has not received
any network number confirmation, this variable
should be set to three octets of zero."
::= { atportEntry 12 }
atportZoneFrom OBJECT-TYPE
SYNTAX DdpNodeAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"When atportZoneConfig is set to garnered(2), this
variable contains the DDP address of an entity from
which the AppleTalk zone list was garnered.
When atportZoneConfig is set to
conflictOrientedSeed(1), conflictAverseSeed(5), or
softSeed(6), this variable contains the DDP address
of an entity which confirmed or supplied our
AppleTalk zone information, for example by replying
to a ZIP GetNetInfo request or a ZIP Query.
If atportZoneConfig is set to guessed(3) or
unconfigured(4), or if the entity has not received
any zone confirmation, this variable should be set
to three octets of zero."
::= { atportEntry 13 }
Waldbusser & Frisa [Page 24]
^L
RFC 1742 AppleTalk MIB II January 1995
atportInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets received by this entity on
this port."
::= { atportEntry 14 }
atportOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets transmitted by this entity on
this port."
::= { atportEntry 15 }
atportHome OBJECT-TYPE
SYNTAX INTEGER {
home(1),
notHome(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An indication of whether or not the entity is
homed on this port, that is to say, a port on which
the entity could perform NBP registrations for
services that it chooses to advertise."
::= { atportEntry 16 }
atportCurrentZone OBJECT-TYPE
SYNTAX ATName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current zone for the port. In general, this is
the zone name in which services on this port will
be registered. If this port is not a native
AppleTalk port, this object shall contain an octet
string of zero length. Note that modifications to
this object do not affect the nbpTable."
::= { atportEntry 17 }
atportConflictPhysAddr OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
Waldbusser & Frisa [Page 25]
^L
RFC 1742 AppleTalk MIB II January 1995
STATUS mandatory
DESCRIPTION
"The link-layer address of a device which caused
this entity to set atportStatus to
offDueToConflict(6). If this address is not
available, or if the entity has not set atportStatus
to offDueToConflict, this object shall be a zero
length OCTET STRING."
::= { atportEntry 18 }
-- The atportZoneTable stores information about the zones
-- associated with each port. The default zone for each
-- port is stored in the port's atportZoneDefault variable;
-- all other zones for the port are listed in this table.
-- If a port only has one zone, it should be stored in the
-- port's atportZoneDefault variable, and this table should
-- be empty.
--
-- One of the indexes for this table is atportZoneName.
-- Even though AppleTalk zone name matches are
-- case-insensitive, this table will store zone names
-- regardless of case. SNMP Get, GetNext and Set operations
-- are performed on these (potentially) mixed case strings
-- according to the normal SNMP rules with the following
-- caveat: in processing a SET request, the agent shall
-- perform a case-insensitive search and a case-sensitive
-- search. If the case-insensitive search matches and the
-- case-sensitive search does not match, the "equivalent"
-- zone name exists in another entry with a different
-- capitalization and the SET request shall fail due
-- to the name being inconsistent (SNMPv1 should return a
-- genErr.) This insures that only one version of a zone
-- name will appear in each agent, at the expense of forcing
-- a management station to query using that exact name.
atportZoneTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtportZoneEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of zone information for non-default
zones on ports."
::= { atport 2 }
atportZoneEntry OBJECT-TYPE
SYNTAX AtportZoneEntry
ACCESS not-accessible
STATUS mandatory
Waldbusser & Frisa [Page 26]
^L
RFC 1742 AppleTalk MIB II January 1995
DESCRIPTION
"An entry of zone information for a port.
As an example, an instance of the atportZoneStatus
object might be named
atportZoneStatus.2.8.84.119.105.108.105.103.104.116"
INDEX { atportZonePort, atportZoneName }
::= { atportZoneTable 1 }
AtportZoneEntry ::= SEQUENCE {
atportZonePort INTEGER,
atportZoneName ATName (SIZE (1..32)),
atportZoneStatus INTEGER
}
atportZonePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An integer representing the port to which this zone
belongs. The port identified by a particular value
of this object is the same port as identified by the
same value of atportIndex."
::= { atportZoneEntry 1 }
atportZoneName OBJECT-TYPE
SYNTAX ATName (SIZE (1..32))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A zone name configured for the AppleTalk port
referred to in the corresponding entry of
atportZonePort.
When this value is changed in a router, the router
must send a zipNotify packet on the associated
network."
::= { atportZoneEntry 2 }
atportZoneStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
Waldbusser & Frisa [Page 27]
^L
RFC 1742 AppleTalk MIB II January 1995
"The status of this zone entry.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in
the atportZoneTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examination of the relevant
atportZoneStatus object."
::= { atportZoneEntry 3 }
-- The DDP Group
--
-- Implementation of this group is mandatory for all
-- entities that implement DDP
--
-- This group consists of DDP variables that would be
-- implemented by either a router or an end node. The
-- following variables are included:
-- ddpOutRequests
-- ddpOutShorts
-- ddpOutLongs
-- ddpInReceives
-- ddpInLocalDatagrams
-- ddpNoProtocolHandlers
-- ddpTooShortErrors
-- ddpTooLongErrors
-- ddpShortDDPErrors
-- ddpChecksumErrors
-- ddpListenerTable
--
-- Note that the variables in this group are not numbered
-- sequentially. This was done so that it was not necessary
-- to deprecate variables from RFC 1243.
ddpOutRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of DDP datagrams which were
supplied to DDP by local DDP clients in requests for
Waldbusser & Frisa [Page 28]
^L
RFC 1742 AppleTalk MIB II January 1995
transmission. Note that this counter does not
include any datagrams counted in ddpForwRequests."
::= { ddp 1 }
ddpOutShorts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of short DDP datagrams which were
transmitted from this entity."
::= { ddp 2 }
ddpOutLongs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of long DDP datagrams which were
transmitted from this entity."
::= { ddp 3 }
ddpInReceives OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input datagrams received by
DDP, including those received in error."
::= { ddp 4 }
ddpInLocalDatagrams OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams for which
this
entity was their final DDP destination."
::= { ddp 6 }
ddpNoProtocolHandlers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of DDP datagrams addressed to this
entity that were addressed to an upper layer protocol
Waldbusser & Frisa [Page 29]
^L
RFC 1742 AppleTalk MIB II January 1995
for which no protocol handler existed."
::= { ddp 7 }
ddpTooShortErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams dropped
because the received data length was less than the
data length specified in the DDP header or the
received data length was less than the length of the
expected DDP header."
::= { ddp 9 }
ddpTooLongErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams dropped
because they exceeded the maximum DDP datagram
size."
::= { ddp 10 }
ddpShortDDPErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams dropped
because this entity was not their final destination
and their type was short DDP."
::= { ddp 12 }
ddpChecksumErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams for which
this DDP entity was their final destination, and
which were dropped because of a checksum error."
::= { ddp 14 }
ddpListenerTable OBJECT-TYPE
SYNTAX SEQUENCE OF DdpListenerEntry
ACCESS not-accessible
Waldbusser & Frisa [Page 30]
^L
RFC 1742 AppleTalk MIB II January 1995
STATUS mandatory
DESCRIPTION
"The ddpListenerTable stores information for each
DDP socket that has a listener."
::= { ddp 15 }
ddpListenerEntry OBJECT-TYPE
SYNTAX DdpListenerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This ddpListenerEntry contains information about a
particular socket that has a socket listener.
As an example, an instance of the ddpListenerStatus
object might be named ddpListenerStatus.0.80.220.1"
INDEX { ddpListenerAddress }
::= { ddpListenerTable 1 }
DdpListenerEntry ::= SEQUENCE {
ddpListenerAddress DdpSocketAddress,
ddpListenerInPkts Counter,
ddpListenerStatus INTEGER
}
ddpListenerAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DDP address that this socket listener is bound
to. If this socket listener isn't bound to a
particular address, for instance if it is intended
for all interfaces, this object shall have the value
of three octets of zero followed by one octet of
socket number. The socket number must not equal
zero."
::= { ddpListenerEntry 1 }
ddpListenerInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of packets received for this listener."
::= { ddpListenerEntry 2 }
Waldbusser & Frisa [Page 31]
^L
RFC 1742 AppleTalk MIB II January 1995
ddpListenerStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this socket listener.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in the
ddpListenerTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examination of the relevant
ddpListenerStatus object."
::= { ddpListenerEntry 3 }
-- The DDP Router Group
--
-- Implementation of this group is required for all routers
-- which implement DDP
--
-- This group consists of DDP variables that only a router
-- would implement. The following variables are included:
-- ddpForwRequests
-- ddpOutNoRoutes
-- ddpBroadcastErrors
-- ddpHopCountErrors
-- ddpForwardingTable
--
-- Note that the variables in this group are not numbered
-- sequentially. This was done so that variables from
-- RFC 1243 did not need to be deprecated.
ddpForwRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of input datagrams for which this entity
was not their final DDP destination, as a result of
Waldbusser & Frisa [Page 32]
^L
RFC 1742 AppleTalk MIB II January 1995
which an attempt was made to find a route to forward
them to that final destination."
::= { ddp 5 }
ddpOutNoRoutes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of DDP datagrams dropped because a
route could not be found to their final destination."
::= { ddp 8 }
ddpBroadcastErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams dropped
because this entity was not their final destination
and they were addressed to the link level broadcast."
::= { ddp 11 }
ddpHopCountErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams dropped
because this entity was not their final destination
and their hop count would exceed 15."
::= { ddp 13 }
-- The ddpForwardingTable is a read-only table which shows the
-- next hop that a datagram will take when being routed to a
-- specific network. If a manager wishes to change data in
-- this table via SNMP, he must change it in the MIB for the
-- routing protocol itself (by incrementing hop counts,
-- etc), rather than in this table. This table is derived
-- by the managed entity from the information it receives
-- from the routing protocols that it supports.
--
-- This table also shows the routing table from which the next
-- hop was derived. When a MIB is written for an AppleTalk
-- routing protocol, it should include the definition of an
-- object identifier which will be used in the
-- ddpForwardingProto variable defined here. (For example,
-- a value for RTMP is defined as { ddp-forw-proto-oids 1 }
Waldbusser & Frisa [Page 33]
^L
RFC 1742 AppleTalk MIB II January 1995
-- below.)
--
-- To look for a specific net N in this table, it is suggested
-- that the management station perform a get-next query for
-- ddpForwardingNetEnd.(N-1). This will retrieve the correct
-- row if it exists in the table.
ddpForwardingTable OBJECT-TYPE
SYNTAX SEQUENCE OF DdpForwardingEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of forwarding entries for DDP. This table
contains a route for each AppleTalk network currently
known to the entity."
::= { ddp 16 }
ddpForwardingEntry OBJECT-TYPE
SYNTAX DdpForwardingEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A forwarding entry for a particular AppleTalk
network.
As an example, an instance of the ddpForwardingPort
object might be named ddpForwardingPort.0.90"
INDEX { ddpForwardingNetEnd }
::= { ddpForwardingTable 1 }
DdpForwardingEntry ::= SEQUENCE {
ddpForwardingNetEnd ATNetworkNumber,
ddpForwardingNetStart ATNetworkNumber,
ddpForwardingNextHop OCTET STRING,
ddpForwardingProto OBJECT IDENTIFIER,
ddpForwardingModifiedTime TimeTicks,
ddpForwardingUseCounts Counter,
ddpForwardingPort INTEGER
}
ddpForwardingNetEnd OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The last network number in the network range
matched by this forwarding entry. This will not be
zero even if this corresponds to a non-extended
Waldbusser & Frisa [Page 34]
^L
RFC 1742 AppleTalk MIB II January 1995
net."
::= { ddpForwardingEntry 1 }
ddpForwardingNetStart OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The first network number in the network range
matched by this forwarding entry."
::= { ddpForwardingEntry 2 }
ddpForwardingNextHop OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The next hop in the route to this entry's
destination network. The format of this address can
be determined by examinating the atportType
corresponding to this entry."
::= { ddpForwardingEntry 3 }
ddpForwardingProto OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The routing mechanism by which this route was
learned."
::= { ddpForwardingEntry 4 }
ddpForwardingModifiedTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of sysUpTime at the time of the last
modification to this entry. The initial value of
ddpForwardingModified time shall be the value of
sysUpTime at the time the entry is created."
::= { ddpForwardingEntry 5 }
ddpForwardingUseCounts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
Waldbusser & Frisa [Page 35]
^L
RFC 1742 AppleTalk MIB II January 1995
"The number of times this entry has been used to
route a packet to the destination network. Note
that this counter is not cleared when the
corresponding ddpForwardingNextHop variable
changes."
::= { ddpForwardingEntry 6 }
ddpForwardingPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The AppleTalk port through which
ddpForwardingNextHop is reached. The interface
identified by a particular value of this variable is
the same interface as identified by the same value
of atportIndex."
::= { ddpForwardingEntry 7 }
ddpForwProtoOids OBJECT IDENTIFIER ::= { ddp 17 }
-- The value to be assigned to ddpForwardingProto when the
-- routing protocol is RTMP.
rtmpRoutingProto OBJECT IDENTIFIER ::= { ddpForwProtoOids 1 }
-- The value to be assigned to ddpForwardingProto when the
-- routing protocol is KIP.
kipRoutingProto OBJECT IDENTIFIER ::= { ddpForwProtoOids 2 }
ddpForwardingTableOverflows OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the entity attempted to add an
entry to the forwarding table but failed due to
overflow."
::= { ddp 18 }
-- The RTMP Group
--
-- Implementation of this group is required for all routers
-- which implement RTMP
rtmpTable OBJECT-TYPE
SYNTAX SEQUENCE OF RtmpEntry
Waldbusser & Frisa [Page 36]
^L
RFC 1742 AppleTalk MIB II January 1995
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of Routing Table Maintenance Protocol
entries for this entity."
::= { rtmp 1 }
rtmpEntry OBJECT-TYPE
SYNTAX RtmpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The route entry to a particular network range.
As an example, an instance of the rtmpPort object
might be named rtmpPort.0.80"
INDEX { rtmpRangeStart }
::= { rtmpTable 1 }
RtmpEntry ::= SEQUENCE {
rtmpRangeStart ATNetworkNumber,
rtmpRangeEnd ATNetworkNumber,
rtmpNextHop OCTET STRING,
rtmpType INTEGER,
rtmpPort INTEGER,
rtmpHops INTEGER,
rtmpState INTEGER
}
rtmpRangeStart OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The first DDP network address in the network range
to which this routing entry pertains. This is a two
octet DDP network address in network byte order."
::= { rtmpEntry 1 }
rtmpRangeEnd OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last DDP network address in the network range
to which this routing entry pertains. This is a two
octet DDP network address in network byte order. If
the network to which this routing entry pertains is
Waldbusser & Frisa [Page 37]
^L
RFC 1742 AppleTalk MIB II January 1995
a non-extended network, the value for rtmpRangeEnd
shall be two octets of zero."
::= { rtmpEntry 2 }
rtmpNextHop OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The next internet router in the route to this
entry's destination network. The format of this
address can be determined by examinating the
atportType corresponding to this entry."
::= { rtmpEntry 3 }
rtmpType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
appletalk(2),
serialPPP(3),
serialNonstandard(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of network over which this route points."
::= { rtmpEntry 4 }
rtmpPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The AppleTalk port over which this route points.
The interface identified by a particular value of
this variable is the same interface as identified by
the same value of atportIndex."
::= { rtmpEntry 5 }
rtmpHops OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hops required to reach the
destination network to which this routing entry
pertains."
::= { rtmpEntry 6 }
Waldbusser & Frisa [Page 38]
^L
RFC 1742 AppleTalk MIB II January 1995
rtmpState OBJECT-TYPE
SYNTAX INTEGER {
good(1),
suspect(2),
badZero(3),
badOne(4),
invalid(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the information contained in this
route entry.
Setting this object to the value invalid(5) has the
effect of invalidating the corresponding entry in
the rtmpTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examination of the relevant rtmpState
object."
::= { rtmpEntry 7 }
rtmpInDataPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of good RTMP data packets
received by this entity."
::= { rtmp 2 }
rtmpOutDataPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of RTMP packets sent by this
entity."
::= { rtmp 3 }
rtmpInRequestPkts OBJECT-TYPE
SYNTAX Counter
Waldbusser & Frisa [Page 39]
^L
RFC 1742 AppleTalk MIB II January 1995
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of good RTMP Request packets
received by this entity."
::= { rtmp 4 }
rtmpNextIREqualChanges OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of times RTMP changes the
Next Internet Router in a routing entry because the
hop count advertised in a routing tuple was equal to
the current hop count for a particular network."
::= { rtmp 5 }
rtmpNextIRLessChanges OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of times RTMP changes the
Next Internet Router in a routing entry because the
hop count advertised in a routing tuple was less
than the current hop count for a particular network."
::= { rtmp 6 }
rtmpRouteDeletes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of times RTMP deletes a route
because it was aged out of the table. This can help
to detect routing problems."
::= { rtmp 7 }
rtmpRoutingTableOverflows OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times RTMP attempted to add a route
to the RTMP table but failed due to lack of space."
::= { rtmp 8 }
Waldbusser & Frisa [Page 40]
^L
RFC 1742 AppleTalk MIB II January 1995
-- The RTMP Stub Group
--
-- Implementation of this group is mandatory for all
-- entities that implement RTMP
--
-- It is intended that this group be implemented by routers
-- and end nodes.
rtmpOutRequestPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of RTMP Request packets sent
by this entity."
::= { rtmpStub 1 }
rtmpInVersionMismatches OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of RTMP packets received by
this entity that were rejected due to a version
mismatch."
::= { rtmpStub 2 }
rtmpInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of RTMP packets received by
this entity that were rejected for an error other
than version mismatch."
::= { rtmpStub 3 }
-- The KIP Group
--
-- Implementation of this group is mandatory for all
-- entities that implement KIP
kipTable OBJECT-TYPE
SYNTAX SEQUENCE OF KipEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
Waldbusser & Frisa [Page 41]
^L
RFC 1742 AppleTalk MIB II January 1995
"The table of routing information for KIP networks."
::= { kip 1 }
kipEntry OBJECT-TYPE
SYNTAX KipEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry in the routing table for KIP networks.
As an example, an instance of the kipCore object
might be named kipCore.0.80"
INDEX { kipNetStart }
::= { kipTable 1 }
KipEntry ::= SEQUENCE {
kipNetStart ATNetworkNumber,
kipNetEnd ATNetworkNumber,
kipNextHop IpAddress,
kipHopCount INTEGER,
kipBCastAddr IpAddress,
kipCore INTEGER,
kipType INTEGER,
kipState INTEGER,
kipShare INTEGER,
kipFrom IpAddress
}
kipNetStart OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The first AppleTalk network address in the range
for this routing entry. This address is a two octet
DDP network address in network byte order."
::= { kipEntry 1 }
kipNetEnd OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The last AppleTalk network address in the range for
this routing entry. This address is a two octet DDP
network address in network byte order. If the
network to which this AppleTalk port is connected is
a non-extended network, the value for kipNetEnd
Waldbusser & Frisa [Page 42]
^L
RFC 1742 AppleTalk MIB II January 1995
shall be two octets of zero."
::= { kipEntry 2 }
kipNextHop OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the next hop in the route to this
entry's destination network."
::= { kipEntry 3 }
kipHopCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of hops required to reach the destination
network to which this entry pertains."
::= { kipEntry 4 }
kipBCastAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The form of the IP address used to broadcast on this
network."
::= { kipEntry 5 }
kipCore OBJECT-TYPE
SYNTAX INTEGER {
core(1),
notcore(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of kipNextHop as a core gateway."
::= { kipEntry 6 }
kipType OBJECT-TYPE
SYNTAX INTEGER {
kipRouter(1),
net(2),
host(3),
other(4),
async(5)
Waldbusser & Frisa [Page 43]
^L
RFC 1742 AppleTalk MIB II January 1995
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of the entity that this route points to."
::= { kipEntry 7 }
kipState OBJECT-TYPE
SYNTAX INTEGER {
configured(1), -- this entry is not aged
learned(2),
invalid(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of this network entry.
Setting this object to the value invalid(3) has the
effect of invalidating the corresponding entry in the
kipTable. That is, it effectively disassociates the
mapping identified with said entry. It is an
implementation-specific matter as to whether the agent
removes an invalidated entry from the table.
Accordingly, management stations must be prepared to
receive from agents tabular information corresponding
to entries not currently in use. Proper
interpretation of such entries requires examination
of the relevant kipState object."
::= { kipEntry 8 }
kipShare OBJECT-TYPE
SYNTAX INTEGER {
shared(1),
private(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If the information in this entry is propagated to
other routers as part of the AA routing protocol,
the value of this variable is equal to shared(1).
Otherwise its value is private(2)."
::= { kipEntry 9 }
kipFrom OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
Waldbusser & Frisa [Page 44]
^L
RFC 1742 AppleTalk MIB II January 1995
STATUS mandatory
DESCRIPTION
"The IP address from which the routing entry was
learned via the AA protocol. If this entry was not
created via the AA protocol, it should contain IP
address 0.0.0.0."
::= { kipEntry 10 }
-- The ZIP Router Group
--
-- Implementation of this group is required for all routers
-- which implement ZIP
--
-- This group consists of ZIP variables that would be
-- implemented by a router.
zipTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZipEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of zone information for reachable
AppleTalk networks."
::= { zipRouter 1 }
zipEntry OBJECT-TYPE
SYNTAX ZipEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry of zone information for a particular zone
and network combination.
As an example, an instance of the zipZoneState object
might be named zipZoneState.0.80.4"
INDEX { zipZoneNetStart, zipZoneIndex }
::= { zipTable 1 }
ZipEntry ::= SEQUENCE {
zipZoneName ATName,
zipZoneIndex INTEGER,
zipZoneNetStart ATNetworkNumber,
zipZoneNetEnd ATNetworkNumber,
zipZoneState INTEGER,
zipZoneFrom OCTET STRING,
zipZonePort INTEGER
}
Waldbusser & Frisa [Page 45]
^L
RFC 1742 AppleTalk MIB II January 1995
zipZoneName OBJECT-TYPE
SYNTAX ATName
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The zone name of this entry. This is stored in
Mac ASCII format. If the full zone list for the
entry is not known, the value for zipZoneName shall
be a zero length octet string."
::= { zipEntry 1 }
zipZoneIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An integer that is unique to the zipZoneName that
is present in this entry. For any given zone name,
every zipEntry that has an equal zone name will have
the same zipZoneIndex. When a zone name is
discovered which is not currently in the table, it
will be assigned an index greater than any
previously assigned index."
::= { zipEntry 2 }
zipZoneNetStart OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The network that starts the range for this entry.
This address is a two octet DDP network address in
network byte order."
::= { zipEntry 3 }
zipZoneNetEnd OBJECT-TYPE
SYNTAX ATNetworkNumber
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The network that ends the range for this entry.
This address is a two octet DDP network address in
network byte order. If the network to which this
zip entry pertains is a non-extended network, the
value for zipZoneNetEnd shall be two octets of
zero."
::= { zipEntry 4 }
Waldbusser & Frisa [Page 46]
^L
RFC 1742 AppleTalk MIB II January 1995
zipZoneState OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of this zip entry.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in
the zipTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examination of the relevant zipZoneState
object."
::= { zipEntry 5 }
zipZoneFrom OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The address from which this zone name to network
number mapping was learned. The format of this
address can be determined by examining the
atportType corresponding to this entry. When this
mapping is learned from the entity itself, this
object shall have the value of three
octets of zero."
::= { zipEntry 6 }
zipZonePort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The AppleTalk port through which this zone name to
network number mapping was learned. The interface
identified by a particular value of this variable is
the same interface as identified by the same value
of atportIndex."
Waldbusser & Frisa [Page 47]
^L
RFC 1742 AppleTalk MIB II January 1995
::= { zipEntry 7 }
zipInZipQueries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP Queries received by this entity."
::= { zipRouter 2 }
zipInZipReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP Replies received by this entity."
::= { zipRouter 3 }
zipInZipExtendedReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP Extended Replies received by this
entity."
::= { zipRouter 4 }
zipZoneConflictErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times a conflict has been detected
between this entity's zone information and another
entity's zone information."
::= { zipRouter 5 }
zipInObsoletes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP Takedown or ZIP Bringup packets
received by this entity. Note that as the ZIP
Takedown and ZIP Bringup packets have been
obsoleted, the receipt of one of these packets
indicates that a node sent it in error."
::= { zipRouter 6 }
Waldbusser & Frisa [Page 48]
^L
RFC 1742 AppleTalk MIB II January 1995
-- The zipRouterNetInfoTable is used to record information
-- about zipGetNetInfo and zipGetNetInfo Reply packets that
-- were received on each port for a router. This table
-- augments the atportTable.
zipRouterNetInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZipRouterNetInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of Net Info packets received by each port
on this entity."
::= { zipRouter 7 }
zipRouterNetInfoEntry OBJECT-TYPE
SYNTAX ZipRouterNetInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of the Net Info packets received on
a particular port on this entity. One such entry
shall exist for each atport on this router entity.
As an example, an instance of the zipInGetNetInfos
object might be named zipInGetNetInfos.2"
INDEX { atportIndex }
::= { zipRouterNetInfoTable 1 }
ZipRouterNetInfoEntry ::= SEQUENCE {
zipInGetNetInfos Counter,
zipOutGetNetInfoReplies Counter,
zipZoneOutInvalids Counter,
zipAddressInvalids Counter
}
zipInGetNetInfos OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP GetNetInfo packets received on
this port by this entity."
::= { zipRouterNetInfoEntry 1 }
zipOutGetNetInfoReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
Waldbusser & Frisa [Page 49]
^L
RFC 1742 AppleTalk MIB II January 1995
DESCRIPTION
"The number of ZIP GetNetInfo Reply packets sent out
this port by this entity."
::= { zipRouterNetInfoEntry 2 }
zipZoneOutInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this entity has sent a ZIP
GetNetInfo Reply with the zone invalid bit set in
response to a GetNetInfo Request with an invalid
zone name."
::= { zipRouterNetInfoEntry 3 }
zipAddressInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this entity had to broadcast a
ZIP GetNetInfo Reply because the GetNetInfo Request
had an invalid address."
::= { zipRouterNetInfoEntry 4 }
-- The ZIP End Node Group
--
-- Implementation of this group is mandatory for all entities
-- that implement ZIP
--
-- This group consists of ZIP variables that would be
-- implemented by either a router or an end node.
-- The zipNetInfoTable is used to record information about
-- zipGetNetInfo and zipGetNetInfo Reply packets that were
-- received on each port of an entity. This table augments
-- the atportTable.
zipNetInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF ZipNetInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of Net Info packets received by each port
on this entity."
::= { zipEndNode 1 }
Waldbusser & Frisa [Page 50]
^L
RFC 1742 AppleTalk MIB II January 1995
zipNetInfoEntry OBJECT-TYPE
SYNTAX ZipNetInfoEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of the Net Info packets received on
a particular port on this entity. One such entry
shall exist for each atport on this entity.
As an example, an instance of the zipOutGetNetInfos
object might be named zipOutGetNetInfos.2"
INDEX { atportIndex }
::= { zipNetInfoTable 1 }
ZipNetInfoEntry ::= SEQUENCE {
zipOutGetNetInfos Counter,
zipInGetNetInfoReplies Counter,
zipZoneInInvalids Counter
}
zipOutGetNetInfos OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP GetNetInfo packets sent out this
port by this entity."
::= { zipNetInfoEntry 1 }
zipInGetNetInfoReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP GetNetInfo Reply packets received
on this port by this entity."
::= { zipNetInfoEntry 2 }
zipZoneInInvalids OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this entity has received a ZIP
GetNetInfo Reply with the zone invalid bit set
because the corresponding GetNetInfo Request had an
invalid zone name."
::= { zipNetInfoEntry 3 }
Waldbusser & Frisa [Page 51]
^L
RFC 1742 AppleTalk MIB II January 1995
zipInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP packets received by this entity
that were rejected for any error."
::= { zipEndNode 2 }
-- The NBP Group
--
-- Implementation of this group is mandatory for all entities
-- that implement NBP
nbpTable OBJECT-TYPE
SYNTAX SEQUENCE OF NbpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of NBP services registered on this entity."
::= { nbp 1 }
nbpEntry OBJECT-TYPE
SYNTAX NbpEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of an NBP service registered on this
entity.
As an example, an instance of the nbpZone object
might be named nbpZone.2"
INDEX { nbpIndex }
::= { nbpTable 1 }
NbpEntry ::= SEQUENCE {
nbpIndex INTEGER,
nbpObject ATName (SIZE (1..32)),
nbpType ATName (SIZE (1..32)),
nbpZone ATName,
nbpState INTEGER,
nbpAddress DdpSocketAddress,
nbpEnumerator INTEGER (0..255)
}
nbpIndex OBJECT-TYPE
SYNTAX INTEGER
Waldbusser & Frisa [Page 52]
^L
RFC 1742 AppleTalk MIB II January 1995
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The index of this NBP entry. This index is unique
with respect to the indexes of all other NBP entries,
and shall remain constant throughout the lifetime
of this object."
::= { nbpEntry 1 }
nbpObject OBJECT-TYPE
SYNTAX ATName (SIZE (1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The name of the service described by this entity.
When this variable is changed, the entity should
perform an NBP registration using the new nbpObject."
::= { nbpEntry 2 }
nbpType OBJECT-TYPE
SYNTAX ATName (SIZE (1..32))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The type of the service described by this entity.
When this variable is changed, the entity should
perform an NBP registration using the new nbpType."
::= { nbpEntry 3 }
nbpZone OBJECT-TYPE
SYNTAX ATName
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The zone the service described by this entity is
registered in. This must be the actual zone name,
without any wildcard characters. When this variable
is changed, the entity should perform an NBP
registration using the new nbpZone."
::= { nbpEntry 4 }
nbpState OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
registering(2), -- attempting to register the service
registrationFailed(3),
invalid(4)
}
Waldbusser & Frisa [Page 53]
^L
RFC 1742 AppleTalk MIB II January 1995
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of this NBP entry.
When the registration for an entry in the nbpTable
fails, it is an implementation-specific matter as to
how long the entry will remain in the
registrationFailed(3) state before moving to the
invalid(4) state. Note that the entry may pass
immediately from the registrationFailed state to
the invalid state.
Setting this object to the value invalid(4) has the
effect of invalidating the corresponding entry in the
nbpTable. That is, it effectively disassociates the
mapping identified with said entry. It is an
implementation-specific matter as to whether the agent
removes an invalidated entry from the table.
Accordingly, management stations must be prepared to
receive from agents tabular information corresponding
to entries not currently in use. Proper
interpretation of such entries requires examination
of the relevant nbpState object."
::= { nbpEntry 5 }
nbpAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The DDP network, node, and socket number of this
entity. If this is unspecified, for instance if the
registration is on all ports of a multiport device,
this object shall have the value of three octets of
zero, followed by one octet of socket number."
::= { nbpEntry 6 }
nbpEnumerator OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The enumerator assigned to this entity."
::= { nbpEntry 7 }
nbpInLookUpRequests OBJECT-TYPE
SYNTAX Counter
Waldbusser & Frisa [Page 54]
^L
RFC 1742 AppleTalk MIB II January 1995
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP LookUp Requests received."
::= { nbp 2 }
nbpInLookUpReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP LookUp Replies received."
::= { nbp 3 }
nbpInBroadcastRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP Broadcast Requests received."
::= { nbp 4 }
nbpInForwardRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP Forward Requests received."
::= { nbp 5 }
nbpOutLookUpReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP LookUp Replies sent."
::= { nbp 6 }
nbpRegistrationFailures OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this node experienced a failure
in attempting to register an NBP entity."
::= { nbp 7 }
Waldbusser & Frisa [Page 55]
^L
RFC 1742 AppleTalk MIB II January 1995
nbpInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP packets received by this entity
that were rejected for any error."
::= { nbp 8 }
-- The ATEcho Group
--
-- Implementation of this group is mandatory for all
-- entities that implement ATEcho
atechoRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of AppleTalk Echo requests received."
::= { atecho 1 }
atechoReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of AppleTalk Echo replies sent."
::= { atecho 2 }
atechoOutRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The count of AppleTalk Echo requests sent."
::= { atecho 3 }
atechoInReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The count of AppleTalk Echo replies received."
::= { atecho 4 }
Waldbusser & Frisa [Page 56]
^L
RFC 1742 AppleTalk MIB II January 1995
-- The ATP Group
--
-- Implementation of this group is mandatory for all entities
-- that implement ATP
atpInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ATP packets received by this entity."
::= { atp 1 }
atpOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ATP packets sent by this entity."
::= { atp 2 }
atpTRequestRetransmissions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times that a timeout occurred and a
Transaction Request packet needed to be
retransmitted by this host."
::= { atp 3 }
atpTResponseRetransmissions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times a timeout was detected and a
Transaction Response packet needed to be
retransmitted by this host."
::= { atp 4 }
atpReleaseTimerExpiredCounts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the release timer expired, as a
result of which a Request Control Block had to be
Waldbusser & Frisa [Page 57]
^L
RFC 1742 AppleTalk MIB II January 1995
deleted."
::= { atp 5 }
atpRetryCountExceededs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the retry count was exceeded,
and an error was returned to the client of ATP."
::= { atp 6 }
atpListenerTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtpListenerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The atpListenerTable stores information for each ATP
socket that has a listener."
::= { atp 7 }
atpListenerEntry OBJECT-TYPE
SYNTAX AtpListenerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"This atpListenerEntry contains information about a
particular socket that has a socket listener.
As an example, an instance of the atpListenerStatus
object might be named atpListenerStatus.0.80.220.3"
INDEX { atpListenerAddress }
::= { atpListenerTable 1 }
AtpListenerEntry ::= SEQUENCE {
atpListenerAddress DdpSocketAddress,
atpListenerStatus INTEGER
}
atpListenerAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The DDP address that this socket listener is bound
to. If this socket listener isn't bound to a
particular address, for instance if it is intended
for all interfaces, this object shall have the value
Waldbusser & Frisa [Page 58]
^L
RFC 1742 AppleTalk MIB II January 1995
of three octets of zero followed by one octet of
socket number."
::= { atpListenerEntry 1 }
atpListenerStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this socket.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in
the atpListenerTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examination of the relevant
atpListenerStatus object."
::= { atpListenerEntry 2 }
-- The PAP group
--
-- Implementation of this group is mandatory for all entities
-- that implement PAP
papInOpenConns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of PAP Open Connection requests received
by this entity."
::= { pap 1 }
papOutOpenConns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
Waldbusser & Frisa [Page 59]
^L
RFC 1742 AppleTalk MIB II January 1995
"The number of PAP Open Connection requests sent by
this entity."
::= { pap 2 }
papInDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of PAP Data messages received by
this entity."
::= { pap 3 }
papOutDatas OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of PAP Data messages sent by
this entity."
::= { pap 4 }
papInCloseConns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of PAP Close Connection requests
received by this entity."
::= { pap 5 }
papOutCloseConns OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of PAP Close Connection requests sent by
this entity."
::= { pap 6 }
papTickleTimeoutCloses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the PAP entity on this node
closed a connection because it didn't receive a
Tickle message before its timer expired."
Waldbusser & Frisa [Page 60]
^L
RFC 1742 AppleTalk MIB II January 1995
::= { pap 7 }
papServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF PapServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of servers on this entity that are
accessible through the Printer Access Protocol."
::= { pap 8 }
papServerEntry OBJECT-TYPE
SYNTAX PapServerEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A set of information about a particular PAP server's
configuration and performance.
As an example, an instance of the papServerStatus
object might be named papServerStatus.1"
INDEX { papServerIndex }
::= { papServerTable 1 }
PapServerEntry ::= SEQUENCE {
papServerIndex INTEGER,
papServerListeningSocket DdpSocketAddress,
papServerStatus DisplayString,
papServerCompletedJobs Counter,
papServerBusyJobs INTEGER,
papServerFreeJobs INTEGER,
papServerAuthenticationFailures Counter,
papServerAccountingFailures Counter,
papServerGeneralFailures Counter,
papServerState INTEGER,
papServerLastStatusMsg DisplayString
}
papServerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An unique value for each Printer Access Protocol
Server."
::= { papServerEntry 1 }
Waldbusser & Frisa [Page 61]
^L
RFC 1742 AppleTalk MIB II January 1995
papServerListeningSocket OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Server Listening Socket that this PAP server is
listening on."
::= { papServerEntry 2 }
papServerStatus OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status string of this server. This is the
message as it would appear in a PAP Status Reply
from this server."
::= { papServerEntry 3 }
papServerCompletedJobs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of jobs that have been accepted and
successfully executed by this server."
::= { papServerEntry 4 }
papServerBusyJobs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of GetNextJob calls that have accepted
and are currently executing a job."
::= { papServerEntry 5 }
papServerFreeJobs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum number of GetNextJob calls that are
currently waiting for a job."
::= { papServerEntry 6 }
Waldbusser & Frisa [Page 62]
^L
RFC 1742 AppleTalk MIB II January 1995
papServerAuthenticationFailures OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this PAP server rejected a job
because the job was not correctly authenticated."
::= { papServerEntry 7 }
papServerAccountingFailures OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this PAP server rejected a job
because the job did not fit some accounting rule,
such as exceeding a quota."
::= { papServerEntry 8 }
papServerGeneralFailures OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this PAP server rejected a job
for some reason other than authentication or
accounting failures."
::= { papServerEntry 9 }
papServerState OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of this PAP Server entry.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in
the papServerTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
Waldbusser & Frisa [Page 63]
^L
RFC 1742 AppleTalk MIB II January 1995
in use. Proper interpretation of such entries
requires examination of the relevant papServerState
object."
::= { papServerEntry 10 }
papServerLastStatusMsg OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last status message that was transmitted by
this server."
::= { papServerEntry 11 }
-- The ASP Group
--
-- Implementation of this group is mandatory for all entities
-- that implement ASP
aspInputTransactions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ASP requests and replies received by
this entity. Note that this is not necessarily the
number of packets containing ASP transactions."
::= { asp 1 }
aspOutputTransactions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ASP requests and replies sent by this
entity. Note that this is not necessarily the number
of packets containing ASP transactions."
::= { asp 2 }
aspInOpenSessions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ASP Open Session requests and replies
received by this entity."
::= { asp 3 }
Waldbusser & Frisa [Page 64]
^L
RFC 1742 AppleTalk MIB II January 1995
aspOutOpenSessions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ASP Open Session requests and replies
sent by this entity."
::= { asp 4 }
aspInCloseSessions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ASP Close Session requests and replies
received by this entity."
::= { asp 5 }
aspOutCloseSessions OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ASP Close Session requests and replies
sent by this entity."
::= { asp 6 }
aspNoMoreSessionsErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times an error condition was returned
because this server implementation could not support
another session."
::= { asp 7 }
aspTickleTimeOutCloses OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the ASP entity on this node
closed a connection because it didn't receive any
messages from the remote end before its timer
expired."
::= { asp 8 }
Waldbusser & Frisa [Page 65]
^L
RFC 1742 AppleTalk MIB II January 1995
aspConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF AspConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of ASP connections on this entity."
::= { asp 9 }
aspConnEntry OBJECT-TYPE
SYNTAX AspConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A set of information describing an ASP connection.
As an example, an instance of the aspConnState object
might be named
aspConnState.0.80.220.135.0.80.239.119.12"
INDEX { aspConnLocalAddress, aspConnRemoteAddress,
aspConnID }
::= { aspConnTable 1 }
AspConnEntry ::= SEQUENCE {
aspConnLocalAddress DdpSocketAddress,
aspConnRemoteAddress DdpSocketAddress,
aspConnID INTEGER (1..255),
aspConnLastReqNum INTEGER (1..65535),
aspConnServerEnd INTEGER,
aspConnState INTEGER
}
aspConnLocalAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The local address of this ASP connection."
::= { aspConnEntry 1 }
aspConnRemoteAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The remote address of this ASP connection. If
this entry is in the listening mode, this object
shall have a value of four octets of zero."
::= { aspConnEntry 2 }
Waldbusser & Frisa [Page 66]
^L
RFC 1742 AppleTalk MIB II January 1995
aspConnID OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The remote Connection ID of this ASP connection. If
this entry is in the listening mode, this object
shall have a value of zero."
::= { aspConnEntry 3 }
aspConnLastReqNum OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last request number on this ASP connection. If
this entry is in the listening mode, this object
shall have a value of zero."
::= { aspConnEntry 4 }
aspConnServerEnd OBJECT-TYPE
SYNTAX INTEGER {
sss(1), -- Server Session Socket
wss(2), -- Workstation Session Socket
sls(3) -- Server Listening Socket
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Specifies what mode the local session end is in."
::= { aspConnEntry 5 }
aspConnState OBJECT-TYPE
SYNTAX INTEGER {
open(1),
closed(2),
invalid(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of this ASP connection.
Setting this object to the value invalid(3) has the
effect of invalidating the corresponding entry in the
aspConnTable. That is, it effectively disassociates
the mapping identified with said entry. It is an
implementation-specific matter as to whether the agent
removes an invalidated entry from the table.
Waldbusser & Frisa [Page 67]
^L
RFC 1742 AppleTalk MIB II January 1995
Accordingly, management stations must be prepared to
receive from agents tabular information corresponding
to entries not currently in use. Proper
interpretation of such entries requires examination
of the relevant aspConnState object."
::= { aspConnEntry 6 }
-- The ADSP Group
--
-- Implementation of this group is mandatory for all entities
-- that implement ADSP
adspInPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ADSP packets received by this entity."
::= { adsp 1 }
adspOutPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ADSP packets sent by this entity."
::= { adsp 2 }
adspInOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data octets contained in ADSP packets
received by this entity. Note that this does not
include EOM bits."
::= { adsp 3 }
adspOutOctets OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data octets contained in ADSP packets
sent by this entity. Note that this does not include
EOM bits."
Waldbusser & Frisa [Page 68]
^L
RFC 1742 AppleTalk MIB II January 1995
::= { adsp 4 }
adspInDataPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ADSP data packets this entity has
received."
::= { adsp 5 }
adspOutDataPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ADSP data packets this entity has
sent."
::= { adsp 6 }
adspTimeoutErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the ADSP on this entity detected
an expired connection timer."
::= { adsp 7 }
adspTimeoutCloseErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the ADSP on this entity closed a
connection because of too many timeouts."
::= { adsp 8 }
adspConnTable OBJECT-TYPE
SYNTAX SEQUENCE OF AdspConnEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of ADSP connections on this entity."
::= { adsp 9 }
adspConnEntry OBJECT-TYPE
SYNTAX AdspConnEntry
Waldbusser & Frisa [Page 69]
^L
RFC 1742 AppleTalk MIB II January 1995
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A set of information describing an ADSP connection.
As an example, an instance of the adspConnState object
might be named
adspConnState.0.80.220.7.0.80.239.142.31231"
INDEX { adspConnLocalAddress, adspConnRemoteAddress,
adspConnLocalConnID }
::= { adspConnTable 1 }
AdspConnEntry ::= SEQUENCE {
adspConnLocalAddress DdpSocketAddress,
adspConnLocalConnID INTEGER (0..65535),
adspConnRemoteAddress DdpSocketAddress,
adspConnRemoteConnID INTEGER (0..65535),
adspConnState INTEGER
}
adspConnLocalAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The local DDP address of this ADSP connection."
::= { adspConnEntry 1 }
adspConnLocalConnID OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The local Connection ID of this ADSP connection. If
this entry specifies an ADSP listener, this value
shall be zero."
::= { adspConnEntry 2 }
adspConnRemoteAddress OBJECT-TYPE
SYNTAX DdpSocketAddress
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The remote DDP address of this ADSP connection. If
this entry specifies an ADSP listener, this value
shall be zero."
::= { adspConnEntry 3 }
adspConnRemoteConnID OBJECT-TYPE
Waldbusser & Frisa [Page 70]
^L
RFC 1742 AppleTalk MIB II January 1995
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The remote Connection ID of this ADSP connection.
If this entry specifies an ADSP listener, this value
shall be zero."
::= { adspConnEntry 4 }
adspConnState OBJECT-TYPE
SYNTAX INTEGER {
open(1),
localHalfOpen(2),
remoteHalfOpen(3),
listening(4),
closed(5),
invalid(6)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The state of this ADSP connection. The state is
open if both ends are established. If only one end
is established, then the state is half-open. If
neither end is established, then the state is
closed. If an ADSP server is listening on a socket
and is not yet connected, its state is set to
listening, and the adspConnRemoteAddress,
adspConnRemoteSocket, adspConnRemoteConnID, and
adspConnRemoteWindowSize are all set to zero.
Setting this object to the value invalid(6) has the
effect of invalidating the corresponding entry in
the adspConnTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examination of the relevant adspConnState
object."
::= { adspConnEntry 5 }
Waldbusser & Frisa [Page 71]
^L
RFC 1742 AppleTalk MIB II January 1995
-- The ATPortPtoP Group
--
-- Implementation of this group is mandatory for all entities
-- that implement AppleTalk point-to-point links
atportPtoPTable OBJECT-TYPE
SYNTAX SEQUENCE OF AtportPtoPEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of AppleTalk point-to-point connections for
this entity."
::= { atportptop 1 }
atportPtoPEntry OBJECT-TYPE
SYNTAX AtportPtoPEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of one of the AppleTalk
point-to-point connections on this entity.
As an example, an instance of the
atportPtoPRemoteAddress object might be named
atportPtoPRemoteAddress.2"
INDEX { atportPtoPIndex }
::= { atportPtoPTable 1 }
AtportPtoPEntry ::= SEQUENCE {
atportPtoPIndex INTEGER,
atportPtoPProtocol OBJECT IDENTIFIER,
atportPtoPRemoteName DisplayString,
atportPtoPRemoteAddress OCTET STRING,
atportPtoPPortIndex INTEGER,
atportPtoPStatus INTEGER
}
atportPtoPIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A unique value for each AppleTalk point-to-point
connection. Its value is between 1 and the total
number of AppleTalk point-to-point connections. The
value for each connection must remain constant at
least from the re-initialization of the entity's
network management system to the next
Waldbusser & Frisa [Page 72]
^L
RFC 1742 AppleTalk MIB II January 1995
re-initialization."
::= { atportPtoPEntry 1 }
atportPtoPProtocol OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The protocol type used over the point-to-point
connection."
::= { atportPtoPEntry 2 }
atportPtoPRemoteName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A text string containing the network node name of the
entity at the other end of the point-to-point link.
If the name is unknown or undefined, then this
string is zero length."
::= { atportPtoPEntry 3 }
atportPtoPRemoteAddress OBJECT-TYPE
SYNTAX OCTET STRING
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The network address of the entity at the other end
of the point-to-point link in network byte order.
The format of this address can be determined
by examinating the atportType corresponding to this
entry. If the address is unknown or undefined, then
this string is zero length."
::= { atportPtoPEntry 4 }
atportPtoPPortIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The AppleTalk port associated with this
point-to-point connection. The interface identified
by a particular value of this index is the same
interface as identified by the same value of
atportIndex."
::= { atportPtoPEntry 5 }
Waldbusser & Frisa [Page 73]
^L
RFC 1742 AppleTalk MIB II January 1995
atportPtoPStatus OBJECT-TYPE
SYNTAX INTEGER {
valid(1),
invalid(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of this entry in the atportPtoPTable.
Setting this object to the value invalid(2) has the
effect of invalidating the corresponding entry in
the atportPtoPTable. That is, it effectively
disassociates the mapping identified with said
entry. It is an implementation-specific matter as
to whether the agent removes an invalidated entry
from the table. Accordingly, management stations
must be prepared to receive from agents tabular
information corresponding to entries not currently
in use. Proper interpretation of such entries
requires examinationr of the relevant
atportPtoPStatus object."
::= { atportPtoPEntry 6 }
atportPtoPProtoOids OBJECT IDENTIFIER ::= { atportptop 2 }
-- A list of values to be used for the atportPtoPProtocol
-- variable.
-- When new protocols are defined, their oids may be defined
-- in separate MIB documents in different branches of the tree.
pToPProtoOther OBJECT IDENTIFIER ::= { atportPtoPProtoOids 1 }
pToPProtoAurp OBJECT IDENTIFIER ::= { atportPtoPProtoOids 2 }
pToPProtoCaymanUdp OBJECT IDENTIFIER ::=
{ atportPtoPProtoOids 3 }
pToPProtoAtkvmsDecnetIV OBJECT IDENTIFIER ::=
{ atportPtoPProtoOids 4 }
pToPProtoLiaisonUdp OBJECT IDENTIFIER ::=
{ atportPtoPProtoOids 5 }
pToPProtoIpx OBJECT IDENTIFIER ::= { atportPtoPProtoOids 6 }
pToPProtoShivaIp OBJECT IDENTIFIER ::=
{ atportPtoPProtoOids 7 }
Waldbusser & Frisa [Page 74]
^L
RFC 1742 AppleTalk MIB II January 1995
-- The Per Port Counters Group
--
-- Implementation of this group is optional.
perPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF PerPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table of per-port statistics for this entity."
::= { perPort 1 }
perPortEntry OBJECT-TYPE
SYNTAX PerPortEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The statistics available for a particular port on
this entity.
As an example, an instance of the perPortAarpInProbes
object might be named perPortAarpInProbes.2"
INDEX { atportIndex }
::= { perPortTable 1 }
PerPortEntry ::= SEQUENCE {
perPortAarpInProbes Counter,
perPortAarpOutProbes Counter,
perPortAarpInReqs Counter,
perPortAarpOutReqs Counter,
perPortAarpInRsps Counter,
perPortAarpOutRsps Counter,
perPortDdpInReceives Counter,
perPortDdpInLocalDatagrams Counter,
perPortDdpNoProtocolHandlers Counter,
perPortDdpTooShortErrors Counter,
perPortDdpTooLongErrors Counter,
perPortDdpChecksumErrors Counter,
perPortDdpForwRequests Counter,
perPortRtmpInDataPkts Counter,
perPortRtmpOutDataPkts Counter,
perPortRtmpInRequestPkts Counter,
perPortRtmpRouteDeletes Counter,
perPortZipInZipQueries Counter,
perPortZipInZipReplies Counter,
perPortZipInZipExtendedReplies Counter,
perPortZipZoneConflictErrors Counter,
perPortZipInErrors Counter,
Waldbusser & Frisa [Page 75]
^L
RFC 1742 AppleTalk MIB II January 1995
perPortNbpInLookUpRequests Counter,
perPortNbpInLookUpReplies Counter,
perPortNbpInBroadcastRequests Counter,
perPortNbpInForwardRequests Counter,
perPortNbpOutLookUpReplies Counter,
perPortNbpRegistrationFailures Counter,
perPortNbpInErrors Counter,
perPortEchoRequests Counter,
perPortEchoReplies Counter
}
perPortAarpInProbes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AARP Probe packets received
by this entity on this port."
::= { perPortEntry 1 }
perPortAarpOutProbes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AARP Probe packets sent by
this entity on this port."
::= { perPortEntry 2 }
perPortAarpInReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AARP Request packets received
by this entity on this port."
::= { perPortEntry 3 }
perPortAarpOutReqs OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AARP Request packets sent by
this entity on this port."
::= { perPortEntry 4 }
Waldbusser & Frisa [Page 76]
^L
RFC 1742 AppleTalk MIB II January 1995
perPortAarpInRsps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AARP Response packets received
by this entity on this port."
::= { perPortEntry 5 }
perPortAarpOutRsps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of AARP Response packets sent by
this entity on this port."
::= { perPortEntry 6 }
perPortDdpInReceives OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input datagrams received by DDP
on this port, including those received in error."
::= { perPortEntry 7 }
perPortDdpInLocalDatagrams OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams on this
port for which this entity was their final DDP
destination."
::= { perPortEntry 8 }
perPortDdpNoProtocolHandlers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of DDP datagrams addressed to this
entity on this port that were addressed to an upper
layer protocol for which no protocol handler
existed."
::= { perPortEntry 9 }
Waldbusser & Frisa [Page 77]
^L
RFC 1742 AppleTalk MIB II January 1995
perPortDdpTooShortErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams on this
port dropped because the received data length was
less than the data length specified in the DDP
header or the received data length was less than the
length of the expected DDP header."
::= { perPortEntry 10 }
perPortDdpTooLongErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams on this
port dropped because they exceeded the maximum DDP
datagram size."
::= { perPortEntry 11 }
perPortDdpChecksumErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of input DDP datagrams on this
port for which this DDP entity was their final
destination, and which were dropped because of a
checksum error." ::= { perPortEntry 12 }
perPortDdpForwRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of input datagrams on this port for
which this entity was not their final DDP
destination, as a result of which an attempt was
made to find a route to forward them to that final
destination."
::= { perPortEntry 13 }
perPortRtmpInDataPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
Waldbusser & Frisa [Page 78]
^L
RFC 1742 AppleTalk MIB II January 1995
STATUS mandatory
DESCRIPTION
"A count of the number of good RTMP data packets
received by this entity on this port."
::= { perPortEntry 14 }
perPortRtmpOutDataPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of RTMP packets sent by this
entity on this port."
::= { perPortEntry 15 }
perPortRtmpInRequestPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of good RTMP Request packets
received by this entity on this port."
::= { perPortEntry 16 }
perPortRtmpRouteDeletes OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A count of the number of times RTMP deletes a route
on this port because it was aged out of the table."
::= { perPortEntry 17 }
perPortZipInZipQueries OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP Queries received by this entity
on this port."
::= { perPortEntry 18 }
perPortZipInZipReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
Waldbusser & Frisa [Page 79]
^L
RFC 1742 AppleTalk MIB II January 1995
"The number of ZIP Replies received by this entity
on this port."
::= { perPortEntry 19 }
perPortZipInZipExtendedReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP Extended Replies received by this
entity on this port."
::= { perPortEntry 20 }
perPortZipZoneConflictErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times a conflict has been detected on
this port between this entity's zone information and
another entity's zone information."
::= { perPortEntry 21 }
perPortZipInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of ZIP packets received by this entity
on this port that were rejected for any error."
::= { perPortEntry 22 }
perPortNbpInLookUpRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP LookUp Requests received on this
port."
::= { perPortEntry 23 }
perPortNbpInLookUpReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP LookUp Replies received on this
Waldbusser & Frisa [Page 80]
^L
RFC 1742 AppleTalk MIB II January 1995
port."
::= { perPortEntry 24 }
perPortNbpInBroadcastRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP Broadcast Requests received on
this port."
::= { perPortEntry 25 }
perPortNbpInForwardRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP Forward Requests received on this
port."
::= { perPortEntry 26 }
perPortNbpOutLookUpReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP LookUp Replies sent on this port."
::= { perPortEntry 27 }
perPortNbpRegistrationFailures OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times this node experienced a failure
in attempting to register an NBP entity on this
port."
::= { perPortEntry 28 }
perPortNbpInErrors OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of NBP packets received by this entity
on this port that were rejected for any error."
::= { perPortEntry 29 }
Waldbusser & Frisa [Page 81]
^L
RFC 1742 AppleTalk MIB II January 1995
perPortEchoRequests OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of AppleTalk Echo requests received on
this port."
::= { perPortEntry 30 }
perPortEchoReplies OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The count of AppleTalk Echo replies received on
this port."
::= { perPortEntry 31 }
END
6. Acknowledgments
This document was produced by the IETF AppleTalk-IP Working Group.
In addition, the contribution of the following individuals is also
acknowledged:
Greg Bruell, Wellfleet
Phil Budne, Shiva
Robert Jeckell, 3Com
Greg Merrell, DEC
Greg Minshall, Novell, Inc.
Bob Morgan, Stanford University
Brad Parker, FCR
Marshall T. Rose, Dover Beach Consulting
Wayne Tackabury, Cayman
Jonathan Wenocur, Shiva
Waldbusser & Frisa [Page 82]
^L
RFC 1742 AppleTalk MIB II January 1995
7. References
[1] Cerf, V., "IAB Recommendations for the Development of Internet
Network Management Standards", RFC 1052, IAB, April 1988.
[2] Cerf, V., "Report of the Second Ad Hoc Network Management Review
Group", RFC 1109, IAB, August 1989.
[3] Rose M., and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based internets", STD 16, RFC
1155, Performance Systems International, Hughes LAN Systems, May
1990.
[4] McCloghrie K., and M. Rose, "Management Information Base for
Network Management of TCP/IP-based internets", RFC 1156, Hughes
LAN Systems, Performance Systems International, May 1990.
[5] Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple
Network Management Protocol", STD 15, RFC 1157, SNMP Research,
Performance Systems International, Performance Systems
International, MIT Laboratory for Computer Science, May 1990.
[6] Rose, M., Editor, "Management Information Base for Network
Management of TCP/IP-based internets: MIB-II", RFC 1158,
Performance Systems International, May 1990.
[7] Information processing systems - Open Systems Interconnection -
Specification of Abstract Syntax Notation One (ASN.1),
International Organization for Standardization, International
Standard 8824, December 1987.
[8] Information processing systems - Open Systems Interconnection -
Specification of Basic Encoding Rules for Abstract Notation One
(ASN.1), International Organization for Standardization,
International Standard 8825, December 1987.
[9] Rose, M., and K. McCloghrie, Editors, "Concise MIB Definitions",
STD 16, RFC 1212, Performance Systems International, Hughes LAN
Systems, March 1991.
[10] Gursharan S., Andrews, R., and A. Oppenheimer, "Inside
AppleTalk", Second Edition, Addison Wesley, 1990.
Waldbusser & Frisa [Page 83]
^L
RFC 1742 AppleTalk MIB II January 1995
Security Considerations
Security issues are not discussed in this memo.
9. Authors' Addresses
Steven Waldbusser
Carnegie Mellon University
5000 Forbes Ave.
Pittsburgh, PA 15213
Phone: 412-268-6628
EMail: waldbusser@cmu.edu
Karen Frisa
FORE Systems, Inc.
174 Thorn Hill Road
Warrendale, PA 15086-7535
Phone: 412-772-6541
EMail: kfrisa@fore.com
Waldbusser & Frisa [Page 84]
^L
|