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
|
Network Working Group L. Labarre, Editor
Request for Comments: 1214 MITRE
April 1991
OSI Internet Management: Management Information Base
Status of this Memo
This RFC specifies an IAB standards track protocol for the Internet
community, and requests discussion and suggestions for improvements.
Please refer to the current edition of the "IAB Official Protocol
Standards" for the standardization state and status of this protocol.
Distribution of this memo is unlimited.
Abstract
This RFC documents a MIB for use with CMIP, either over pure OSI
stacks or with the CMIP over TCP specification. It redefines objects
comprised by the second revision of the Management Information Base
for Network Management of TCP/IP-based internets: MIB-II so as to
conform to the OSI structure of management information. This
document is a product of the IETF OIM working group.
Table of Contents
1. Introduction................................................ 2
2. Additions to MIB-II......................................... 3
2.1 Structure of the OIM Subtree............................... 3
2.2 Supporting ISO Definitions................................. 3
2.3 Additions for Object Instance Identification............... 4
2.3.1 Distinguished Names...................................... 4
2.4 Events..................................................... 5
2.5 Containment (Naming) Tree Definition....................... 5
2.6 Changes from RFC 1158...................................... 6
3. Format of OSI Templates..................................... 7
4. Object Class Definitions.................................... 7
5. Attribute Definitions....................................... 16
6. Notifications............................................... 44
7. The Containment Hierarchy................................... 45
8. ASN.1 Definitions........................................... 49
9. Acknowledgements............................................ 54
References..................................................... 55
Appendix 1: Notational Tools for Managed Object Definition..... 57
A1.1 Overview of Notational Tools.............................. 57
A1.2 Conventions Used in Template Definitions.................. 58
A1.3 Managed Object Class Template............................ 60
A1.4 Package Template......................................... 63
OIM Working Group [Page 1]
^L
RFC 1214 MIB-II-OIM April 1991
A1.5 Parameter Template........................................ 67
A1.6 Name Binding Template.................................... 67
A1.7 Attribute Template........................................ 70
A1.8 Notification Template.................................... 73
Appendix 2: New Objects: Internet SMI Object Type Macros....... 76
Appendix 3: Supporting Definitions............................. 81
Security Considerations........................................ 82
Author's Address............................................... 83
1. Introduction
This memo defines the management information base (MIB) for use with
the OSI network management protocol in TCP/IP based internets. It
formats the Management Information Base (MIB-II) in OSI templates and
adds variables necessary for use with the OSI management protocol.
Together with internet memos that define agreements for using the OSI
management protocol to manage TCP/IP internets (RFC 1189) [3], the
management information base: MIB-II, and OSI standards defining the
structure of management information (ISO/IEC DIS 10165) [4,5,6],
these documents provide an OSI compatible architecture and system for
managing TCP/IP based internets and in particular the Internet
community.
This OSI version of the MIB specification is an incremental
refinement of MIB-II. It has been designed according to the
following policy: first, maintain compatibility with MIB-II by
including objects in MIB-II without changes to their registered
identifiers, syntax, and behaviour; second, format the MIB-II using
the OSI structure of information defined templates; third, add
attributes necessary for identification using the OSI management
protocol; fourth, identify object instances in a manner which is
compatible with development of a common application programming
interface for both CMIP and SNMP; and finally, define notifications
(events), including those defined by SNMP (RFC 1157) [14], deemed
necessary for management.
It is expected that the MIB will grow over time to accommodate the
changing needs of the Internet.
As reported in RFC 1109, Report of the Second Ad Hoc Network
Management Review Group [13], the requirements for SNMP and OSI
frameworks were more different than anticipated. Therefore, the
requirement for compatibility between the SMI/MIB for both frameworks
was suspended. This action allowed both frameworks to independently
define the MIB according to their SMI requirements and views of
management. The SNMP response included development of MIB-II. The
OSI response is this document which builds on the excellent work done
in MIB-II, and adds to it attributes necessary to map into the OSI
OIM Working Group [Page 2]
^L
RFC 1214 MIB-II-OIM April 1991
SMI.
The OIM network management framework consists of: Open Systems
Interconnection - Structure of Management Information: Parts 1-4,
ISO/IEC DIS 10165 [4,5,6], with slight modifications to maintain
compatibility with RFC 1155 [11]; OSI Internet Management:
Management Information Base, this memo; and the OSI Common Management
Information Service (CMIS) [7] and Common Management Information
Protocol (CMIP) [8].
2. Additions to MIB-II
Additions to MIB-II fall into the following categories: the addition
of the managed object class "top" from which all object classes are
derived; additions for object instance identification purposes
according to the OSI SMI; additions for generation of asynchronous
events; the addition of name bindings which define the binding
between objects in the containment (naming) hierarchy; and the
addition of proposed changes to RFC 1158 that are expected to be
accepted by the IETF [16].
2.1 Structure of the OIM Subtree
The oim subtree structure is defined below. Note that the "cmot"
subtree has been relabeled to "oim".
cmot OBJECT IDENTIFIER ::= {mib 9}
oim OBJECT IDENTIFIER ::= {cmot}
cmotVersion OBJECT IDENTIFIER ::= {oim 1}
cmotACSEInfo OBJECT IDENTIFIER ::= {oim 2}
cmotSystemId OBJECT IDENTIFIER ::= {oim 3}
misc OBJECT IDENTIFIER ::= {oim 4}
objects OBJECT IDENTIFIER ::= {oim 5}
attributes OBJECT IDENTIFIER ::= {oim 6}
events OBJECT IDENTIFIER ::= {oim 7}
nameforms OBJECT IDENTIFIER ::= {oim 8}
actions OBJECT IDENTIFIER ::= {oim 9}
2.2 Supporting ISO Definitions
The OSI defined managed object class "top" [5], as defined by OSI,
has been added to the MIB. This managed object class is the root of
the inheritance hierarchy. The class "top" contains attributes that
are inherited by all objects in the MIB. Pending the progression of
ISO/IEC DIS 10165 to an International Standard status, "top" and its
associated attributes are registered in Appendix 3.
OIM Working Group [Page 3]
^L
RFC 1214 MIB-II-OIM April 1991
2.3 Additions for Object Instance Identification
The conventions for identifying objects in the OIM MIB-II for use
with CMIP are defined below.
2.3.1 Distinguished Names
The distinguished name of an object shall consist of a sequence of
relative distinguished names, one for each object on the containment
path from the root to the object. Each relative distinguished name
shall contain exactly one attribute, the "naming" attribute for the
corresponding class, as specified by a NAME BINDING template. The
CMIP ObjectInstance shall be encoded using the distinguishedName
choice.
Object classes for which there is only a single instance normally
implemented in a managed system, other than the "system" managed
object class, shall use an empty string for their naming attribute
value, i.e., a string of length zero.
The format of the naming attribute for the "system" managed object
class and object classes which normally have multiple instances,
e.g., table entries, are defined in the attribute templates for the
naming attributes of those classes. The formats for naming
attributes of table entries are compatible with instance
identification conventions used by SNMP, thereby facilitating the
development of a common application programming interface that may
interface to either protocol.
For example, a distinguished name designating a particular routing
table entry (of class ipRouteEntry) might be
{
{ sysName = "troi.mitre.org"}
{ ipId = ""}
{ ipRoutingTableId = "" }
{ ipRouteEntryId = "129.83.2.17" }
}.
The naming attributes for each OIM MIB-II managed object class listed
in section 5 may be determined by reference to the NAME BINDING
templates listed in section 8. The naming attribute definitions can
be found in the alphabetical listing of all attributes in section 6.
The following attributes have been defined for MIB-II object classes
for purposes of object instance identification.
OIM Working Group [Page 4]
^L
RFC 1214 MIB-II-OIM April 1991
Attribute Identifier Object
ifTableId {attributes 1} ifTable
atTableId {attributes 2} atTable
atEntryId {attributes 3} atEntry
ipId {attributes 4} ip
ipAddrTableId {attributes 5} ipAddrTable
ipRoutingTableId {attributes 6} ipRoutingtable
ipNetToMediaTableId {attributes 7} ipNetToMediaTable
ipNetToMediaEntryId (attributes 8} ipNetToMediaEntry
icmpId {attributes 9} icmp
tcpId {attributes 10} tcp
tcpConnTableId {attributes 11} tcpConnTable
tcpConnId {attributes 12} tcpConnEntry
udpId {attributes 13} udp
udpTable
udpEntryId {attributes 15} udpEntry
egpId {attributes 16} egp
egpNeighTableId {attributes 17} egpneighTable
snmpId {attributes 18} snmp
ipAdEntryId {attributes 19} ipAddrEntry
ipRouteEntryId {attributes 20} ipRouteEntry
ifEntryId {attributes 21} ifEntry
egpNeighEntryId {attributes 22} egpNeighEntry
ifId {attributes 23} interfaces
2.4 Events
Events have been defined in accordance with the OSI SMI. These
events include those defined for SNMP. The OSI SMI requires that
events (notifications) are part of a specific managed object class
definition. Accordingly the SNMP defined events have been assigned
to specific objects within the MIB.
Event Identifier Object
coldStartEvent {events 0} system
warmStartEvent {events 1} system
linkDownEvent {events 2} ifEntry
linkUpEvent {events 3} ifEntry
snmpAuthentFailureEvent {events 4} snmp
egpNeighborLossEvent {events 5} egpNeighEntry
entSpecificEvent {events 6} system
2.5 Containment (Naming) Tree Definition
The OSI SMI requires that object classes be bound into the
containment hierarchy for purposes of naming. The binding must
OIM Working Group [Page 5]
^L
RFC 1214 MIB-II-OIM April 1991
specify for the managed object class: a) the object which is superior
to it in the containment hierarchy; and b) an attribute in the
managed object class that is used to distinguish instances of the
object at a given level in the containment hierarchy. The
containment tree begins with "root". Agents in managed systems will
consider root to be immediately above the "system" object in the
containment hierarchy. They may ignore any relative distinguished
names that precede the relative distinguished name for "system".
The name bindings for objects in the OIM MIB-II are specified in
section 8.
2.6 Changes from RFC 1158
The proposed successor to RFC 1158 [16] contains several minor
additions that have been incorporated into this document.
o The sysLocation attribute of the system managed object
class is changed to GET-REPLACE.
o The ipRouteMetric5 and ipRouteInfo attributes are
added to the ipRouteEntry managed object class.
o The textual descriptor of the snmpEnableAuthTraps is
changed to snmpEnableAuthenTraps.
o The PhysAddress textual convention is introduced to
represent media addresses.
o The definition of sysServices is clarified.
o New ifType values (29-32) are defined. In
addition, the textual-descriptor for the DS1 and E1
interface types is corrected.
o The definition of ipForwarding is clarified.
o The definition of ipRouteType is clarified.
o The tcpConnState attribute is now GET-REPLACE, to
support deletion of the TCB associated with a TCP
connection. The definition of this object is
clarified to explain this usage.
o The definition of egpNeighEventTrigger is clarified.
o The definition of several of the variables in the new
snmp group are clarified. In addition, the
OIM Working Group [Page 6]
^L
RFC 1214 MIB-II-OIM April 1991
snmpInBadTypes and snmpOutReadOnlys objects are no
longer present. (However, the object identifiers associated
with those objects are reserved to prevent future use.)
o The definition of snmpInReadOnlys is clarified.
o The ipRoutingDiscards attribute is added to the ip object.
o The optional use of an implementation-dependent, small
positive integer is disallowed when identifying
instances of the IP address and routing tables.
3. Format of OSI Templates
The format of OSI templates is defined in ISO/IEC DIS 10165-4 [6],
Open Systems Interconnection - Structure of Management Information -
Part 4: Guidelines for Managed Object Definition.
The template definitions relevant to this document are included in
Appendix 1.
4. Object Class Definitions
The Internet SMI objects are recast into OSI template form using the
following conventions:
o MIB II groups become OSI object classes,
except for the "at" group which has no attributes.
o Tables become OSI object classes.
o Table entries become OSI object classes.
o All other object types become OSI attributes and are
assigned to object classes according to their association
in MIB II.
The templates for the OIM MIB-II object classes are listed in
alphabetical order below.
atEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
atEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
atEntryId GET,
OIM Working Group [Page 7]
^L
RFC 1214 MIB-II-OIM April 1991
atIfIndex GET-REPLACE,
atPhysAddress GET-REPLACE,
atNetAddress GET-REPLACE;;;
REGISTERED AS { atTable 1};
atTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
atTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
atTableId GET;;;
REGISTERED AS { at 1};
egp MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
egpPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
egpId GET,
egpInMsgs GET,
egpInErrors GET,
egpOutMsgs GET,
egpOutErrors GET,
egpAs GET;;;
REGISTERED AS { mib 8};
egpNeighEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
egpNeighEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
egpNeighEntryId GET,
egpNeighState GET,
egpNeighAddr GET,
egpNeighAs GET,
egpNeighInMsgs GET,
egpNeighInErrs GET,
egpNeighOutMsgs GET,
egpNeighOutErrs GET,
egpNeighInErrMsgs GET,
egpNeighOutErrMsgs GET,
egpNeighStateUps GET,
egpNeighStateDowns GET,
egpNeighIntervalHello GET,
egpNeighIntervalPoll GET,
OIM Working Group [Page 8]
^L
RFC 1214 MIB-II-OIM April 1991
egpNeighMode GET,
egpNeighEventTrigger GET-REPLACE;
NOTIFICATIONS
egpNeighborLossEvent;;;
REGISTERED AS { egpNeighTable 1};
egpNeighTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
egpNeighTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
egpNeighTableId GET;;;
REGISTERED AS { egp 5};
icmp MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
icmpPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
icmpId GET,
icmpInMsgs GET,
icmpInErrors GET,
icmpInDestUnreachs GET,
icmpInTimeExcds GET,
icmpInParmProbs GET,
icmpInSrcQuenchs GET,
icmpInRedirects GET,
icmpInEchos GET,
icmpInEchoReps GET,
icmpInTimestamps GET,
icmpInTimestampReps GET,
icmpInAddrMasks GET,
icmpInAddrMaskReps GET,
icmpOutMsgs GET,
icmpOutErrors GET,
icmpOutDestUnreachs GET,
icmpOutTimeExcds GET,
icmpOutParmProbs GET,
icmpOutSrcQuenchs GET,
icmpOutRedirects GET,
icmpOutEchos GET,
icmpOutEchoReps GET,
icmpOutTimestamps GET,
icmpOutTimestampReps GET,
icmpOutAddrMasks GET,
icmpOutAddrMaskReps GET;;;
OIM Working Group [Page 9]
^L
RFC 1214 MIB-II-OIM April 1991
REGISTERED AS { mib 5};
ifEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ifEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ifEntryId GET,
ifIndex GET,
ifDescr GET,
ifType GET,
ifMtu GET,
ifSpeed GET,
ifPhysAddress GET,
ifAdminStatus GET-REPLACE,
ifOperStatus GET,
ifLastChange GET,
ifInOctets GET,
ifInUcastPkts GET,
ifInNUcastPkts GET,
ifInDiscards GET,
ifInErrors GET,
ifInUnknownProtos GET,
ifOutOctets GET,
ifOutUcastPkts GET,
ifOutNUcastPkts GET,
ifOutDiscards GET,
ifOutErrors GET,
ifOutQLen GET,
ifSpecific GET;
NOTIFICATIONS
linkUpEvent,
linkDownEvent;;;
REGISTERED AS { ifTable 1};
ifTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ifTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ifTableId GET;;;
REGISTERED AS { interface 2};
interfaces MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
OIM Working Group [Page 10]
^L
RFC 1214 MIB-II-OIM April 1991
interfacesPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ifId GET,
ifNumber GET;;;
REGISTERED AS { mib 2};
ip MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipId GET,
ipForwarding GET-REPLACE,
ipDefaultTTL GET-REPLACE,
ipInReceives GET,
ipInHdrErrors GET,
ipInAddrErrors GET,
ipForwDatagrams GET,
ipInUnknownProtos GET,
ipInDiscards GET,
ipInDelivers GET,
ipOutRequests GET,
ipOutDiscards GET,
ipOutNoRoutes GET,
ipReasmTimeout GET,
ipReasmReqds GET,
ipReasmOKs GET,
ipReasmFails GET,
ipFragOKs GET,
ipFragFails GET,
ipFragCreates GET,
ipRoutingDiscards GET;;;
REGISTERED AS { mib 4};
ipAddrEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipAddrEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipAdEntryId GET,
ipAdEntAddr GET,
ipAdEntIfIndex GET,
ipAdEntNetMask GET,
ipAdEntBcastAddr GET,
ipAdEntReasmMaxSize GET;;;
OIM Working Group [Page 11]
^L
RFC 1214 MIB-II-OIM April 1991
REGISTERED AS { ipAddrTable 1};
ipAddrTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipAddrTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipAddrTableId GET;;;
REGISTERED AS { ip 20};
ipNetToMediaEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipNetToMediaEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipNetToMediaEntryId GET,
ipNetToMediaIfIndex GET-REPLACE,
ipNetToMediaPhysAddress GET-REPLACE,
ipNetToMediaNetAddress GET-REPLACE,
ipNetToMediaType GET-REPLACE;;;
REGISTERED AS { ipNetToMediaTable 1};
ipNetToMediaTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipNetToMediaTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipNetToMediaTableId GET;;;
REGISTERED AS { ip 22};
ipRouteEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipRouteEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipRouteEntryId GET,
ipRouteDest GET-REPLACE,
ipRouteIfIndex GET-REPLACE,
ipRouteMetric1 GET-REPLACE,
ipRouteMetric2 GET-REPLACE,
ipRouteMetric3 GET-REPLACE,
ipRouteMetric4 GET-REPLACE,
ipRouteMetric5 GET-REPLACE,
ipRouteNextHop GET-REPLACE,
OIM Working Group [Page 12]
^L
RFC 1214 MIB-II-OIM April 1991
ipRouteType GET-REPLACE,
ipRouteProto GET,
ipRouteAge GET-REPLACE,
ipRouteMask GET-REPLACE,
ipRouteInfo GET-REPLACE;;;
REGISTERED AS { ipRoutingTable 1};
ipRoutingTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
ipRoutingTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
ipRoutingTableId GET;;;
REGISTERED AS { ip 21};
snmp MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
snmpPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
snmpId GET,
snmpInPkts GET,
snmpInBadVersions GET,
snmpInBadCommunityNames GET,
snmpInBadCommunityUses GET,
snmpInASNParseErrs GET,
snmpInTooBigs GET,
snmpInNoSuchNames GET,
snmpInBadValues GET,
snmpInReadOnlys GET,
snmpInGenErrs GET,
snmpInTotalReqVars GET,
snmpInTotalSetVars GET,
snmpInGetRequests GET,
snmpInGetNexts GET,
snmpInSetRequests GET,
snmpInGetResponses GET,
snmpInTraps GET,
snmpOutPkts GET,
snmpOutTooBigs GET,
snmpOutNoSuchNames GET,
snmpOutBadValues GET,
snmpOutGenErrs GET,
snmpOutGetRequests GET,
snmpOutGetNexts GET,
snmpOutSetRequests GET,
OIM Working Group [Page 13]
^L
RFC 1214 MIB-II-OIM April 1991
snmpOutGetResponses GET,
snmpOutTraps GET,
snmpEnableAuthenTraps GET-REPLACE;
NOTIFICATIONS
snmpAuthentFailureEvent;;;
REGISTERED AS {mib 11};
system MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
systemPkg PACKAGE
-- SEE MIB II [16] for attribute semantics
ATTRIBUTES
sysDescr GET,
sysObjectId GET,
sysUpTime GET,
sysContact GET-REPLACE,
sysName GET-REPLACE,
-- MAJOR HEALTH WARNING sysName is the
-- naming attribute and should not be
-- modified via remote management without
-- coordinated local system changes
sysLocation GET-REPLACE,
sysServices GET;
NOTIFICATIONS
coldStartEvent,
warmStartEvent,
entSpecificEvent;;;
REGISTERED AS {mib 1};
tcp MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
tcpPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
tcpId GET,
tcpRtoAlgorithm GET,
tcpRtoMin GET,
tcpRtoMax GET,
tcpMaxConn GET,
tcpActiveOpens GET,
tcpPassiveOpens GET,
tcpAttemptFails GET,
tcpEstabResets GET,
tcpCurrEstab GET,
tcpInSegs GET,
tcpOutSegs GET,
OIM Working Group [Page 14]
^L
RFC 1214 MIB-II-OIM April 1991
tcpRetransSegs GET,
tcpInErrs GET,
tcpOutRsts GET;;;
REGISTERED AS { mib 6};
tcpConnEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
tcpConnEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
tcpConnId GET,
tcpConnState GET-REPLACE,
tcpConnLocalAddress GET,
tcpConnLocalPort GET,
tcpConnRemAddress GET,
tcpConnRemPort GET;;;
REGISTERED AS { tcpConnTable 1 };
tcpConnTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
tcpConnTablePkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
tcpConnTableId GET;;;
REGISTERED AS { tcp 13 };
udp MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
udpPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
udpId GET,
udpInDatagrams GET,
udpNoPorts GET,
udpInErrors GET,
udpOutDatagrams GET;;;
REGISTERED AS { mib 7};
udpEntry MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
udpEntryPkg PACKAGE
-- see MIB II [16] for attribute semantics
ATTRIBUTES
OIM Working Group [Page 15]
^L
RFC 1214 MIB-II-OIM April 1991
udpEntryId GET,
udpLocalAddress GET,
udpLocalPort GET;;;
REGISTERED AS { udpTable 1 };
udpTable MANAGED OBJECT CLASS
DERIVED FROM top;
CHARACTERIZED BY
udpTablePkg PACKAGE
-- see MIB II [16] for semantics
ATTRIBUTES
udpTableId GET;;;
REGISTERED AS { udp 5 };
5. Attribute Definitions
Attribute templates for the attributes referenced in the managed
object class templates of section 5 are listed here in alphabetical
order.
atEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- identifies the atEntry instance
-- <index>".1." <address>, where <index is the decimal
-- representation of atIfIndex and <address> is atNetAddress
-- represented in "dot notation". The "1" subidentifier
-- indicates that the address is an IP address.
REGISTERED AS {attributes 3};
atIfIndex ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {atEntry 1};
atNetAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.NetworkAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {atEntry 3};
atPhysAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.PhysAddress;
MATCHES FOR Equality;
OIM Working Group [Page 16]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {atEntry 2};
atTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute identifies the instance of
-- the address table which is being used.
-- An empty string is used for a single
-- instance.
REGISTERED AS {attributes 2};
egpAs ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egp 6};
egpId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- EGP entity naming attribute.
-- An empty string is used for a single instance.
REGISTERED AS {attributes 16};
egpInErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egp 2};
egpInMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egp 1};
egpNeighAddr ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 2};
egpNeighAs ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 17]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 3};
egpNeighEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- identifies the egp neighbor table entry.
-- egpNeighAddr encoded in "dot notation".
REGISTERED AS {attributes 22};
egpNeighEventTrigger ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.EgpNeighEventTrigger;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 15};
egpNeighInErrMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 8};
egpNeighInErrs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 5};
egpNeighInMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 4};
egpNeighIntervalHello ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 12};
egpNeighIntervalPoll ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 18]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 13};
egpNeighMode ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.EgpNeighMode;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 14};
egpNeighOutErrMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 9};
egpNeighOutErrs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 7};
egpNeighOutMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 6};
egpNeighState ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.EgpNeighState;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 1};
egpNeighStateDowns ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 11};
egpNeighStateUps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egpNeighEntry 10};
OIM Working Group [Page 19]
^L
RFC 1214 MIB-II-OIM April 1991
egpNeighTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute uniquely identifies the
-- egp neighbor table
-- An empty string is used for a single instance.
REGISTERED AS {attributes 17};
egpOutErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egp 4};
egpOutMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {egp 3};
icmpId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute uniquely identifies the
-- ICMP object instance
-- An empty string is used for a single instance.
REGISTERED AS {attributes 9};
icmpInAddrMaskReps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 13};
icmpInAddrMasks ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 12};
icmpInDestUnreachs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 20]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 3};
icmpInEchoReps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 9};
icmpInEchos ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 8};
icmpInErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 2};
icmpInMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 1};
icmpInParmProbs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 5};
icmpInRedirects ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 7};
icmpInSrcQuenchs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 6};
OIM Working Group [Page 21]
^L
RFC 1214 MIB-II-OIM April 1991
icmpInTimeExcds ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 4};
icmpInTimestampReps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 11};
icmpInTimestamps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 10};
icmpOutAddrMaskReps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 26};
icmpOutAddrMasks ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 25};
icmpOutDestUnreachs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 16};
icmpOutEchoReps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 22};
OIM Working Group [Page 22]
^L
RFC 1214 MIB-II-OIM April 1991
icmpOutEchos ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 21};
icmpOutErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 15};
icmpOutMsgs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 14};
icmpOutParmProbs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 18};
icmpOutRedirects ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 20};
icmpOutSrcQuenchs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 19};
icmpOutTimeExcds ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 17};
OIM Working Group [Page 23]
^L
RFC 1214 MIB-II-OIM April 1991
icmpOutTimestampReps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 24};
icmpOutTimestamps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {icmp 23};
ifAdminStatus ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.IfAdminStatus;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 7};
ifDescr ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 2};
ifEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- The decimal representation of ifIndex.
REGISTERED AS {attributes 21};
ifId ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.PrintString;
MATCHES FOR Equality;
-- An empty string is used for a single instance.
REGISTERED AS {attributes 23};
ifIndex ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 1};
ifInDiscards ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
OIM Working Group [Page 24]
^L
RFC 1214 MIB-II-OIM April 1991
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 13};
ifInErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 14};
ifInNUcastPkts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 12};
ifInOctets ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 10};
ifInUcastPkts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 11};
ifInUnknownProtos ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 15};
ifLastChange ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.TimeTicks;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 9};
ifMtu ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 4};
ifNumber ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
OIM Working Group [Page 25]
^L
RFC 1214 MIB-II-OIM April 1991
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {interfaces 1};
ifOperStatus ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.IfOperStatus;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 8};
ifOutDiscards ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 19};
ifOutErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 20};
ifOutNUcastPkts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 18};
ifOutOctets ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 16};
ifOutQLen ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Gauge;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 21};
ifOutUcastPkts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 17};
OIM Working Group [Page 26]
^L
RFC 1214 MIB-II-OIM April 1991
ifPhysAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.PhysAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 6};
ifSpecific ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.ObjectId;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 22};
ifSpeed ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Gauge;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 5};
ifTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- an empty string
REGISTERED AS {attributes 1};
ifType ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.IfType;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ifEntry 3};
ipAddrTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute provides a unique id
-- which identifies the address table.
-- An empty string is used for a single instance.
REGISTERED AS {attributes 5};
ipAdEntAddr ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipAddrEntry 1};
ipAdEntBcastAddr ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
OIM Working Group [Page 27]
^L
RFC 1214 MIB-II-OIM April 1991
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipAddrEntry 4};
ipAdEntIfIndex ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipAddrEntry 2};
ipAdEntNetMask ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipAddrEntry 3};
ipAdEntReasmMaxSize ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer64k;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipAddrEntry 5};
ipAdEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute uniquely identifies the ip address
-- table entry. The format is:
-- <addr> , where <addr> is ipAdEntAddr
-- represented in "dot notation".
REGISTERED AS {attributes 19};
ipDefaultTTL ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 2};
ipForwarding ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.IpForwarding;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 1};
ipForwDatagrams ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
OIM Working Group [Page 28]
^L
RFC 1214 MIB-II-OIM April 1991
REGISTERED AS {ip 6};
ipFragCreates ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 19};
ipFragFails ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 18};
ipFragOKs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 17};
ipId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- identifies the Ip entity.
-- An empty string is used for a single instance
REGISTERED AS {attributes 4};
ipInAddrErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 5};
ipInDelivers ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 9};
ipInDiscards ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 8};
ipInHdrErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
OIM Working Group [Page 29]
^L
RFC 1214 MIB-II-OIM April 1991
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 4};
ipInReceives ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 3};
ipInUnknownProtos ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 7};
ipNetToMediaEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- identifies an instance of IpNetToMediaEntry
-- <interface> "." <address>, where <interface> is the
-- decimal representation of ipNetToMediaIfIndex and
-- <address> is ipNetToMediaNetAddress in
-- "dot notation".
REGISTERED AS {attributes 8};
ipNetToMediaIfIndex ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipNetToMediaEntry 1};
ipNetToMediaNetAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipNetToMediaEntry 3};
ipNetToMediaPhysAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PhysAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipNetToMediaEntry 2};
OIM Working Group [Page 30]
^L
RFC 1214 MIB-II-OIM April 1991
ipNetToMediaTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This is the distinguishing attribute for the
-- Ip Net to Media Table.
-- An empty string is used for a single instance.
REGISTERED AS {attributes 7};
ipNetToMediaType ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.IpNetToMediaType;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipNetToMediaEntry 4};
ipOutDiscards ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 11};
ipOutNoRoutes ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 12};
ipOutRequests ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 10};
ipReasmFails ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 16};
ipReasmOKs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 15};
ipReasmReqds ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
OIM Working Group [Page 31]
^L
RFC 1214 MIB-II-OIM April 1991
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 14};
ipReasmTimeout ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 13};
ipRouteAge ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 10};
ipRouteDest ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 1};
ipRouteEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute identifies the ip route table entry.
-- The format is <dest>, where <dest> is
-- ipRouteDest represented in "dot notation.
REGISTERED AS {attributes 20};
ipRouteIfIndex ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 2};
ipRouteInfo ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.ObjectId;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 13};
ipRouteMask ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 11};
OIM Working Group [Page 32]
^L
RFC 1214 MIB-II-OIM April 1991
ipRouteMetric1 ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 3};
ipRouteMetric2 ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 4};
ipRouteMetric3 ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 5};
ipRouteMetric4 ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 6};
ipRouteMetric5 ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 12};
ipRouteNextHop ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 7};
ipRouteProto ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.IpRouteProto;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 9};
ipRouteType ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.IpRouteType;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ipRouteEntry 8};
OIM Working Group [Page 33]
^L
RFC 1214 MIB-II-OIM April 1991
ipRoutingDiscards ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {ip 23};
ipRoutingTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- unique id which identifies the
-- Ip Routing Table instance.
-- An empty string is used for a single instance.
REGISTERED AS {attributes 6};
snmpEnableAuthenTraps ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.SnmpEnableAuthenTraps;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 30};
snmpId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- naming attribute for snmp
-- An empty string is used for a single instance.
REGISTERED AS {attributes 18};
snmpInASNParseErrs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 6};
snmpInBadCommunityNames ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 4};
snmpInBadCommunityUses ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 34]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 5};
snmpInBadValues ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 10};
snmpInBadVersions ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 3};
snmpInGenErrs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 12};
snmpInGetNexts ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 16};
snmpInGetRequests ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 15};
snmpInGetResponses ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 18};
snmpInNoSuchNames ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 35]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 9};
snmpInPkts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 1};
snmpInReadOnlys ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 11};
snmpInSetRequests ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 17};
snmpInTooBigs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 8};
snmpInTotalReqVars ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 13};
snmpInTotalSetVars ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 14};
snmpInTraps ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 19};
OIM Working Group [Page 36]
^L
RFC 1214 MIB-II-OIM April 1991
snmpOutBadValues ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 22};
snmpOutGenErrs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 24};
snmpOutGetNexts ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 26};
snmpOutGetRequests ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 25};
snmpOutGetResponses ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 28};
snmpOutNoSuchNames ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 21};
snmpOutPkts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 2};
OIM Working Group [Page 37]
^L
RFC 1214 MIB-II-OIM April 1991
snmpOutSetRequests ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 27};
snmpOutTooBigs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 20};
snmpOutTraps ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {snmp 29};
sysContact ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {system 4};
sysDescr ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {system 1};
sysLocation ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {system 6};
sysName ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
-- The nodes domain name.
REGISTERED AS {system 5};
OIM Working Group [Page 38]
^L
RFC 1214 MIB-II-OIM April 1991
sysObjectId ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.ObjectId;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {system 2};
sysServices ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer128;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {system 7};
sysUpTime ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.TimeTicks;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {system 3};
tcpActiveOpens ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 5};
tcpAttemptFails ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 7};
tcpConnId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- identifies an instance of tcpConnEntry
-- <laddr> "." <lport> "." <raddr> "." <rport>, where
-- <laddr> is the "dot notation" representation of
-- tcpConnLocalAddress,
-- <lport> is the decimal representation of
-- tcpConnLocalPort,
-- <raddr> is the "dot notation" representation of
-- tcpConnRemAddress, and
--<rport> is the decimal representation of
-- tcpConnRemPort.
REGISTERED AS {attributes 12};
OIM Working Group [Page 39]
^L
RFC 1214 MIB-II-OIM April 1991
tcpConnLocalAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcpConnEntry 2};
tcpConnLocalPort ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer64k;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcpConnEntry 3};
tcpConnRemAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcpConnEntry 4};
tcpConnRemPort ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer64k;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcpConnEntry 5};
tcpConnState ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.TcpConnState;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcpConnEntry 1};
tcpConnTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute defines a unique index of
-- tcpConnEntry in the TCP Connection Table
-- An empty string is used for a single instance.
REGISTERED AS {attributes 11};
tcpCurrEstab ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Gauge;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 9};
tcpEstabResets ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 40]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 8};
tcpId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute uniquely identified a tcp
-- object instance
-- An empty string is used for a single instance.
REGISTERED AS {attributes 10};
tcpInErrs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 14};
tcpInSegs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 10};
tcpMaxConn ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 4};
tcpOutRsts ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 15};
tcpOutSegs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 11};
tcpPassiveOpens ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
OIM Working Group [Page 41]
^L
RFC 1214 MIB-II-OIM April 1991
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 6};
tcpRetransSegs ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 12};
tcpRtoAlgorithm ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.TcpRtoAlgorithm;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 1};
tcpRtoMax ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 3};
tcpRtoMin ATTRIBUTE
WITH ATTRIBUTE SYNTAX OIM-Module.Integer;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {tcp 2};
udpEntryId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute defines an entry
-- for the UDP Listener Table
-- <port> "." <address>, where <port> is the decimal
-- representation of udpLocalPort and <address> is
-- udpLocalAddress represented in "dot notation".
REGISTERED AS {attributes 15};
udpId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute provides a unique id to
-- identify the UDP entity.
-- An empty string is used for a single instance.
REGISTERED AS {attributes 13};
OIM Working Group [Page 42]
^L
RFC 1214 MIB-II-OIM April 1991
udpInDatagrams ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {udp 1};
udpInErrors ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {udp 3};
udpLocalAddress ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.IpAddress;
MATCHES FOR Equality;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {udpEntry 1};
udpLocalPort ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.Integer64k;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {udpEntry 2};
udpNoPorts ATTRIBUTE
WITH ATTRIBUTE SYNTAX RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {udp 2};
udpOutDatagrams ATTRIBUTE
WITH ATTRIBUTE SYNTAX
RFC1065-SMI.Counter;
MATCHES FOR Equality, Ordering;
-- SEE MIB II [16] for attribute semantics
REGISTERED AS {udp 4};
udpTableId ATTRIBUTE
WITH ATTRIBUTE SYNTAX
OIM-Module.PrintString;
MATCHES FOR Equality;
-- This attribute defines a unique id
-- for the UDP Listener Table
-- An empty string is used for a single instance.
REGISTERED AS {attributes 14};
OIM Working Group [Page 43]
^L
RFC 1214 MIB-II-OIM April 1991
6. Notifications
Notification templates for the notifications referenced in the
managed object class templates of section 5 are listed here in
alphabetical order.
coldStartEvent NOTIFICATION
-- clause 4.1.6.1 of RFC1157
-- emitted by system
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo
REGISTERED AS {events 0};
egpNeighborLossEvent NOTIFICATION
-- clause 4.1.6.6 of RFC1157
-- with generic-trap = 5
-- The first VarBindList element
-- contains the name and value of the
-- egpNeighAddr of the affected
-- neighbor.
-- emitted by egpNeighEntry
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo;
REGISTERED AS {events 5};
linkDownEvent NOTIFICATION
-- clause 4.1.6.3 of RFC1157
-- emitted by ifEntry
-- with generic-trap = 2
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo;
REGISTERED AS {events 2};
linkUpEvent NOTIFICATION
-- clause 4.1.6.4 of RFC1157
-- emitted by ifEntry
-- with generic-trap = 3
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo;
REGISTERED AS {events 3};
snmpAuthentFailureEvent NOTIFICATION
-- clause 4.1.6.5 of RFC1157
-- emitted by snmp
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo;
REGISTERED AS {events 4};
OIM Working Group [Page 44]
^L
RFC 1214 MIB-II-OIM April 1991
entSpecificEvent NOTIFICATION
-- clause 4.1.6.7 of RFC1157
-- emitted by system
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo;
REGISTERED AS {events 6};
warmStartEvent NOTIFICATION
-- clause 4.1.6.2 of RFC1157
-- emitted by system
MODE NON-CONFIRMED;
WITH INFORMATION SYNTAX OIM-Module.SnmpTrapInfo;
REGISTERED AS {events 1};
7. The Containment Hierarchy
Name Binding templates that define the containment hierarchy for the
OIM MIB-II are listed here in alphabetical order. The containment
hierarchy within a managed system begins at the "system" managed
object.
atEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS atEntry;
NAMED BY SUPERIOR OBJECT CLASS atTable;
WITH ATTRIBUTE atEntryId;
CREATE;
DELETE only-if-no-contained-objects;
REGISTERED AS { nameForms 5};
atTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS atTable;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE atTableId;
REGISTERED AS { nameForms 4};
egp-nf NAME BINDING
SUBORDINATE OBJECT CLASS egp;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE egpId;
REGISTERED AS { nameForms 20};
egpNeighEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS egpNeighEntry;
NAMED BY SUPERIOR OBJECT CLASS egpNeighTable;
WITH ATTRIBUTE egpNeighEntryId;
CREATE;
DELETE only-if-no-contained-objects;
OIM Working Group [Page 45]
^L
RFC 1214 MIB-II-OIM April 1991
REGISTERED AS { nameForms 22};
egpNeighTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS egpNeighTable;
NAMED BY SUPERIOR OBJECT CLASS egp;
WITH ATTRIBUTE egpNeighTableId;
REGISTERED AS { nameForms 21};
icmp-nf NAME BINDING
SUBORDINATE OBJECT CLASS icmp;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE icmpId;
REGISTERED AS { nameForms 13};
interfaces-nf NAME BINDING
SUBORDINATE OBJECT CLASS interfaces;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE ifId;
REGISTERED AS { nameForms 24};
ifEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS ifEntry;
NAMED BY SUPERIOR OBJECT CLASS ifTable;
WITH ATTRIBUTE ifEntryId;
CREATE;
DELETE only-if-no-contained-objects;
REGISTERED AS { nameForms 3};
ifTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS ifTable;
NAMED BY SUPERIOR OBJECT CLASS interfaces;
WITH ATTRIBUTE ifTableId;
REGISTERED AS { nameForms 2};
ip-nf NAME BINDING
SUBORDINATE OBJECT CLASS ip;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE ipId;
REGISTERED AS { nameForms 6};
ipAddrEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS ipAddrEntry;
NAMED BY SUPERIOR OBJECT CLASS ipAddrTable;
WITH ATTRIBUTE ipAdEntryId;
CREATE;
DELETE only-if-no-contained-objects;
REGISTERED AS { nameForms 8};
OIM Working Group [Page 46]
^L
RFC 1214 MIB-II-OIM April 1991
ipAddrTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS ipAddrTable;
NAMED BY SUPERIOR OBJECT CLASS ip;
WITH ATTRIBUTE ipAddrTableId;
REGISTERED AS { nameForms 7};
ipNetToMediaEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS ipNetToMediaEntry;
NAMED BY SUPERIOR OBJECT CLASS ipNetToMediaTable;
WITH ATTRIBUTE ipNetToMediaEntryId;
CREATE;
DELETE only-if-no-contained-objects;
REGISTERED AS { nameForms 12};
ipNetToMediaTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS ipNetToMediaTable;
NAMED BY SUPERIOR OBJECT CLASS ip;
WITH ATTRIBUTE ipNetToMediaTableId;
REGISTERED AS { nameForms 11};
ipRouteEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS ipRouteEntry;
NAMED BY SUPERIOR OBJECT CLASS ipRoutingTable;
WITH ATTRIBUTE ipRouteEntryId;
CREATE;
DELETE only-if-no-contained-objects;
REGISTERED AS { nameForms 10};
ipRoutingTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS ipRoutingTable;
NAMED BY SUPERIOR OBJECT CLASS ip;
WITH ATTRIBUTE ipRoutingTableId;
REGISTERED AS { nameForms 9};
snmp-nf NAME BINDING
SUBORDINATE OBJECT CLASS snmp;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE snmpId;
REGISTERED AS { nameForms 23};
system-nf NAME BINDING
SUBORDINATE OBJECT CLASS system;
NAMED BY SUPERIOR OBJECT CLASS root;
WITH ATTRIBUTE sysName;
REGISTERED AS { nameForms 1 };
OIM Working Group [Page 47]
^L
RFC 1214 MIB-II-OIM April 1991
tcp-nf NAME BINDING
SUBORDINATE OBJECT CLASS tcp;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE tcpid;
REGISTERED AS { nameForms 14};
tcpConnEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS tcpConnEntry;
NAMED BY SUPERIOR OBJECT CLASS tcpConnTable;
WITH ATTRIBUTE tcpConnId;
REGISTERED AS { nameForms 16};
tcpConnTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS tcpConnTable;
NAMED BY SUPERIOR OBJECT CLASS tcp;
WITH ATTRIBUTE tcpConnTableId;
REGISTERED AS { nameForms 15};
udp-nf NAME BINDING
SUBORDINATE OBJECT CLASS udp;
NAMED BY SUPERIOR OBJECT CLASS system;
WITH ATTRIBUTE udpId;
REGISTERED AS { nameForms 17};
udpEntry-nf NAME BINDING
SUBORDINATE OBJECT CLASS udpEntry;
NAMED BY SUPERIOR OBJECT CLASS udpTable;
WITH ATTRIBUTE udpEntryId;
REGISTERED AS { nameForms 19};
udpTable-nf NAME BINDING
SUBORDINATE OBJECT CLASS udpTable;
NAMED BY SUPERIOR OBJECT CLASS udp;
WITH ATTRIBUTE udpTableId;
REGISTERED AS { nameForms 18};
OIM Working Group [Page 48]
^L
RFC 1214 MIB-II-OIM April 1991
8. ASN.1 Definitions
The ASN.1 syntax referenced by the attribute templates in section 6
are either defined in RFC1065-SMI, the Attribute-ASN1Module of
ISO/IEC DIS 10165-2, or in the OIM-Module defined in this section.
This module includes some syntax definitions taken from the RFC1158
since they were not included in that document inside an ASN.1 module
and hence could not be externally referenced.
OIM-Module {iso org(3) dod(6) internet(1) mgmt(2) mib(1)
oim(9) misc(4) 1}
DEFINITIONS ::=
BEGIN
-- EXPORTS Everything
IMPORTS ObjectClass, ObjectInstance
FROM CMIP-1{joint-iso-ccitt ms(9) cmip(1)
modules(0) protocol(3)}
ObjectName, ObjectSyntax
FROM RFC1065-SMI;
mib OBJECT IDENTIFIER ::= {iso org(3) dod(6)
internet(1) mgmt(2) 1}
at OBJECT IDENTIFIER ::= {mib 3}
oim OBJECT IDENTIFIER ::= {mib 9}
cmotVersion OBJECT IDENTIFIER ::= {oim 1}
cmotACSEInfo OBJECT IDENTIFIER ::= {oim 2}
cmotSystemId OBJECT IDENTIFIER ::= {oim 3}
misc OBJECT IDENTIFIER ::= {oim 4}
objects OBJECT IDENTIFIER ::= {oim 5}
attributes OBJECT IDENTIFIER ::= {oim 6}
events OBJECT IDENTIFIER ::= {oim 7}
nameforms OBJECT IDENTIFIER ::= {oim 8}
actions OBJECT IDENTIFIER ::= {oim 9}
-- Generic and MIB specific syntax
EgpNeighEventTrigger ::= INTEGER {
start(1),
stop(2)
}
EgpNeighMode ::= INTEGER {
active(1),
passive(2)
}
EgpNeighState ::= INTEGER {
OIM Working Group [Page 49]
^L
RFC 1214 MIB-II-OIM April 1991
idle(1),
acquisition(2),
down(3),
up(4),
cease(5)
}
Integer ::= INTEGER
Integer128 ::= INTEGER (0..127)
Integer64k ::= INTEGER (0..65535)
IfAdminStatus ::= INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
IfOperStatus ::= INTEGER {
up(1), -- ready to pass packets
down(2),
testing(3) -- in some test mode
}
IfType INTEGER {
other(1), -- none of the following
regular1822(2),
hdh1822(3),
ddn-x25(4),
rfc877-x25(5),
ethernet-csmacd(6),
iso88023-csmacd(7),
iso88024-tokenBus(8),
iso88025-tokenRing(9),
iso88026-man(10),
starLan(11),
proteon-10Mbit(12),
proteon-80Mbit(13),
hyperchannel(14),
fddi(15),
lapb(16),
sdlc(17),
ds1(18),
e1(19), -- european equivalent
-- of T-1
basicISDN(20),
primaryISDN(21),
OIM Working Group [Page 50]
^L
RFC 1214 MIB-II-OIM April 1991
-- proprietary serial
propPointToPointSerial(22),
ppp(23),
softwareLoopback(24),
eon(25), -- CLNP over IP
ethernet-3Mbit(26),
nsip(27), -- XNS over IP
slip(28), -- generic SLIP
ultra(29), -- ULTRA technologies
ds3(30), -- T-3
sip(31), -- SMDS
frame-relay(32)
}
IpForwarding ::= INTEGER {
forwarding(1), -- acting as a gateway
not-forwarding(2) -- NOT acting as
-- a gateway
}
IpNetToMediaType ::= INTEGER {
other(1), -- none of the
-- following
invalid(2), -- an invalidated
-- mapping
dynamic(3),
static(4) }
IpRouteProto ::= INTEGER {
other(1), -- none of the
-- following
local(2), -- configured entries
netmgmt(3), -- mgmt protocol
icmp(4), -- obtained via ICMP,
-- e.g., redirect
egp(5),
ggp(6),
hello(7),
rip(8),
is-is(9),
es-is(10),
ciscoIgrp(11),
bbnSpfIgp(12),
ospf(13),
bgp(14)
}
OIM Working Group [Page 51]
^L
RFC 1214 MIB-II-OIM April 1991
IpRouteType ::= INTEGER {
other(1), -- none of the
-- following
invalid(2), -- an invalidated
-- route
direct(3), -- route to directly
-- connected
-- subnetwork
indirect(4) -- route to a
-- non-local
-- host/network/
-- subnet
}
OIM Working Group [Page 52]
^L
RFC 1214 MIB-II-OIM April 1991
ObjectId ::= OBJECT IDENTIFIER
OctetString ::= OCTET STRING
PhysAddress ::= OCTET STRING
PrintString ::= DisplayString (SIZE (0..255))
DisplayString ::= OCTET STRING
--
-- DisplayString is restricted to the NVT ASCII character set as
-- defined in pages 10-11 of RFC 854 "TELNET Protocol
-- Specification", May 1983 [15].
--
-- SNMP trap syntax
SnmpEnableAuthenTraps ::= INTEGER {
enabled(1),
disabled(2)
}
SnmpTrapInfo ::= SEQUENCE {
enterprise -- type of device generating
-- event
-- see sysObjectId
OBJECT IDENTIFIER,
agent-addr -- address of device generating
-- the event
NetworkAddress,
generic-trap INTEGER {coldStart (0),
warmStart (1),
linkDown (2),
linkUp (3),
authenticationFailure (4),
egpNeighborLoss (5),
enterpriseSpecific (6) },
specific-trap INTEGER OPTIONAL, -- enterprise specific
variable-bindings VarBindList OPTIONAL}
VarBindList ::= SEQUENCE OF VarBind
VarBind ::= SEQUENCE {
name ObjectName,
ovalue ObjectSyntax}
TcpConnState ::= INTEGER {
closed(1),
listen(2),
OIM Working Group [Page 53]
^L
RFC 1214 MIB-II-OIM April 1991
synSent(3),
synReceived(4),
established(5),
finWait1(6),
finWait2(7),
closeWait(8),
lastAck(9),
closing(10),
timeWait(11),
deleteTCP(12) }
TcpRtoAlgorithm ::= INTEGER {
other(1), -- none of the
-- following
constant(2), -- a constant rto
rsre(3), -- MIL-STD-1778,
-- Appendix B
vanj(4) -- Van Jacobsons alg.
}
END
9. Acknowledgements
The editor acknowledges the contributions of the members of the OIM
working group. Particular thanks are made to the following for their
comments and assistance:
Marvin Solomon, University of Wisconsin
Nancy Hall, University of Wisconsin
Subhendu Ghatak, University of Tennessee at Knoxville
OIM Working Group [Page 54]
^L
RFC 1214 MIB-II-OIM April 1991
References
1. ISO 8824: Information Processing - Open System Interconnection -
Specification of Abstract Syntax Notation One (ASN.1), February
1989.
2. ISO/IEC 7498-4, Information Processing Systems- Open Systems
Interconnection - Basic Reference Model Part 4 - OSI Management
Framework.
3. Warrier, U., Besaw, L., and LaBarre, L., and B. Handspicker, "The
Common Management Information Services and Protocol for the
Internet (CMOT and CMIP)", RFC 1189, Netlabs, Hewlett-Packard,
The Mitre Corporation, Digital Equipment Corporation, October
1990.
4. ISO/IEC DIS 10165-1, Information Processing Systems - Open
Systems Interconnection-Structure of Management Information -
Part 1: Management Information Model, July 1990.
5. ISO/IEC DIS 10165-2 (ISO/IEC JTC1/SC21 N4072), Information
Processing Systems -Open Systems Interconnection - Structure of
Management Information - Part 2: Definition of Management
Information, July 1990.
6. ISO/IEC DIS 10165-4 (ISO/IEC JTC1/SC21 N4065), Information
Processing Systems - Open Systems Interconnection - Structure of
Management Information - Part 4: Guidelines for the Definition of
Managed Objects, June 1990.
7. ISO 9595, Information Processing Systems - Open Systems
Interconnection - Management Information Service Definition -
Common Management Information Service, November 1990.
8. ISO 9596, Information Processing Systems - Open Systems
Interconnection - Management Information Protocol Specification -
Common Management Information Protocol, November 1990.
9. ISO 8649, Information Processing Systems - Open Systems
Interconnection, Service Definition for the Association Control
Service Element.
10. ISO 9072-1, Information Processing Systems - Text Communication,
Remote Operations: Model, Notation and Service Definition,
Gloucester, Nov 1987.
11. Rose, M., and K. McCloghrie, "Structure and Identification of
Management Information for TCP/IP-based internets", RFC 1155,
OIM Working Group [Page 55]
^L
RFC 1214 MIB-II-OIM April 1991
Performance Systems International, Hughes LAN Systems, May 1990.
12. Rose, M., Editor, "Management Information Base for Network
Management of TCP/IP-based internets: MIB-II", RFC 1158,
Performance Systems International, May 1990.
13. Cerf, V., "Report of the Second Ad Hoc Network Management Review
Group", RFC 1109, NRI, August 1989.
14. Case, J., Fedor, M., Schoffstall, M., and J. Davin, "Simple
Network Management Protocol (SNMP)", RFC 1157, SNMP Research,
Performance Systems International, Performance Systems
International, MIT Laboratory for Computer Science, May 1990.
15. Postel, J., and J. Reynolds, "Telnet Protocol Specification", RFC
854, USC/Information Sciences Institute, May 1983.
16. McCloghrie, K., and M. Rose, "Management Information Base for
Network Management of TCP/IP-based internets: MIB-II", RFC 1213,
Hughes LAN Systems, Performance Systems International, March
1991.
17. Working Implementation Agreements for Open Systems
Interconnection Protocols, December 1990.
OIM Working Group [Page 56]
^L
RFC 1214 MIB-II-OIM April 1991
Appendix 1: Notational Tools for Managed Object Definition
This section provides descriptions of the notational tools used to
define the templates defined in this memorandum. The text is
excerpted and paraphrased from reference 6. Only the templates used
in this document are included here. For a complete description of
the notational tools specified for OSI management, see reference 6.
A1.1 Overview of Notational Tools
The "Templates" defined in this clause provide a common set of tools
and a common format for the representation of the various aspects of
a managed object class definition and its associated naming
structure. Formal definitions of each template will be found in
clauses A1.3 -A1.11 inclusive; the syntactic conventions used in
these formal definitions are specified in clause A1.2. Examples of
the use of these tools may be found in Annex A (of 10165-4).
The structure and behaviour of a managed object class is primarily
defined by means of the Managed Object Class Template. This template
identifies the inheritance relationships that exist between the class
and other managed object classes, the packages of class specific
behaviour, the attributes that are associated with the class, the
notifications that the class may issue and the operations that may be
performed upon the class. In order to allow re-use of parts of this
specification in the specification of other managed object classes,
additional templates are defined to provide for the specification of
attributes (individual and group), behaviour, actions, notifications
and conditional packages. These other templates are "called up" by
the Managed Object Class template by means of the referencing
mechanism defined in clause A1.2; this mechanism allows references to
be made in one standard to specifications that are contained in other
standards, hence allowing "generic" specifications to be made
available for use in managed object class definitions in addition to
local specifications. Templates may also be included "in-line" if so
desired.
The naming of a managed object class is defined by means of the Name
Binding template. This template identifies the managed object class
being named and defines the relative distinguished name that will be
used to name instances of the class in the context of a particular
superior class. This template also provides for the specification of
relationships that exist between two object classes as a consequence
of a particular name binding.
OIM Working Group [Page 57]
^L
RFC 1214 MIB-II-OIM April 1991
A1.2 Conventions Used in Template Definitions
The templates definitions contained in this clause are based on the
following syntactic conventions:
- Strings surrounded by [ ] delimit parts of the template that may
either be present or absent in each instance of use of the
template. If the closing brace is followed by an asterisk,
e.g., [ ]*, the contents of the braces may appear zero or more
times. The circumstances under which these parts of the
definition may be omitted or repeated are dependent upon the
template type;
- Strings surrounded by < > delimit strings that must be replaced in
each instance of use of the template. The structure and meaning
of the replacement string is dependent upon the string type;
- Upper case strings denote Keywords which are required to be
present in each instance of use of the template, unless they are
enclosed in [ ];
- The solidus, |, is used to separate alternative strings in the
template;
- Spaces and carriage returns are significant only as string
delimiters;
- In order to simplify the structure of the templates, particularly
where the same syntactic structure is repeated in the template
definitions, supporting syntactic definitions may be defined. If
any such supporting syntactic definitions are required in order to
complete the template definition, these appear following the
keywords "supporting productions" at the end of the template
definition. These supporting definitions take the general form
definition-label-> syntactic-definition
where definition-label allows the definition to be referenced by the
template definition and syntactic-definition gives the expansion of
the definition, using the above notational rules;
- The templates themselves have the general structure:
<template-label>TEMPLATE NAME
[ELEMENT NAME [<element-definition>] ;]*
[REGISTERED AS <object-identifier> ;]
OIM Working Group [Page 58]
^L
RFC 1214 MIB-II-OIM April 1991
[supporting productions
[<definition-label> -> <syntactic-definition >]*]
Each instance of use of a template therefore declares a template-
label by which that instance may be referenced from other templates,
and if the REGISTERED AS clause is present, assigns a value of an
ASN.1 OBJECT IDENTIFIER under which the instance has been registered;
- Semicolons are used to mark the end of each distinct element in
the template. In an instance of use of the template, any text
inserted between a semicolon and the next valid keyword is
assumed to be a comment;
- The notation used for representing object identifiers is the
normal notation defined in ASN.1 for object identifier values;
i.e., the production:
object-identifier-> <ASN.l ObjectIdentifierValue notation>
is assumed to be a supporting production for all template
definitions in this document;
- Further definitions, such as the nature of the element definitions,
follow the syntactic definition of the template;
- Template labels shall be unique within the standard or document
in which they are declared. Where a template-label is declared in
document A and referenced in document B, the reference in
document B shall be prefixed by the globally unique name of
document A. In the case of documents named by an
internationally recognized naming authority such as
[CCITT|ISO/IEC], the registered name of the document shall be
used as the identifier, such as [Recommendation X.722|ISO/IEC
10165-4]. Where a globally unique name is not already available,
it is permissible to assign the value of an OBJECT IDENTIFIER to
the referenced document, and use this value as a globally unique
document name. The syntax of a template-label, defined using the
above notation, is defined as follows:
[<document-identifier> :] < label-string>
document-identifier-> "<standard-name>" | <object-identifier>
A label-string may include any number of the following characters:
- upper or lower case alphabetic characters;
OIM Working Group [Page 59]
^L
RFC 1214 MIB-II-OIM April 1991
- the digits 0-9;
- the hyphen character (-);
in any order, commencing with a lower case character. For example,
the following template-label:
"ISO/IEC 10165/4":exampleObjectClass
constitutes a globally unique label for the definition of
exampleObjectClass contained in Annex A of 10165-4.
Label references that are not prefixed by a document-identifier are
assumed to refer to labels declared in the document in which the
reference appears.
- Whenever a template-label is present in a template as a
pointer to another template, it may be replaced by the entire
text of the referenced template itself (including the
template's label).
A1.3 Managed Object Class Template
A1.3.1 Overview
The Managed Object Class template forms the basis of the formal
definition of a managed object. Elements in the template allow the
class to be placed at the appropriate node of the inheritance tree,
the various attributes of the class to be specified, and the
behaviour of the class to be defined. The major elements of the
definition are:
- Inheritance. Each managed object class defines the
superclass(es) from which it has been derived. All
characteristics of the superclass(es) are inherited by the
subclass; the subclass definition may add to these
characteristics (refinement) but may not remove any
characteristics of the superclass. Ultimately, all classes are
subclasses of TOP;
- Allomorphs. If the class supports allomorphism, the set of
classes that are legitimate allomorphic views of the class must
be defined. These classes must all be superclasses of the class
being defined;
- Mandatory Packages. The managed object class definition
includes the packages of behaviour, attributes, operations and
notifications that provide a complete specification of the
OIM Working Group [Page 60]
^L
RFC 1214 MIB-II-OIM April 1991
behaviour that is common to all instances of the class;
- Conditional Packages. The managed object class definition
includes the specification of packages of behaviour, attributes,
operations and notifications that are present or absent in
instances of that class as a consequence of a specified condition;
Note: Attributes, Operations and Notifications that form part of a
class definition may only be omitted from an instance of that class
if they are defined as features of a Conditional Package and are
omitted in accordance with the condition defined for that package.
- Class Naming. The managed object class definition must include a
class name which may be used to refer to the class in CMIP. This
is achieved by registration of an Object Identifier value which
corresponds to the class.
A1.3.2 Template Structure
<class-label> MANAGED OBJECT CLASS
[DERIVED FROM <class-label>
[, <class-label>]*;
]
[ALLOMORPHIC SET <class-label>
[, < class-label > ] *;
]
[CHARACTERIZED BY <package-label>[,<package-label>]*;
]
[CONDITIONAL PACKAGES <package-label> PRESENT IF
<condition-definition>
[,<package-label> PRESENT IF
<condition-definition>]*;
]
[PARAMETERS <parameter-label> [,<parameter-label>]*;
]
REGISTERED AS < object-identifier>;
A1.3.3 Supporting Definitions
DERIVED FROM <class-label>[,<class-label>]*
The DERIVED FROM clause shall be present in all managed object class
definitions other than "top". It is therefore the case that "top" is
a superclass of all classes other than itself.
The class-label identifies a managed object class from which the
OIM Working Group [Page 61]
^L
RFC 1214 MIB-II-OIM April 1991
managed object class has been derived; i.e., a managed object class
which is one of the object class's parents in the inheritance
hierarchy. As multiple inheritance is permitted, a managed object
class may have one or more parent classes.
The process of inheritance (specialization) requires all the
characteristics of the superclass(es) other than DERIVED FROM and
ALLOMORPHIC SET to be included in the definition of the subclass. If
it is intended that the subclass be allomorphic, the definition of
the subclass shall include a ALLOMORPHIC SET clause that explicitly
defines the set of classes that the subclass is allomorphic to.
Where multiple inheritance results in the same element definition
being multiply imported (as could happen, for example, if two parent
superclasses contain the same attribute), the subclass is assumed to
contain a single copy of the definition concerned.
Characteristics that are inherited from a superclass shall not be
repeated in the documentation of the subclass unless one of the
techniques described in ISO/IEC 10165-4 for extending or modifying an
element of the superclass is being used. The DERIVED FROM clause is
therefore presumed to automatically import all inheritable elements
of definition from the superclass definition(s). There may be
augmented or modified by elements defined within the CHARACTERISED
BY, CONDITIONAL PACKAGES, and PARAMETER constructs.
ALLOMORPHIC SET <class-label>[,<class-label>]*
The Allomorphic Set allows a set of superclasses to be identified
that are "backwards compatible" with the managed object class. Thus,
if managed object class A identifies classes B and C as members of
its allomorphic set, it is possible to operate on an instance of
class A as if it were an instance of class B or C. The definition of
allomorphic forms allows, for example, the definition of enhanced
versions of a managed object class that are backwards compatible with
previous versions. The class label shall identify the class-label of
a managed object class definition that is a superclass of the managed
object class that is being defined.
CHARACTERIZED BY <package-label>[,<package-label]*
This construct, if present, allows one or more mandatory packages of
behaviour, attributes, operations, and notifications to be included
in the managed object class definition, in addition to those that are
present as a result of the Derived From construct.
CONDITIONAL PACKAGES <package-label> PRESENT IF <condition-
definition>[, <package-label> PRESENT IF <condition-definition>]*
OIM Working Group [Page 62]
^L
RFC 1214 MIB-II-OIM April 1991
Present if one or more conditional packages are to be included in the
managed object class definition. The package-label identifies the
package definition that is applicable. The condition-definition is a
description of the condition that, if true, requires that the package
be included in an instance of the class. The condition shall refer
to a documented feature of the definition of the underlying resource
or a related standard which is permitted to be present or absent in
an implementation.
PARAMETERS <parameter-label>[,<parameter-label>]*
If present, this construct permits the definition of parameters to be
included in the object class definition in addition to any inherited
parameters.
REGISTERED AS <object-identifier>
The object identifier value provides a globally unique identifier for
the object class definition. This value is used in the management
protocol when it is necessary to identify the object class.
A1.4 Package Template
This template allows a package of behaviour definitions, attributes,
operations and notifications to be defined for subsequent insertion
into a managed object class template under the Characterized By and
Conditional Packages constructs. The major elements of the
definition are:
- Behaviour. The managed object class definition provides a
complete specification of the behaviour of the object. This
includes:
- The effect of the Operations upon the managed object;
- Any constraints that are placed on operations in order to
satisfy consistency rules, and in particular, the rules under
which Creation and Deletion of managed objects may be
performed and the consequences of these operations;
- A specification of how instances of a managed object class
interact with each other, related, managed objects of the same
or different classes.
- A complete definition of any other aspects of the
behaviour of the managed object class.
- Contained attributes. The set of attributes that the
OIM Working Group [Page 63]
^L
RFC 1214 MIB-II-OIM April 1991
package contains must be defined;
- Operations and Notifications. The package definition
specifies which notifications instances of the class that make
use of this package shall be able to generate, which operations
instance of the class shall be capable of performing, and in the
case of attribute related operations, which attributes shall be
available to be operated upon.
Note: The operations identified in the package definition are the
operation types defined in the Information Model (Get, Replace, Set
to Default,...etc). In the case of Actions and Notifications,
further definitions are required in order to characterise their
functionality, as described in clauses A1.10, A1.11. The create and
delete operations are defined as part of the Name Binding template
described in clause A1.6, a creation and deletion of an object is
closely bound to the containment relationship between superior and
subordinate objects, rather than to all instances of a managed object
class.
A1.4.1 Template Structure
< package-label> PACKAGE
[BEHAVIOUR DEFINITIONS < behaviour-definition-label>
[, < behaviour-definition-label > ] *;
]
[ATTRIBUTES<attribute-label> <propertylist>[<parameter-label>]
[,< attribute-label> < propertylist> [< parameter-label> ]*]*;
]
[ATTRIBUTE GROUPS <group-label> [<attribute-label>]*
[, < group-label > [ < attribute-label > ]*]*;
]
[ACTIONS <action-label>[<parameter-label>]*
[, < action-label > [ < parameter-label > ]*]*;
]
[NOTIFICATIONS <notification-label> [<parameter-label>]*
[, < notification-label > [< parameter-label >]*]*;
]
[REGISTERED AS < object-identifier>];
supporting productions
propertylist -> [REPLACE WITH DEFAULT]
[DEFAULT VALUE < value-definition > ]
[PERMITTED VALUES <value-set-syntax-label>]
[REQUIRED VALUES <value-set-syntax-label>]
[GET | REPLACE | GET-REPLACE]
OIM Working Group [Page 64]
^L
RFC 1214 MIB-II-OIM April 1991
[ADD | REMOVE | ADD-REMOVE]
A1.4.2 Supporting Definitions
BEHAVIOUR DEFINITIONS < definition-label> [,<definition-label>]*
Behaviour Definitions allow the behaviour (semantics) of the managed
object class to be completely described. These definitions relate
the external view of the object (its operations and notifications) to
its internal operation. The definition-label identifies an instance
of use of the Behaviour template.
Note: It should not be assumed that the behaviour defined by this
clause is testable using existing conformance test technology.
ATTRIBUTES. <attribute-label><propertylist> [<parameter-label>]*
[,<attribute-label><propertylist> [<parameter-label>]*]*
This allows attributes to be included in the package definition. The
propertylist that follows each attribute label defines the set of
operations that may be performed on the managed object with reference
to the attribute, and defines any default, permitted or required
value(s) associated with the attribute. The Replace With Default
property is included if the property has a default value that may be
set by means of the Replace With Default Value operation. The
value-definition used to specify the default value shall be a value
reference name, using the Externaltypereference notation defined in
ISO 8824.
If the PERMITTED VALUES property is present, the value-set- syntax-
label specifies any restrictions on the possible values that the
attribute may take. The value-set-syntax-label shall be a type
reference name, using the ExternaltypeReference notation defined in
ISO 8824. The form of the specification referenced shall be a
subtype of the attribute syntax type, defined using the ASN.1 subtype
notation.
Note: The Permitted Values construct is required only in attribute
definitions where it is necessary to specify a restriction on the
value set permitted by the specification of the Attribute Syntax,
e.g., when modifying an existing attribute specification.
If the REQUIRED VALUES property is present, the value-set- syntax-
label specifies any restrictions on the possible values that the
attribute may take. The value-set-syntax-label shall be a type
reference name, using the ExternaltypeReference notation defined in
ISO 8824. The form of the specification referenced shall be a
subtype of the attribute syntax type, defined using the ASN.1 subtype
OIM Working Group [Page 65]
^L
RFC 1214 MIB-II-OIM April 1991
notation.
Note: This property defines the value set required for conformance.
The parameter-labels allow parameters to be associated with the
operations permitted on the attribute.
ATTRIBUTE GROUPS <group-label> [<attribute-label>]*[,<group-label>
[<attribute-label>]*]*
This allows a set of attributes groups to be identified as part of
the package. The original definition of an attribute group may be
extended by the addition of further attribute-labels.
ACTIONS <action-label>[<parameter-label>]*
[,<action-label>[<parameter-label>]*]*
If present, the action-labels identify the set of action definitions
that are included in the package. The behaviour definitions shall
specify the effect of these Actions upon managed objects.
The parameter-labels allow parameters to be associated with the
Action.
NOTIFICATIONS <notification-label>[<parameter-label>]*
[,<notification-label>[<parameter-label>]*]*
Present if any Notifications are included in the package. The
notification labels identify the Notification definitions that are
applicable. The behaviour definitions shall specify the
circumstances under which those Notifications are generated by a
managed object.
The parameter-labels allow parameters to be associated with the
Notification.
REGISTERED AS <object-identifier>
The object identifier value, if present, provides a globally unique
identifier for the package definition, and registers the groupings of
behaviour definitions, attributes, attribute groups, actions and
notifications that the package defines. This value is required in
cases where the package is referenced by a conditional packages
construct in an object class template and the package contains a
behaviour construct or more than one element, in which case the value
of the object identifier is included in the conditional packages
attribute of any instances of the object class that are created with
the package present.
OIM Working Group [Page 66]
^L
RFC 1214 MIB-II-OIM April 1991
A1.5 Parameter Template
This template permits the specification and registration of parameter
syntaxes and associated behaviour that may be associated with
particular operations and notifications within the managed object
class and conditional package templates defined in clauses A1.3 and
A1.4. This mechanism is not used in the OIM MIB-II.
A1.6 Name Binding Template
A1.6.1 Overview
This template allows alternative naming structures to be defined for
managed objects of a given managed object class by means of name
bindings. The name binding allows an attribute to be selected as the
naming attribute for a given subordinate class/superior class pair.
The attribute selected must be an attribute of the subordinate object
that is present in all instances of the specified managed object
class. This attribute is used for the purpose of constructing the
relative distinguished name (RDN) of subordinate objects of that
class. An RDN is constructed from the OBJECT IDENTIFIER assigned to
that attribute type and the value of the instance of the attribute.
The Distinguished Name of the subordinate object is obtained by
appending its RDN to the Distinguished Name of its superior object.
Name bindings are not considered to be part of the definition of
either of the managed object classes that they reference. A given
managed object class may have more than one name binding associated
with it. The set of name bindings defines the set of possible naming
relationships with superior managed objects and the set of managed
object classes from which subordinate object classes may be
instantiated.
Note: Name Bindings may be specified for a managed object class
subsequent to the specification of the managed object class itself.
A1.6.2 Template Structure
<name-binding-label> NAME BINDING
SUBORDINATE OBJECT CLASS <class-label>;
NAMED BY
SUPERIOR OBJECT CLASS <class-label>;
WITH ATTRIBUTE <attribute-label>;
[BEHAVIOUR <behaviour-definition-label>
[,<behaviour-definition-label>]*;
]
OIM Working Group [Page 67]
^L
RFC 1214 MIB-II-OIM April 1991
[CREATE [<create-modifier>[,<create-modifier>]]
[<parameter-label>]*;
]
[DELETE <delete-modifier>[<parameter-label>]*;
]
REGISTERED AS < object-identifier>;
supporting productions
create-modifier-> with-reference-object |
with-automatic-instance-naming
delete-modifier -> only-if-no-contained-objects |
deletes-contained-objects
A1.6.3 Supporting Definitions
SUBORDINATE OBJECT CLASS <class-label>
This defines the managed object class being named. The name of an
instance of the subordinate managed object class is constructed by
concatenating the distinguished name of the superior managed object
class with the relative distinguished name of the subordinate managed
object class.
NAMED BY SUPERIOR OBJECT CLASS <class-label>
This defines a managed object class that may contain instances of the
subordinate managed object class.
WITH ATTRIBUTE <attribute label>
This defines the attribute that shall be used, in the context of this
name binding, to construct the relative distinguished name for the
subordinate managed object class. Values of this attribute shall be
represented by single-valued data types, complying with the
restrictions specified in ISO 10165-1; if no naturally suitable
attribute is available for use as a naming attribute, object
designers are encouraged to provide a naming attribute of type
Graphic String.
BEHAVIOUR <behaviour-definition-label>
If present, this clause permits any behavioural impact imposed as a
consequence of the name binding to be defined. The behaviour-
definition-label identifies the constraint definition concerned; the
constraint is therefore expressed using the behaviour template.
OIM Working Group [Page 68]
^L
RFC 1214 MIB-II-OIM April 1991
CREATE [<create-modifier>[,<create-modifier>]][<parameter-label>]*
Present if it is permitted to create new instances of the managed
object class referenced by the SUBORDINATE OBJECT CLASS construct in
the context of this name binding, by means of systems management
operations. The create-modifier values specify the options available
on creation. The permitted create- modifiers are as follows:
- with reference-object. If present, a reference object may be
specified on creation as a source of default values and to
specify choice of Conditional Packages;
- with automatic instance naming. If present, the CREATE
request may omit to specify the instance name of the new
object instance. The behaviour definitions shall specify what
course of action is taken when there is a choice of Name Forms
that may be applied to the new object instance.
If neither create-modifier is specified, the instance name and all
necessary default values shall be specified in the CREATE request.
The parameter-labels allows parameters to be associated with the
CREATE operation.
DELETE <delete-modifier> [<parameter-label>]*
Present if it is permitted to delete instances of the managed object
class referenced by the SUBORDINATE OBJECT CLASS construct in the
context of this name binding. The delete- modifier indicates the
behaviour of a managed object of that class if the managed object is
deleted. The permitted delete-modifiers are:
- only-if-no-contained-objects. If specified, any contained
managed objects must be explicitly deleted prior to deletion of
the containing managed object, i.e., a DELETE request will cause an
error if there are contained managed objects;
- delete-contained-objects. If specified, a DELETE request
applied to an instance of the managed object class has the effect
of deleting contained objects also.
If there are constraints on deletion relative to other relationships
or conditions, these are specified as part of the behaviour of the
managed object class.
The parameter-labels allows parameters to be associated with the
DELETE operation.
OIM Working Group [Page 69]
^L
RFC 1214 MIB-II-OIM April 1991
A1.7 Attribute Template
A1.7.1 Overview
This template is used to define individual attribute types. These
definitions may be further combined by the Attribute Group template
where attribute groups are required. The major elements of the
definition are:
- Derivation. The definition of an attribute type may modify or
constrain the definition of another attribute type.
- Attribute Syntax. The definition of an attribute type must
include the definition of the syntax that will be used to convey
values of the attribute in CMIP. This definition is achieved by
means of a reference to an ASN.l Type Definition. The
definition of an attribute syntax indicates whether the
attribute value is a single or set-valued attribute type. If
the base type is SET OF, the attribute is a set-valued type,
otherwise it is a single-valued type;
- Value Matching. The definition of an attribute type may
include the valid ways in which the value of an instance of the
type may be tested, i.e., whether the attribute may be tested
for equality, magnitude, etc.. Value matching on some attribute
types may require the specification of how a matching rule is
defined to operate, as part of the attribute's behaviour
definition. The absence of any matching rules in the attribute
definition implies that matching of values is undefined;
- Behaviour. The attribute definition may include definition of
attribute specific behaviour; i.e., behaviour that applies to an
attribute type regardless of which managed object class contains
instances of tho attribute type;
- Attribute type name. An Object Identifier value shall be
allocated to each attribute that is to be included in the
definition of a managed object class. This value is used in CMIP
to identify the attribute.
A1.7.2 Template Structure
<attribute-label> ATTRIBUTE
derived-from-construct | with attribute-syntax-construct
[MATCHES FOR <qualifier>[,<qualifier>]* ;]
[BEHAVIOUR <behaviour-definition-label>
[,<behaviour-definition-label>]* ;
OIM Working Group [Page 70]
^L
RFC 1214 MIB-II-OIM April 1991
]
[PARAMETERS <parameter-label>
[,<parameter-label>]*
]
[REGISTERED AS < object-identifier> ;]
supporting productions
qualifier -> Equality | Ordering | Substrings
| Set Comparison | Set Intersection
derived-from-construct -> DERIVED FROM <attribute-label > ;
with-attribute-syntax-construct -> WITH ATTRIBUTE SYNTAX
<syntax-label> ;
A1.7.3 Supporting Definitions
DERIVED FROM <attribute-label>
If this element is present, the attribute definition takes as a
starting point all aspects of the definition referenced by
attribute-label, including any that it may in turn have derived from
other attribute definitions. The rules for interpreting the effect
of presence of any of the other elements of the attribute template
under these circumstances are as follows:
- WITH ATTRIBUTE SYNTAX is not permitted to be present. The
attribute syntax shall be the attribute syntax of the attribute
from which this attribute has been derived.;
- MATCHES FOR: The resultant set of matching rules shall be the
logical OR of the matching rules specified by this construct
with any derived matching rules;
- BEHAVIOUR is assumed to extend any derived behaviour
definitions;
- REGISTERED AS is assumed to replace any registration derived
from other definitions.
This derivation mechanism permits:
- The definition of an attribute based on an existing attribute
definition;
- The addition of further constraints to an existing attribute
OIM Working Group [Page 71]
^L
RFC 1214 MIB-II-OIM April 1991
definition.
WITH ATTRIBUTE SYNTAX <syntax label>
This element, present only if the DERIVED FROM construct is absent,
identifies the ASN.1 data type that describes how instances of the
attribute value are carried in protocol. The syntax-label shall be
an ASN.l Externaltypereference.
The ASN.1 data type also defines the data type of the attribute
itself. If the base type of the syntax is set-of, the attribute is a
set-valued attribute. All other ASN.l data types, including set,
sequence of, and sequence type, define single-valued attribute types.
MATCHES FOR <qualifier>[,<qualifier>]*
This element defines the types of test that may be applied to a value
of the attribute as part of a Filter operation. Matching for the
presence of an attribute is implicitly permitted for all attributes.
For all other types of matching, if this clause is not present,
matching is undefined and is therefore not permitted on the
attribute. The options are:
- Equality. If present, the attribute value may be tested for
equality against a given value;
- Ordering. If present, the attribute value may be tested against
a given value in order to determine which has the greater
value;
- Substrings. If present, the attribute value may be tested
against a given substring value in order to determine its
presence or absence in the attribute value;
- Set Comparison. If present, the attribute value may be tested
against a given value in order to determine set equality or
subset/superset relationships between the values;
- Set Intersection. If present, the attribute value may be tested
against a given value in order to determine the presence or
absence of a non-null set intersection between the two values.
BEHAVIOUR <behaviour-definition-label>
[,<behaviour-definition-label>]*
Any behaviour that is generic to this attribute type may be defined
by means of this behaviour clause. The behaviour definition shall
include any additional specification that is required in order to
OIM Working Group [Page 72]
^L
RFC 1214 MIB-II-OIM April 1991
define how the chosen set of matching rules are applied to the
attribute definition. Behaviour that is specific to the managed
object class is defined in the behaviour clause of the managed object
class template.
Note: It should not be assumed that the behaviour defined by this
clause is testable using existing conformance test technology.
REGISTERED AS <object-identifier>
If present, the object-identifier provides a globally unique
identifier for the attribute definition; this includes all elements
referenced either directly, or indirectly by the Derived From, With
Attribute Syntax, Matches For and Behaviour constructs, where
present. This value is used in the management protocol when it is
necessary to identify the attribute type. If this construct is
omitted, the attribute definition shall not be referenced in a
managed object class definition without further constraints being
applied in another attribute definition.
A1.8 Notification Template
A1.8.1 Overview
This template is used to define the behaviour and syntax associated
with a particular Notification type. The main features of the
definition are as follows:
- Behaviour. The definition of a Notification type must specify
the circumstances under which a notification of the type is
generated;
- Mode of operation. The definition of a notification type shall
indicate whether the notification may be confirmed,
unconfirmed or both;
- Syntax Definitions. The definition of the Notification type
must specify any syntax that will be used to convey the CMIS
Event Information and Event Reply parameters in CMIP. These
syntaxes are defined by means of ASN.1 data types. The
template also permits the allocation of attribute values to
fields in the syntax;
- Notification naming. The value of the Object Identifier
associated with the Notification definition is used to identify
the Event type in CMIP.
OIM Working Group [Page 73]
^L
RFC 1214 MIB-II-OIM April 1991
A1.8.2 Template Structure
<notification-label> NOTIFICATION
BEHAVIOUR <behaviour-definition-label>
[,<behaviour-definition-label>]*;
MODE <confirmation-mode>;
[PARAMETERS <parameter-label>[,<parameter-label]*;
]
[WITH INFORMATION SYNTAX <syntax-label>
[AND ATTRIBUTE IDS <field-name><attribute-label>
[,<field-name><attribute-label]*];
]
[WITH REPLY SYNTAX <syntax-label>;]
REGISTERED AS <object-identifier>;
supporting productions
confirmation-mode -> CONFIRMED | NON-CONFIRMED | CONFIRMED AND
NON-CONFIRMED
A1.8.3 Supporting Definitions
BEHAVIOUR <behaviour-definition-label>
This defines the behaviour of the notification, the data that must be
specified with the notification, the results that the notification
may generate and their meaning. The behaviour- definition-label
references a behaviour description defined by use of the Behaviour
Template.
Note: It should not be assumed that the behaviour defined by this
clause is testable using existing conformance test technology.
MODE CONFIRMED | NON-CONFIRMED | CONFIRMED AND NON-CONFIRMED
This defines the allowable mode of operation of the notification
type, as follows:
- CONFIRMED: The notification type shall operate in the
confirmed mode only;
- NON-CONFIRMED: The notification type shall operate in the
non-confirmed mode only;
- CONFIRMED AND NON-CONFIRMED: The notification type may
operate in either confirmed mode or non-confirmed mode.
OIM Working Group [Page 74]
^L
RFC 1214 MIB-II-OIM April 1991
PARAMETERS <parameter-label>[,<parameter-label>]*
The parameter-labels allow parameters to be associated with with the
behaviour of the attribute type.
WITH INFORMATION SYNTAX <syntax-label> [AND ATTRIBUTE IDS
<field-name><attribute-label> [,<field-name><attribute-label>]*;]
This construct identifies the ASN.l data type that describes the
structure of the notification information that is carried in
management protocol, and permits the association of attribute
identifiers with named fields in the abstract syntax. The syntax-
label shall be a type reference name, using the Externaltypereference
notation defined in ISO 8824. If absent, there is no information
associated with the notification invocation. If the AND ATTRIBUTE
IDS option is used, the field- name label shall be a label defined
within the abstract syntax referenced by the syntax that appears in
the construct. The data type that is labeled by the field-name is
used to carry values of the attribute referenced by attribute-label.
The ASN.1 data type of the attribute shall be the same as the data
type referenced by field-name.
WITH REPLY SYNTAX <syntax-label>
If a syntax-label is present, this identifies the ASN.1 data type
that describes the structure of the notification reply that is
carried in management protocol. The syntax-label shall be a type
reference name, using the Externaltypereference notation defined in
ISO 8824. If absent, there is no information associated with the
notification reply.
OIM Working Group [Page 75]
^L
RFC 1214 MIB-II-OIM April 1991
Appendix 2: New Objects: Internet SMI Object Type Macros
atEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"<index>.1.<address>, where <index is the decimal representation
of atIfIndex and <address> is atNetAddress represented in
dot notation. The 1 is a subidentifier indicating that an IP
address follows. "
::= { attributes 3}
atTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 2}
egpId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 16}
egpNeighEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"egpNeighAddr encoded in dot notation."
::= { attributes 22}
egpNeighTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 17}
icmpId OBJECT-TYPE
SYNTAX DisplayString
OIM Working Group [Page 76]
^L
RFC 1214 MIB-II-OIM April 1991
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 9}
ifId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 23}
ifEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The decimal representation of ifIndex."
::= { attributes 21}
ifTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 1}
ipAdEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"ipAdEntAddr encoded in dot notation."
::= { attributes 19}
ipAddrTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 5}
OIM Working Group [Page 77]
^L
RFC 1214 MIB-II-OIM April 1991
ipId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 4}
ipNetToMediaEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"<interface>.<address>, where <interface> is the decimal
representation of ipNetToMediaIndex and <address> is
ipNetToMediaNetAddress in dot notation."
::= { attributes 8}
ipNetToMediaTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 7}
ipRouteEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"<dest> , where <dest> is ipRouteDest represented in dot
notation."
::= { attributes 20}
ipRoutingTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 6}
snmpId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
OIM Working Group [Page 78]
^L
RFC 1214 MIB-II-OIM April 1991
"An empty string."
::= { attributes 18}
tcpConnId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"<laddr> . <lport> . <raddr> . <rport>, where
<laddr> is the dot notation representation of
tcpConnLocalAddress,
<lport> is the decimal representation of tcpConnLocalPort,
<raddr> is the dot notation representation of
tcpConnRemAddress, and
<rport> is the decimal representation of tcpConnRemPort."
::= { attributes 12}
tcpConnTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 11}
tcpId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 10}
updEntryId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"<index> . <address>, where <index> is the decimal
representation of atIfIndex and <address> is atNetAddress
represented in dot notation."
::= { attributes 15}
udpId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
OIM Working Group [Page 79]
^L
RFC 1214 MIB-II-OIM April 1991
"An empty string."
::= { attributes 13}
udpTableId OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An empty string."
::= { attributes 14}
OIM Working Group [Page 80]
^L
RFC 1214 MIB-II-OIM April 1991
Appendix 3: Supporting Definitions
The definition of the object class "top", from which all object
classes are derived, is taken from ISO/IEC DIS 10165-2: Definition of
Management Information [5]. However, pending progression of that
document to an International Standard, the object class "top" and its
associated attributes have been registered here under the oim
registration arc.
top MANAGED OBJECT CLASS
CHARACTERIZED BY
topPackage PACKAGE
BEHAVIOUR DEFINITIONS topBehaviour;
ATTRIBUTES
objectClass GET,
name GET,
allomorphs GET,
nameBindings GET,
packages GET;;;
REGISTERED AS {objects 1};
topBehaviour BEHAVIOUR
DEFINED AS
This is the top level of managed object class hierarchy and
every other managed object class is a specialization of either
this generic class (top) or a specialization of a subclass of top.;
allomorphs ATTRIBUTE
WITH ATTRIBUTE SYNTAX
Top-Syntax.Allomorphs;
-- A set of allormorphic superclass identifiers
MATCHES FOR Set Comparison, Set Intersection;
REGISTERED AS {attributes 30};
name ATTRIBUTE
WITH ATTRIBUTE SYNTAX InformationFramework.
RelativeDistinguishedName;
-- defined in Directory standards
MATCHES FOR Equality;
REGISTERED AS {attributes 31};
nameBindings ATTRIBUTE
WITH ATTRIBUTE SYNTAX
Top-Syntax.NameBindings;
-- A set of valid namebindings for this object.
MATCHES FOR Set Comparison, Set Intersection;
REGISTERED AS {attributes 32};
OIM Working Group [Page 81]
^L
RFC 1214 MIB-II-OIM April 1991
objectClass ATTRIBUTE
WITH ATTRIBUTE SYNTAX CMIP-1.ObjectClass;
MATCHES FOR Equality, Ordering;
REGISTERED AS {attributes 33};
packages ATTRIBUTE
WITH ATTRIBUTE SYNTAX
Top-Syntax.Packages;
-- The set of optional packages defined for the
-- class that are included in this instantiation of
-- the object.
MATCHES FOR Set Comparison, Set Intersection;
REGISTERED AS {attributes 34};
Top-Syntax {iso(1) org(3) dod(6) internet(1) mgmt(1) mib(1)
oim(9) misc(4) 2}
DEFINITIONS ::=
BEGIN
-- from ISO/IEC DIS 10165-2:Definition of Management Information
Allomorphs ::= SET OF OBJECT IDENTIFIER
NameBindings ::= SET OF OBJECT IDENTIFIER
Packages ::= SET OF OBJECT IDENTIFIER
-- From Directory InformationFramework
RelativeDistinguishedName ::= SET OF AttributeValueAssertion
AttributeValueAssertion ::= SEQUENCE {AttributeType,
AttributeValue}
AttributeType ::= OBJECT IDENTIFIER
AttributeValue ::= ANY
-- From CMIP-1
ObjectClass ::= CHOICE {globalForm [0] OBJECT IDENTIFIER,
localForm [1] INTEGER }
END
Security Considerations
Security issues are not discussed in this memo.
OIM Working Group [Page 82]
^L
RFC 1214 MIB-II-OIM April 1991
Author's Address
Lee LaBarre
The MITRE Corporation
Burlington Road
Bedford, MA 01730
Phone: (617) 271-8507
EMail: cel@mbunix.mitre.org
OIM Working Group [Page 83]
^L
|