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
|
-- IBM_PROLOG_BEGIN_TAG
-- This is an automatically generated prolog.
--
-- tcpip610 src/tcpip/usr/samples/snmpd/aixmib.my 1.23
--
-- Licensed Materials - Property of IBM
--
-- Restricted Materials of IBM
--
-- COPYRIGHT International Business Machines Corp. 2002,2004
-- All Rights Reserved
--
-- US Government Users Restricted Rights - Use, duplication or
-- disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
--
-- @(#)58 1.23 src/tcpip/usr/samples/snmpd/aixmib.my, smsnmp, tcpip610 6/15/04 15:47:31
-- IBM_PROLOG_END_TAG
IBM-AIX-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, enterprises, Integer32,
TimeTicks,NOTIFICATION-TYPE FROM SNMPv2-SMI
DisplayString FROM RFC1213-MIB
MODULE-COMPLIANCE, OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF;
ibmAIX MODULE-IDENTITY
LAST-UPDATED "200402180000Z"
ORGANIZATION "IBM "
CONTACT-INFO
" Guoyou Chen
Postal: IBM
11400 Burnet Rd.
Austin Tx, 78758
US
Tel: +1 512 838 0355
Fax: +1 512 838 7939
E-mail: gychen@us.ibm.com
Kurt Taylor
Postal: IBM
11400 Burnet Rd.
Austin Tx, 78758
US
Tel: +1 512 838 2496
Fax: +1 512 838 7939
E-mail: krtaylor@us.ibm.com
Konrad Rzeszutek
Postal: IBM
11400 Burnet Rd.
Austin Tx, 78758
US
Tel: +1 512 838 0357
Fax: +1 512 838 7939
E-mail: darnok@us.ibm.com"
DESCRIPTION
"This MIB module defines AIX system management objects,
which model devices (printer/plotter, tape, hard disk,
memory, SCSI adapter, CDROM drive)
physical and logical storage (volume group,
physical volume, logical volume, and paging space),
print spooling (printing queue),
users/groups, agent action, file systems, processes,
subsystem services (subsystem, subserver), login users,
system environment, events."
::= { ibmProd 191}
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
ibmProd OBJECT IDENTIFIER ::= { ibm 6 }
aixSystem OBJECT IDENTIFIER ::= {ibmAIX 1}
aixAgent OBJECT IDENTIFIER ::= {aixSystem 1}
aixSystemEnvironment OBJECT IDENTIFIER ::= {aixSystem 2}
aixAuxSystemEnvironment OBJECT IDENTIFIER ::= {aixSystem 3}
aixTrap OBJECT IDENTIFIER ::= {aixSystem 4}
--
-- Deemed unnecessary:
-- aixInformationalTrap OBJECT IDENTIFIER ::= {aixSystem 5}
--
aixGeneralTrap OBJECT IDENTIFIER ::= {aixSystem 6}
aixStorageSystem OBJECT IDENTIFIER ::= {ibmAIX 2}
aixVolumeGroup OBJECT IDENTIFIER ::= {aixStorageSystem 1}
aixLogicalVolume OBJECT IDENTIFIER ::= {aixStorageSystem 2}
aixPhysicalVolume OBJECT IDENTIFIER ::= {aixStorageSystem 3}
aixPagingSpace OBJECT IDENTIFIER ::= {aixStorageSystem 4}
aixPrintSystem OBJECT IDENTIFIER ::= {ibmAIX 3 }
aixPrtQueue OBJECT IDENTIFIER ::= { aixPrintSystem 1}
aixUser OBJECT IDENTIFIER ::= {ibmAIX 4}
aixUsers OBJECT IDENTIFIER ::= {aixUser 1}
aixGroups OBJECT IDENTIFIER ::= {aixUser 2}
aixService OBJECT IDENTIFIER ::= {ibmAIX 5}
aixSrvSubsystem OBJECT IDENTIFIER ::= { aixService 1}
aixSrvSubserver OBJECT IDENTIFIER ::= { aixService 2}
aixFileSystem OBJECT IDENTIFIER ::= {ibmAIX 6}
aixProcess OBJECT IDENTIFIER ::= {ibmAIX 7}
aixLogin OBJECT IDENTIFIER ::= {ibmAIX 8}
aixDevice OBJECT IDENTIFIER ::= {ibmAIX 9}
aixPrinter OBJECT IDENTIFIER ::= {aixDevice 1}
aixTape OBJECT IDENTIFIER ::= {aixDevice 2}
aixHardDisk OBJECT IDENTIFIER ::= {aixDevice 3}
aixMemory OBJECT IDENTIFIER ::= {aixDevice 4}
aixCDROM OBJECT IDENTIFIER ::= {aixDevice 5}
aixScsi OBJECT IDENTIFIER ::= {aixDevice 6}
aixProcessor OBJECT IDENTIFIER ::= {aixDevice 7}
aixNetwork OBJECT IDENTIFIER ::= {aixDevice 8}
aixAdapter OBJECT IDENTIFIER ::= {aixDevice 9}
aixConformance OBJECT IDENTIFIER ::= { ibmAIX 10}
-- agent group
aixAgentAction OBJECT-TYPE
SYNTAX INTEGER {
reset(1),
debugOn(2),
debugOff(3),
shutdown(4),
running(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This variable is used to trigger an action on the
agent itself . 5 (running) is the normal state.
When set, this variable triggers the agent
to do the following:
reset - flush cache, flush MIB, re-read configuration
file.
debugOn - turns on debugging functionality in the agent
debugOff- turns off debugging functionality in the agent
shutdown- shutdown the agent
running - the normal state."
::= { aixAgent 1 }
aixAgentCmdString OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This string represents a runnable
command on AIX with its parameters.
Once the command string is set, the system can
trigger the execution of the command by
setting the value of seExeCommand. "
::= {aixAgent 2}
aixAgentExeCommand OBJECT-TYPE
SYNTAX INTEGER {
trigger(1),
default(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The variable is used to trigger the execution of
the command in seCommandString. The result is stored
by seCmdResult, and the output is stored by
aixAgentCmdOutTable. The normal state of this object
is 2(default). When set to 1(trigger), the command
stored in aixAgentCmdString will be run.
trigger(1) - when the value of the variable
is set to trigger(1), the command
stored at aixAgentCmdString will be
executed.
default(2) - is the default value."
::= {aixAgent 3}
aixAgentCmdResult OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object stores the output result of executing
the command stored by aixAgentCmdString."
::= {aixAgent 4}
aixAgentPollInterval OBJECT-TYPE
SYNTAX Integer32(6..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The poll interval(in seconds) used by the agent. The default
value is zero. This value is used to define the minimum time
interval during which the subagent must update an object's
value, check if any events occurred and send a trap
when an event occurs. If the value is zero, the polling
depends on each seperate configuration variable such as
aixFsPollInterval, aixVgPollInterval, etc. if it is
not zero, The value can not be less than 5 seconds. If it is
set to 1, 2, 3, or 4, the agent automatically sets the poll
interval to 5.
aixAgentPollInterval works together with the other variables
such as aixFsPollInterval, aixCPUPollInterval,
aixVgPollInterval, aixPagePollInterval, aixLFPollInterval
to decide the final polling interval of each group.
In /etc/aixmibd.conf file, this variable is corresponding to
pollInterval. Originally, it is SYNTAX Integer32(0,6..2147483647),
but IT Director MIB compiler does not accept this and it is
changed to this. "
::= {aixAgent 5}
aixPollEnable OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables or disables polling. It may change
the following polling interval variables:
aixAgentPollInterval
aixFsPollInterval
aixCPUPollInterval
aixVgPollInterval
aixPagePollInterval
aixLFPollInterval
If one of the polling intervals above is non-zero,
its value is 1(enable), otherwise its valuse is
2 (disable).
If it is set to enable(1) and all polling intervals
above are zero, aixAgentPollInterval will be set to
3600 seconds. If it is set to 1(enable) and one of
the polling intervals is non-zero, the agent will
not change anything.
If it is set to disable (2), the polling functionality
is disabled, and all polling intervals are set to zero.
"
::= {aixAgent 6}
aixLastTrapMsg OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object holds the most recent trap message sent
from the subagent. Its default value is set to NULL."
::= {aixAgent 7}
aixAgentCmdOutTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixAgentCmdOutTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The output from the execution of the command stored in
aixAgentCmdString"
::= { aixAgent 8 }
aixFsPollInterval OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The polling interval for file systems. This variable works
together with the general polling interval
aixAgentPollInterval. Its default value is zero.
1) If aixAgentPollInterval is zero and aixFsPollInterval is
zero, the polling of file systems is disabled.
2) If aixAgentPollInterval is non-zero and aixFsPollInterval
is zero, the polling interval is the value of
aixAgentPollInterval.
3) If both aixAgentPollInterval and aixFsPollInterval are
non-zero, the polling interval of file systems is set to
the value of aixFsPollInterval. That means aixFsPollInterval
has a higher priority than aixAgentPollInterval .
This corresponds to fsPollInterval in /etc/aixmibd.conf. "
::= {aixAgent 9 }
aixCPUPollInterval OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The polling interval for CPU utilization. This variable works
together with the general polling interval
aixAgentPollInterval. Its default value is zero.
1) If aixAgentPollInterval is zero and aixCPUPollInterval is
zero, the polling of CPU utilization is disabled.
2) If aixAgentPollInterval is non-zero and aixCPUPollInterval
is zero, the polling interval is the value of
aixAgentPollInterval.
3) If both aixAgentPollInterval and aixCPUPollInterval are
non-zero, the polling interval of CPU utilization is set to
the value of aixCPUPollInterval. That means aixCPUPollInterval
has a higher priority than aixAgentPollInterval .
This corresponds to cpuPollInterval in /etc/aixmibd.conf."
::= {aixAgent 10 }
aixVgPollInterval OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The polling interval for volume groups. This variable works
together with the general polling interval
aixAgentPollInterval. Its default value is zero.
1) If aixAgentPollInterval is zero and aixVgPollInterval is
zero, the polling of file systems is disabled.
2) If aixAgentPollInterval is non-zero and aixVgPollInterval
is zero, the polling interval is the value of
aixAgentPollInterval.
3) If both aixAgentPollInterval and aixVgPollInterval are
non-zero, the polling interval of volume groups is set to
the value of aixVgPollInterval. That means aixVgPollInterval
has a higher priority than aixAgentPollInterval .
This corresponds to vgPollInterval in /etc/aixmibd.conf."
::= {aixAgent 11 }
aixPagePollInterval OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The polling interval for paging spaces. This variable works
together with the general polling interval
aixAgentPollInterval. Its default value is zero.
1) If aixAgentPollInterval is zero and aixPagePollInterval is
zero, the polling of file systems is disabled.
2) If aixAgentPollInterval is non-zero and aixPagePollInterval
is zero, the polling interval is the value of
aixAgentPollInterval.
3) If both aixAgentPollInterval and aixPagePollInterval are
non-zero, the polling interval of paging spaces is set to
the value of aixFsPollInterval. That means aixPagePollInterval
has a higher priority than aixAgentPollInterval .
This corresponds to pagePollInterval in /etc/aixmibd.conf."
::= {aixAgent 12 }
aixLFPollInterval OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The polling interval for login failure. This variable works
together with the general polling interval
aixAgentPollInterval. Its default value is zero.
1) If aixAgentPollInterval is zero and aixLFPollInterval is
zero, the polling of file systems is disabled.
2) If aixAgentPollInterval is non-zero and aixLFPollInterval
is zero, the polling interval is the value of
aixAgentPollInterval.
3) If both aixAgentPollInterval and aixFsPollInterval are
non-zero, the polling interval of login failure is set to
the value of aixLFPollInterval. That means aixLFPollInterval
has a higher priority than aixAgentPollInterval .
This corresponds to lfPollInterval in /etc/aixmibd.conf."
::= {aixAgent 13 }
aixAgentCmdOutTableEntry OBJECT-TYPE
SYNTAX AixAgentCmdOutTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the agent command output table"
INDEX { aixAgentCmdOutIndex }
::= { aixAgentCmdOutTable 1 }
AixAgentCmdOutTableEntry ::=
SEQUENCE {
aixAgentCmdOutput
DisplayString,
aixAgentCmdOutIndex
Integer32
}
aixAgentCmdOutput OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"After the command stored in aixAgentCmdString is run,
each line of the output is stored in one entry of this
table."
::= {aixAgentCmdOutTableEntry 1 }
aixAgentCmdOutIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the table."
::= {aixAgentCmdOutTableEntry 2 }
-- aix system environment group
aixSeCPUUtilization OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It is an aggregate view for utilization of multiple
CPUs. aixSeCPUUtilization equals the sum of each CPU
kernel time percentage and user time percentage
divided by the number of CPUs. When the CPU utilization
reaches the threshold aixSeCPUThreshold, an event will
be generated. After the rising event is generated,
another similar event will not occur until it falls
behind the threshold and reaches it again. This object
will be refreshed at least with each poll interval."
::= {aixSystemEnvironment 1}
aixSeCPUThreshold OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Threshold for the CPU utilization. When it is set
to zero, the trap is disabled. The default value
is 95 which means a trap would be generated
if the aggregate CPU utilization reaches 95 percent."
::= {aixSystemEnvironment 2}
aixSeSystemRunLevel OBJECT-TYPE
SYNTAX INTEGER {
level0(1),
level1(2),
level2(3),
level3(4),
level4(5),
level5(6),
level6(7),
level7(8),
level8(9),
level9(10),
levelm(11)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Tells the init command to set the run level on
next system boot. "
::= {aixSystemEnvironment 3}
aixSeSystemState OBJECT-TYPE
SYNTAX INTEGER {
running(1),
reboot(2),
shutdown(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object is used to shutdown or reboot the system to
the run level set by aixSeSystemRunLevel.
running(1) - the system is running
reboot(2) - when the value of the variable is set to
reboot(2), the system will reboot.
shutdown(3) - shutdown the system. "
::= {aixSystemEnvironment 4}
aixSeSystemTrap OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable or disable the aixUtilizationCPU trap in the
system environment group. The default value is
enable(1)."
::= {aixSystemEnvironment 5}
aixSeDateAndTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system date and time."
::= {aixAuxSystemEnvironment 1}
aixSeMaxProcPerUser OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of processes each user can use at one time.
This limit does not apply to a root user. The default
number is 128. Increasing or decreasing this number
takes effect at the next system boot."
::= {aixAuxSystemEnvironment 2}
aixSeLicenseNum OBJECT-TYPE
SYNTAX Integer32(1..32767)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies the maximum number of fixed licenses on the
system. Valid values for this option are positive
integers from 1 to 32767. When this object is set, its
value is updated without rebooting the system. "
::= {aixAuxSystemEnvironment 3}
aixSeRemainingLicenseNum OBJECT-TYPE
SYNTAX Integer32(1..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the remaining number of fixed licenses on
the system. Valid values for the is option are positive
integers from 1 to 32767. "
::= {aixAuxSystemEnvironment 4}
aixSeNumCPUs OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of CPUs on the machine."
::= {aixAuxSystemEnvironment 5}
aixSeMachineType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The machine type. For example: IBM,7043-150"
::= {aixAuxSystemEnvironment 6}
aixSeSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the machine."
::= {aixAuxSystemEnvironment 7}
-- aix event group
aixFileSystemMounted NOTIFICATION-TYPE
OBJECTS { aixFsName }
STATUS current
DESCRIPTION
"When a file system is mounted or unmounted through
SNMP, an event is generated. aixFsName is defined in
aixFsTable."
::= {aixTrap 1}
aixFileSystemFull NOTIFICATION-TYPE
OBJECTS {aixFsName, aixFsSize,aixFsFree, aixFsThreshold}
STATUS current
DESCRIPTION
"When the current sampled used percentage of a file
system is above aixFsThreshold and the value at
last interval is less than the aixFsThreshold, an the
event will be generated.
This event message contains the file system name,
the total size of the file system and available size.
aixFsName - file system name,
aixFsSize - file system size in megabytes
aixFsFree - free file system size in megabytes
aixFsThreshold - the threshold for the file system size"
::= {aixTrap 2}
aixVolumeGroupFull NOTIFICATION-TYPE
OBJECTS {aixVgName, aixVgSize, aixVgFree, aixVgThreshold}
STATUS current
DESCRIPTION
"When the current sampled used percentage of a volume
group is above aixVgThreshold and the value at the last
interval is less than the aixVgThreshold, an event
will be generated. This event message contains the
volume group name, the size, the free size and the
threshold.
aixVgName - the name of the volume group.
aixVgSize - the total size of the volume group.
aixVgFree - the free size of the volume group.
aixVgThreshold - the threshold for the volume group."
::= {aixTrap 3}
aixPageFull NOTIFICATION-TYPE
OBJECTS {aixPageName,aixPagePercentUsed, aixPageThreshold}
STATUS current
DESCRIPTION
"When the current used percentage of a paging
space is above aixPageThreshold and the value at the last
interval is less than the aixPageThreshold, an event will
be generated. The event message includes the
name of the paging space, the total size, the used
percentage, the volume group it belongs to, and
threshold value.
aixPageName - the paging space name
aixPagePercentUsed - percentage of used Paging space.
aixPageThreshold - the threshold value of the paging
space. "
::= {aixTrap 4}
aixUserLoginFailed NOTIFICATION-TYPE
OBJECTS {aixFailedLoginTimePeriod }
STATUS current
DESCRIPTION
"If a user fails to log into the system in the number of
attempts defined by aixLoginFailedThreshold in the last
time period defined by aixFailedLoginTimePeriod,
an event is generated. The event message includes the
attempts of all users who failed to log into the
system and the time period during which these
attempts occurred."
::= { aixTrap 5}
aixUtilizationCPU NOTIFICATION-TYPE
OBJECTS {aixSeCPUUtilization, aixSeCPUThreshold}
STATUS current
DESCRIPTION
"When the CPU utilization reaches the threshold, an
event is generated. The event contains the utilization,
and threshold values.
aixSeCPUUtilization - CPU Utilization value.
aixSeThresholdCPU - Threshold value. "
::= { aixTrap 6}
aixSnmptrapHolder NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Together with the agent, the snmptrap command is
delivered. The snmptrap command sends a trap message
to the agent. This object is place holder for
snmptrap command. "
::= {aixGeneralTrap 1}
aixVgThreshold OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The percentage threshold for the volume group.
When the current used percentage for the volume group
is above aixVgThreshold and the value of the last
poll interval is less than the threshold, an
event is generated. The value for aixVgThreshold
should be between 0 and 100. When it is zero,
the related trap, aixVolumeGroupFull, is disabled.
Its default value is 95. "
::= {aixVolumeGroup 1}
aixVgTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixVgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of defined volume groups. The number of
entries depends on the configuration of the system. On
AIX, a volume group is a collection of 1 to 32 physical
volumes of varying size and type with a system-wide
unique name of up to 15 characters. Each system can
have one to 255 volume groups configured.
This table will be refreshed at least with each poll
interval."
::= {aixVolumeGroup 2}
aixVgEntry OBJECT-TYPE
SYNTAX AixVgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of vgTable. Each entry contains all
the attributes of each volume group."
INDEX {aixVgIndex}
::= {aixVgTable 1}
AixVgEntry ::= SEQUENCE {
aixVgName DisplayString,
aixVgIdentifier DisplayString,
aixVgState INTEGER,
aixVgSize Integer32,
aixVgFree Integer32,
aixVgCurNumLVs Integer32,
aixVgOpenLVs Integer32,
aixVgActivePVs Integer32,
aixVgIndex Integer32
}
aixVgName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of a volume group. The name must be
system-wide unique and can range from 1 to 15
characters"
::= {aixVgEntry 1}
aixVgIdentifier OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It is a series of numbers(e.g. 0038455182a7b5f6)
to identify the volume group."
::= {aixVgEntry 2}
aixVgState OBJECT-TYPE
SYNTAX INTEGER {
activeComplete(1),
activePartial(2),
inactive(3),
unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the volume group. If the volume group is
activated with the varyonvg command, the state is
either active/complete (indicating all physical
volumes are active) or active/partial (indicating some
physical volumes are not active). If the volume group
is not activated with the varyonvg command, the state
is inactive ."
::= {aixVgEntry 3}
aixVgSize OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total size of the volume group in megabytes."
::= {aixVgEntry 4}
aixVgFree OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The available size of the volume group in megabytes."
::= {aixVgEntry 5}
aixVgCurNumLVs OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of logical volumes currently in the
volume group."
::= {aixVgEntry 6}
aixVgOpenLVs OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of logical volumes within the volume group
that are currently open."
::= {aixVgEntry 7}
aixVgActivePVs OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of active physical voulmes currently in
the volume group."
::= {aixVgEntry 8}
aixVgIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The columnar index for the vgTable."
::= {aixVgEntry 9}
--logical volume group
aixLvTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixLvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" A logical volume is a collection of logical
partitions made up of physical partitions, all
contained in a single volume group. Logical volumes
are expandable and can span several physical volumes
in a volume group. Because it is very slow to get
the data in the table, no data may be returned from
the snmp agent."
::= {aixLogicalVolume 1}
aixLvEntry OBJECT-TYPE
SYNTAX AixLvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry of lvTable"
INDEX {aixLvIndex}
::= {aixLvTable 1}
AixLvEntry ::= SEQUENCE {
aixLvName DisplayString,
aixLvNameVG DisplayString,
aixLvType INTEGER,
aixLvMountPoint DisplayString,
aixLvSize Integer32,
aixLvState INTEGER,
aixLvIndex Integer32
}
aixLvName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Logical volume names must be system-wide unique and
can range from 1 to 15 characters."
::= {aixLvEntry 1}
aixLvNameVG OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the volume group the logical volume belongs to.
Volume group names must be unique system wide and can
range from 1 to 15 characters."
::= {aixLvEntry 2}
aixLvType OBJECT-TYPE
SYNTAX INTEGER {
jfs(1),
jfslog(2),
paging(3),
boot(4),
jfs2(5),
jfs2log(6),
other(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Logical volume type. The type may be boot, jfslog,
jfs, and paging. "
::= {aixLvEntry 3}
aixLvMountPoint OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"File system mount point for the logical volume,
if applicable."
::= {aixLvEntry 4}
aixLvSize OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the logical volume in PPS."
::= {aixLvEntry 5}
aixLvState OBJECT-TYPE
SYNTAX INTEGER {
openStale(1),
openSyncd(2),
closeStale(3),
closeSyncd(4),
undefined(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the logical volume. It may be open/syncd,
open/stale, close/syncd, close/stale or undefined."
::= {aixLvEntry 6}
aixLvIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The columnar index for the lvTable."
::= {aixLvEntry 7}
--physical volume group
aixPvTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixPvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A physical volume is a read-write disk physically
attached to a computer, with a permanently assigned
system wide unique identifier. They are added to a
volume group with the extendvg command and removed
from a volume group with the reducevg command. When
added to the volume group, physical volumes are
partitioned into contiguous, equal-sized units of space
called physical partitions."
::= {aixPhysicalVolume 1}
aixPvEntry OBJECT-TYPE
SYNTAX AixPvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of pvTable "
INDEX { aixPvIndex}
::= {aixPvTable 1}
AixPvEntry ::= SEQUENCE {
aixPvName DisplayString,
aixPvNameVG DisplayString,
aixPvState INTEGER,
aixPvSize Integer32,
aixPvFree Integer32,
aixPvNumLVs Integer32,
aixPvIndex Integer32
}
aixPvName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the physical volume. Physical volume names
are typically in the form hdiskx where x is a system wide
unique number. This name is assigned when the disk is
detected for the first time on a system startup or when
the system management commands are used at runtime to
add a disk to the system. "
::= {aixPvEntry 1}
aixPvNameVG OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The volume group which is assigned to the physical
volume. "
::= { aixPvEntry 2 }
aixPvState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
missing(2),
removed(3),
variedOff(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the physical volume. If the volume group that
contains the physical volume is varied on with the
varyonvg command, the state is active , missing , or
removed . If the physical volume is varied off with
the varyoffvg command, the state is varied off . "
::= {aixPvEntry 3}
aixPvSize OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total size of the physical volume in megabytes. "
::= {aixPvEntry 4}
aixPvFree OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Available size of the physical volume in megabytes"
::= {aixPvEntry 5}
aixPvNumLVs OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of logical volumes using the physical volume."
::= {aixPvEntry 6}
aixPvIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The columnar index for the pvTable."
::= {aixPvEntry 7}
--paging space
aixPageThreshold OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The percentage used threshold for the paging space.
When the current used percentage for the page space
is above aixVgThreshold and the value of the last
poll interval is less than the threshold, then an
event will be generated.
The value for aixPageThreshold should be between 0 and
100. When it is set to zero, the related trap,
aixPageFull, is disabled. Its default value is 95."
::= {aixPagingSpace 1}
aixPageTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixPageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" A paging space is fixed-disk storage for information
that is resident in virtual memory, but is not currently
being accessed. When the amount of free real memory in
the system is low, programs or data that have not been
used recently are moved from real memory to paging space
in order to free real memory for other activities.
This table will be refreshed at least with each poll
interval."
::= {aixPagingSpace 2}
aixPageEntry OBJECT-TYPE
SYNTAX AixPageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry of the pageTable Table "
INDEX {aixPageIndex}
::= {aixPageTable 1}
AixPageEntry ::= SEQUENCE {
aixPageName DisplayString,
aixPageNameVG DisplayString,
aixPageNamePV DisplayString,
aixPageSize Integer32,
aixPagePercentUsed Integer32,
aixPageStatus INTEGER,
aixPageType INTEGER,
aixPageIndex Integer32
}
aixPageName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the paging space. It is assigned by the
system automatically when it is created. "
::= {aixPageEntry 1}
aixPageNameVG OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the volume group within which the logical
volume for the paging space is created. "
::= {aixPageEntry 2}
aixPageNamePV OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the physical volume of the volume group. "
::= {aixPageEntry 3}
aixPageSize OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the paging space. "
::= {aixPageEntry 4}
aixPagePercentUsed OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The used percentage of the paging space. "
::= {aixPageEntry 5}
aixPageStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
notActive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the paging space."
::= {aixPageEntry 6}
aixPageType OBJECT-TYPE
SYNTAX INTEGER {
lv(1),
nfs(2),
other(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of paging space. "
::= {aixPageEntry 7}
aixPageIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The columnar index for the pageTable."
::= {aixPageEntry 8}
-- the printer queue table
aixPrtQueTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixPrtQueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The print queue table. If several devices are
attached to one queue, there are several entries
whose keys are queue name and device name."
::= { aixPrtQueue 1 }
aixPrtQueEntry OBJECT-TYPE
SYNTAX AixPrtQueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a queue in the print queue table."
INDEX { aixPrtQueIndex }
::= { aixPrtQueTable 1 }
AixPrtQueEntry ::= SEQUENCE {
aixPrtQueName
DisplayString,
aixPrtQueDevice
DisplayString,
aixPrtQueStatus
INTEGER,
aixPrtQueAction
INTEGER,
aixPrtQueDescipline
DisplayString,
aixPrtQueAcctFile
DisplayString,
aixPrtQueHost
DisplayString,
aixPrtQueRQ
DisplayString,
aixPrtQueJobNum
Integer32,
aixPrtQueIndex
Integer32
}
aixPrtQueName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the queue ."
::= { aixPrtQueEntry 1 }
aixPrtQueDevice OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Print Queue device "
::= { aixPrtQueEntry 2 }
aixPrtQueStatus OBJECT-TYPE
SYNTAX INTEGER {
ready(1),
running(2),
waiting(3),
off(4),
oprwait(5),
init(6),
sending(7),
gethost(8),
connect(9),
busy(10)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ready(1) indicates that virtual device is up.
running(2) indicates that virtual device is running
a job.
waiting(3) indicates that virtual device is could not
open and is waiting on a device.
off(4) indicates that virtual device is down.
oprwait(5) indicates that virtual device is waiting on
operator message response.
init(6) indicates that virtual device is running a job
which has set status to initialize .
sending(7) indicates that virtual device is remote and
in the process of sending data to the foriegn
server.
gethost(8) indicates that virtual device is remote and
in the process of determining the foriegn
server.
connect(9) indicates that virtual device is remote and
in the process of connecting to the foriegn
server.
busy(10) indicates virtual device is busy printing
another job. "
::= { aixPrtQueEntry 3 }
aixPrtQueAction OBJECT-TYPE
SYNTAX INTEGER {
default(1),
start(2),
stop(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A control variable used to trigger an action on a queue
in the printer table. When read, this variable always
returns the most recent value that it was previously
set to. If it has not been set since the last
initialization of the print subsystem on the node, it
returns default(1) . When set, this variable
causes the queue to undertake the indicated action:
default - the default value for this queue status.
start - start the print queue.
stop - stop the print queue."
::= { aixPrtQueEntry 4 }
aixPrtQueDescipline OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the order of print jobs in the queue.
For example, the discipline may be first come first
servei(fcfs) or shrtest job next (sjn).
The selected queuing discipline applies to all
printers associated with the print queue. "
::= {aixPrtQueEntry 5}
aixPrtQueAcctFile OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the full path name of an existing file where
accounting data for this print queue can be logged. If
account is not wanted, it is set to FALSE."
::= {aixPrtQueEntry 6}
aixPrtQueHost OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the full path name of an existing file
where accounting data for this print queue can be
logged. If accounting is not wanted, FALSE is
specified."
::= {aixPrtQueEntry 7}
aixPrtQueRQ OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the remote queue name. If the queue is
defined on the local host, NULL string value will
be assigned. "
::= {aixPrtQueEntry 8}
aixPrtQueJobNum OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the job number of currently running job in the queue.
If the queue is down, the job number of the currently
running job will be zero."
::= {aixPrtQueEntry 9}
aixPrtQueIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The columnar index for the aixPrtQueTable."
::= {aixPrtQueEntry 10}
aixUsrTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixUsrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of users."
::= { aixUsers 1 }
aixUsrEntry OBJECT-TYPE
SYNTAX AixUsrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the users table."
INDEX { aixUsrIndex }
::= { aixUsrTable 1 }
AixUsrEntry ::=
SEQUENCE {
aixUsrName
DisplayString,
aixUsrID
Integer32,
aixUsrHome
DisplayString,
aixUsrShell
DisplayString,
aixUsrLocalLogin
INTEGER ,
aixUsrRemoteLogin
INTEGER ,
aixUsrPasswdMaxAge
Integer32,
aixUsrStatus
INTEGER,
aixUsrGroups
DisplayString,
aixUsrAllowableAttempts
Integer32,
aixUsrResetLoginCount
INTEGER ,
aixUsrPrimaryGroup
DisplayString,
aixUsrIndex
Integer32
}
aixUsrName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies a string that identifies this user account
on the system. A user name contains a string of one
to eight bytes. They can be letters, numbers, and some
special characters in the user name.
The following restrictions apply:
The user name can not start with a - (minus sign),
+ (plus sign), or ~ (tilde). It cannot have a ,
(comma), : (colon), =(equals sign), * (asterisk),
(double quotes), or the keywords ALL and default in
the user name."
::= { aixUsrEntry 1 }
aixUsrID OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Defines a unique decimal integer string to associate
with this user account on the system. It is strongly
recommended to let the system generate the user
to incorporate all the security restrictions and
conventions that may apply to your system. To have
the system generate the ID, leave this field blank."
::= { aixUsrEntry 2}
aixUsrHome OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user home directory. "
::= { aixUsrEntry 3 }
aixUsrShell OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user's initial shell. On AIX, it is also called
initial program. "
::= { aixUsrEntry 4 }
aixUsrLocalLogin OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the user can log into the system
with the login command locally. default value is
true(1)"
::= {aixUsrEntry 5}
aixUsrRemoteLogin OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the user can log into the system
with the login command. For example, if this is set to
false, the user can not login with the telnet remotely.
default value is true(1)."
::= {aixUsrEntry 6}
aixUsrPasswdMaxAge OBJECT-TYPE
SYNTAX Integer32(0..52)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the maximum age (in weeks) for the user's
password. When the password reaches this age, the system
requires it to be changed before the user can login
again. The value is a decimal integer string. If 0 is
specified, this feature is disabled. default value is
0."
::= { aixUsrEntry 7}
aixUsrStatus OBJECT-TYPE
SYNTAX INTEGER {
unlocked(1),
locked(2),
disabled(3),
enabled(4),
error(5) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The user status. Determines the status of the user.
Changing this variable will affect the user. 'locked(2)'
is synonymous with 'disabled(3)', and unlocked(1) is
the same as enabled(4). Default value is unlocked(1). "
::= { aixUsrEntry 8 }
aixUsrGroups OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Lists the groups to which the user belongs seperated by
the \',\' delimiter. The first on group on the list is the
primary group.
Groups are collections of
users that can share access authority to protected
resources. Groups can be formed for users who access
the same applications or hardware resources, perform
similar tasks, or have similar needs for information.
A user can be a member in up to 32 groups. However,
only one primary group for a user can be specified.
When a new user account is created and the primary
group is not provided, the system assigns the user
to the primary default group specified in the
/usr/lib/security/mkuser.default file."
::= { aixUsrEntry 9 }
aixUsrAllowableAttempts OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of failed logins times before the user account
is locked. Default value is 0. Zero or negative value
indicates no limit exists. "
::= { aixUsrEntry 10 }
aixUsrResetLoginCount OBJECT-TYPE
SYNTAX INTEGER {
default(1),
reset(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"After the number of unsuccessful login attempts
defined by aixUsrAllowableAttempts, the user will
not be able to log in until the user's
unsuccessful_login_count attribute in
/etc/security/lastlog to be less than the value
defined by aixUsrAllowableAttempts. When this variable
is set to 2(reset), the unsuccessful_login_count
in /etc/security/lastlog will be set to zero.
Default value is 1."
::= { aixUsrEntry 11 }
aixUsrPrimaryGroup OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The primary group that the user belongs to ."
::= { aixUsrEntry 12 }
aixUsrIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the user table ."
::= { aixUsrEntry 13 }
-- the group table
aixGrpTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of groups."
::= { aixGroups 1 }
aixGrpEntry OBJECT-TYPE
SYNTAX AixGrpEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the group table."
INDEX { aixGrpIndex }
::= { aixGrpTable 1 }
AixGrpEntry ::=
SEQUENCE {
aixGrpIndex
Integer32,
aixGrpName
DisplayString,
aixGrpID
Integer32,
aixGrpAdminGroup
INTEGER,
aixGrpUsrList
DisplayString,
aixGrpAdmList
DisplayString
}
aixGrpIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the group table."
::= { aixGrpEntry 1}
aixGrpName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the string that identifies a collection
of system users that can access and work with protected
resources. The system uses groups to control access to
files and resources by users who do not own them.
When a user invokes a process, the system associates
the process with the user's ID and the group IDs of
the groups of which the user is a member. If the user
owns the resource or is a member of a group that can
access it, the system grants read, write, or execute
access to it according to the access control list of
the resource or file. "
::= { aixGrpEntry 2 }
aixGrpID OBJECT-TYPE
SYNTAX Integer32(-2147483648..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system assigns a unique ID associated to the
group name. The group IDs are stored in the
/etc/group file."
::= { aixGrpEntry 3 }
aixGrpAdminGroup OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the group is an administrative group.
Only the root user can modify the attributes of
an administrative group. This field is displayed
with False or True as its value. True indicates
that group is an administrative group. False
indicates that it is a non administrative group
(its attributes can be modified by the group's
specified administrators and the root user).
Default value is false(2)."
::= { aixGrpEntry 4 }
aixGrpUsrList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" the users who are in this group."
::= { aixGrpEntry 5 }
aixGrpAdmList OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The administrator list for this group ."
::= { aixGrpEntry 6 }
-- the file-system table
aixFsThreshold OBJECT-TYPE
SYNTAX Integer32(0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The percentage threshold for the file system.
When the current used percentage for the file system
is above aixVgThreshold and the value of the last
poll interval is less than the threshold, then an
event will be generated. The value for aixFsThreshold
should be between 0 and 100. When it is zero,
the related trap, aixFileSystemFull, is disabled.
Its default value is 95. "
::= {aixFileSystem 1}
aixFsTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixFsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The file system table. This table will be refreshed
at least with each poll interval."
::= { aixFileSystem 2 }
aixFsTableEntry OBJECT-TYPE
SYNTAX AixFsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the file system table"
INDEX { aixFsIndex }
::= { aixFsTable 1 }
AixFsTableEntry ::=
SEQUENCE {
aixFsIndex
Integer32,
aixFsName
DisplayString,
aixFsMountPoint
DisplayString,
aixFsType
INTEGER,
aixFsSize
Integer32,
aixFsFree
Integer32 ,
aixFsNumINodes
Integer32,
aixFsUsedInodes
Integer32,
aixFsStatus
INTEGER,
aixFsExecution
INTEGER,
aixFsResultMsg
DisplayString
}
aixFsIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the file system table."
::= { aixFsTableEntry 1 }
aixFsName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the file system."
::= { aixFsTableEntry 2 }
aixFsMountPoint OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies the mount point, which is the directory
where the file system is available or will be made
available."
::= { aixFsTableEntry 3 }
aixFsType OBJECT-TYPE
SYNTAX INTEGER {
jfs(1),
jfs2(2),
cdrfs(3),
procfs(4),
cachefs(5),
autofs(6),
afs(7),
dfs(8),
nfs(9),
nfs3(10),
other(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The file system type. The type may be JFS(Journal
File System), JFS2 (extented JFS), AFS, DFS,
cashefs, autofs, procfs, cdrfs (CDROM file system),
NFS(Network File System), NFS3 (NFSv3 file system) "
::= { aixFsTableEntry 4 }
aixFsSize OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The size for this file system in megabytes."
::= { aixFsTableEntry 5 }
aixFsFree OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of megabytes free in file system."
::= { aixFsTableEntry 6 }
aixFsNumINodes OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of i-nodes on this file system."
::= { aixFsTableEntry 7 }
aixFsUsedInodes OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The used number of Inodes in the file system. "
::= {aixFsTableEntry 8}
aixFsStatus OBJECT-TYPE
SYNTAX INTEGER {
mounted(1),
unmounted(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the file system. It is either mounted(1)
or unmounted(2)."
::= { aixFsTableEntry 9}
aixFsExecution OBJECT-TYPE
SYNTAX INTEGER {
other(1),
mount(2),
unmount(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The variable is used to trigger the mount action
on unmounted file system and unmount action on mounted
file system. This state can only change from mount
to unmount or unmount to mount. Its normal status
is other(1). The execution result is kept at
aixFsResultMsg."
::= { aixFsTableEntry 10}
aixFsResultMsg OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The execution result message of mounting or
umounting command. "
::= { aixFsTableEntry 11}
-- The proces table
aixProcNum OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of processes running."
::= { aixProcess 1 }
aixProcTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixProcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Process Table."
::= { aixProcess 2 }
aixProcEntry OBJECT-TYPE
SYNTAX AixProcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry contains information about a process
running on the system."
INDEX { aixProcPID }
::= { aixProcTable 1 }
AixProcEntry ::= SEQUENCE {
aixProcPID
Integer32,
aixProcUID
Integer32,
aixProcPPID
Integer32,
aixProcGroup
Integer32,
aixProcPriority
Integer32,
aixProcCMD
DisplayString,
aixProcCPU
Integer32,
aixProcStart
TimeTicks,
aixProcStatus
INTEGER,
aixProcTTY
DisplayString
}
aixProcPID OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The process ID (pid) of the process."
::= { aixProcEntry 1 }
aixProcUID OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user ID of the process owner."
::= { aixProcEntry 2 }
aixProcPPID OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The process ID of the parent process."
::= { aixProcEntry 3 }
aixProcGroup OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the effective group ID of the process."
::= { aixProcEntry 4 }
aixProcPriority OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The priority of the process or kernel thread,
higher numbers mean lower priority."
::= { aixProcEntry 5 }
aixProcCMD OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The command name of the process. "
::= { aixProcEntry 6 }
aixProcCPU OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU utilization of process or thread, incremented
each time the system clock ticks and the process
or thread is found to be running.
Large values indicate a CPU intensive process and results
in lower process priority whereas small values indicate
an I/O intensive process and result in a more favorable
priority. "
::= { aixProcEntry 7 }
aixProcStart OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The start time of the process."
::= { aixProcEntry 8 }
aixProcStatus OBJECT-TYPE
SYNTAX INTEGER{
nonexistentPS(1),
activePS(2),
swappedPS(3),
idlePS(4),
canceledPS(5),
stoppedPS(6),
other(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For processes:
(1)O Nonexistent
(2)A Active
(3)W Swapped
(4)I Idle (waiting for startup) :
(5)Z Canceled
(6)T Stopped
"
::= { aixProcEntry 9 }
aixProcTTY OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the controlling terminal name of the
process. "
::= { aixProcEntry 10 }
--aix subsystem
aixSubSystemNum OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the subsystems in the current table."
::= { aixSrvSubsystem 1}
aixSubSysTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixSubSysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of subsystems."
::= {aixSrvSubsystem 2}
aixSubSysEntry OBJECT-TYPE
SYNTAX AixSubSysEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry in the subsystem table"
INDEX {aixSubSysIndex}
::= {aixSubSysTable 1}
AixSubSysEntry ::=
SEQUENCE {
aixSubSysName
DisplayString,
aixSubSysGroup
DisplayString,
aixSubSysPID
Integer32,
aixSubSysStatus
INTEGER,
aixSubSysIndex
Integer32
}
aixSubSysName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the subsystem. "
::= {aixSubSysEntry 1}
aixSubSysGroup OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A subsystem group is a group of any specified
subsystems. Grouping subsystems together allows
control over several subsystems at the same time. Examples
of subsystem groups are TCP/IP, SNA Services,
Network Information system (NIS), and Network File
Systems (NFS)."
::= {aixSubSysEntry 2}
aixSubSysPID OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The process ID of the subsystem. When the subsystem
is inoperative, the PID is zero."
::= {aixSubSysEntry 3}
aixSubSysStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inoperative(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The status of the subsystem. When it is active(1),
it can be stopped by setting the status to 2. Or when
it is inoperative(2), it can be started by setting
the status to 1."
::= {aixSubSysEntry 4}
aixSubSysIndex OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the subsystem table."
::= {aixSubSysEntry 5}
aixSubSrvNum OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of subservers"
::= {aixSrvSubserver 1}
aixSubSrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixSubSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of subservers.
A subserver is a program or process that belongs
to a subsystem. A subsystem can have multiple
subservers and is responsible for starting, stopping,
and providing status of the subservers."
::= {aixSrvSubserver 2}
aixSubSrvEntry OBJECT-TYPE
SYNTAX AixSubSrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the subserver table."
INDEX { aixSubSrvIndex }
::= {aixSubSrvTable 1}
AixSubSrvEntry ::= SEQUENCE {
aixSubSrvName
DisplayString,
aixSubSrvDescr
DisplayString,
aixSubSrvCommand
DisplayString,
aixSubSrvStatus
INTEGER,
aixSubSrvSubsys
DisplayString,
aixSubSrvIndex
Integer32
}
aixSubSrvName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" the subserver name."
::= {aixSubSrvEntry 1}
aixSubSrvDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the subserver."
::= {aixSubSrvEntry 2}
aixSubSrvCommand OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The command to start the subserver."
::= {aixSubSrvEntry 3}
aixSubSrvStatus OBJECT-TYPE
SYNTAX INTEGER {
active(1),
inoperative(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The status of the subserver."
::= {aixSubSrvEntry 4}
aixSubSrvSubsys OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"the subsystem name which the subserver belongs to."
::= {aixSubSrvEntry 5}
aixSubSrvIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The index of the subserver table."
::= {aixSubSrvEntry 6}
-- aix login user group
aixFailedLoginTimePeriod OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time period where failed login attempts
are recorded to compare against
aixLoginFailedThreshold. The default is 300 seconds
(5 minutes). "
::= {aixLogin 1}
aixLoginFailedThreshold OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Defines the number of attempts which a user can
try to log onto the system in the time period defined
by failedLoginTimePeriod prior to the current time
before a trap is generated and sent.
When this variable is set to zero,
the aixUserLoginFailed trap is disabled.
The default is 20 which means that if
users attempting and failing to log in
20 times in last time period defined by
aixFailedLoginTimePeriod , a trap is generated.
These attempts are recorded in /etc/security/failedlogin
or /var/adm/wtmp ."
::= {aixLogin 2}
aixLoginUserTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixLoginUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"loginUserTable contains users who are logged in
currently."
::= {aixLogin 3}
aixLoginUserEntry OBJECT-TYPE
SYNTAX AixLoginUserEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
" An entry of loginUserTable "
INDEX { aixLoginUserIndex}
::= {aixLoginUserTable 1}
AixLoginUserEntry ::= SEQUENCE {
aixLoginUserName
DisplayString,
aixLoginUserTTY
DisplayString,
aixLoginUserHost
DisplayString,
aixLoginUserDateAndTime
DisplayString,
aixLoginUserIndex
Integer32
}
aixLoginUserName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user name. If the user name is unknown,
its value is UNKNOWN_U."
::= {aixLoginUserEntry 1}
aixLoginUserTTY OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The terminal tty name. "
::= {aixLoginUserEntry 2}
aixLoginUserHost OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the machine the user tried to
log onto the system from. "
::= {aixLoginUserEntry 3}
aixLoginUserDateAndTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date and time when the user logged in."
::= {aixLoginUserEntry 4}
aixLoginUserIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index for the table"
::= {aixLoginUserEntry 5}
-- the hardware device group
-- printer
aixPrinterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixPrinterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of defined printers/plotters. On AIX, the
printer is defined, used and dealt with in the same
way as the plotter. The number of entries depends on
the configuration of the system such as the serial or
parallel port number."
::= { aixPrinter 1 }
aixPrinterEntry OBJECT-TYPE
SYNTAX AixPrinterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of printerTable. Each entry contains all
attributes of a defined printer or plotter."
INDEX {aixPrinterIndex}
::= {aixPrinterTable 1}
AixPrinterEntry ::= SEQUENCE {
aixPrinterName DisplayString,
aixPrinterIndex Integer32,
aixPrinterType DisplayString,
aixPrinterInterface DisplayString,
aixPrinterStatus INTEGER,
aixPrinterDescr DisplayString,
aixPrinterLocation DisplayString,
aixPrinterPortNumber DisplayString
}
aixPrinterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"When a printer or plotter device is added to the
system, a name is automatically assigned to the device.
On AIX, this name is in the format of lpx, for example,
lp0, lp1."
::= { aixPrinterEntry 1 }
aixPrinterIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the printer table."
::= { aixPrinterEntry 2 }
aixPrinterType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the type of the printer/plotter. The type
can be the defined printer/plotter name such as
hplj-8100 which represents Hewlett-Packard LaserJet
8100, or opp for Other parallel printer, or osp for
other serial printer."
::= {aixPrinterEntry 3}
aixPrinterInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The printer/plotter interface with the computer. Its
value can be parallel, rs232, or rs422."
::= {aixPrinterEntry 4}
aixPrinterStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the device. Possible
values are available(1), indicating that the device is
configured in the system and ready to use; and defined(2),
indicating that the device is defined to the system
but not configured. "
::= {aixPrinterEntry 5}
aixPrinterDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description for the printer/plotter. "
::= {aixPrinterEntry 6}
aixPrinterLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Location codes of 00-00-S1-00 or 00-00-S2-0 indicate
the printer or plotter device is connected to the
standard I/O serial ports s1 or s2.
A location code of 00-00-0P-00 indicates that the
parallel printer is connected to the standard I/O
parallel port
Any other location code will indicate a printer or
plotter which is connected to an adapter card other
than the Standard I/O board. For these printers and
plotters the location code format is AA-BB-CC-DD
where AA-BB indicates the location code of the
controlling adapter. A value of 00 for the AA field
indicates the adapter card is located in the CPU drawer
or system unit depending on the type of system.
Any other value for the AA field indicates the card
is located in an I/O expansion drawer; in which case,
the first digit identifies the I/O bus and the second
digit identifies the slot number on the bus, in the
CPU drawer, that contain the asynchronous expansion
adapter to which the I/O expansion drawer is connected.
The first digit of this BB field identifies the I/O bus
containing the adapter card. If the card is in the
CPU drawer or system unit, this digit will be 0 for
the standard I/O bus or 1 for the optional I/O bus.
If the card is in an I/O expansion drawer, this digit
is 0. The second digit identifies the slot number on
the I/O bus (or slot number in the I/O expansion drawer)
that contains the card.
The CC field identifies the connector on the adapter
card to where the asynchronous distribution box is
connected. Possible values are 01, 02, 03, and 04.
The DD field identifies the port number on the
asynchronous distribution box where the printer or
plotter is attached."
::= {aixPrinterEntry 7}
aixPrinterPortNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The printer port number. This indicates the port on
an adapter card or asynchronous distribution box
to which the printer or plotter is connected. The
value must be in the range 0 through 7
for an 8-port adapter card, 0 through 15 for a 16-port
adapter card, and 0 through 63 for a 64-port adapter
card. The standard I/O ports are designated as s1 and
s2 for the two serial ports and p for the parallel
port."
::= {aixPrinterEntry 8}
-- tape
aixTapeDrvTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixTapeDrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of defined tape drives. The number of entries
depends on the configuration of the system. "
::= {aixTape 1}
aixTapeDrvEntry OBJECT-TYPE
SYNTAX AixTapeDrvEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the aixTapeDrvTable. Each entry contains all
the attributes of a tape drive."
INDEX {aixTapeDrvIndex}
::= {aixTapeDrvTable 1}
AixTapeDrvEntry ::= SEQUENCE {
aixTapeDrvName DisplayString,
aixTapeDrvIndex Integer32,
aixTapeDrvType DisplayString,
aixTapeDrvInterface DisplayString,
aixTapeDrvStatus INTEGER,
aixTapeDrvDescr DisplayString,
aixTapeDrvLocation DisplayString,
aixTapeDrvBlkSize Integer32,
aixTapeDrvManufacturerName DisplayString,
aixTapeDrvModelName DisplayString,
aixTapeDrvSN DisplayString,
aixTapeDrvFRU DisplayString,
aixTapeDrvPN DisplayString,
aixTapeDrvEC DisplayString
}
aixTapeDrvName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the device. When a
tape drive is added or defined in the system, a name
is automatically assigned to the device. The format
of the name looks like rmt0."
::= {aixTapeDrvEntry 1}
aixTapeDrvIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the tape drive table."
::= {aixTapeDrvEntry 2}
aixTapeDrvType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the predefined device type of the tape
drive. For example, 4mm2gb2 is a scsi 2.0 GB 4mm
Tape Drive."
::= {aixTapeDrvEntry 3}
aixTapeDrvInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the type of tape drive interface. This is
the same as the predefined device subclass of the
device."
::= {aixTapeDrvEntry 4}
aixTapeDrvStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the tape drive.
Possible values are available (1), indicating that the
tape drive is configured in the system and ready to
be used, and defined(2), indicating that the tape drive
is defined to the system but not configured."
::= {aixTapeDrvEntry 5}
aixTapeDrvDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Provides a short text description of the tape drive
device."
::= {aixTapeDrvEntry 6}
aixTapeDrvLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For all SCSI devices, including disks, CD-ROMs,
read/write optical drives, tapes, target mode, and
initiator devices, the location code format is
AA-BB-CC-S,L. The AA-BB fields identify the location
code of the SCSI adapter controlling the SCSI device.
. A value of 00 for the AA field indicates the
controlling adapter card is located in the CPU drawer
or system unit, depending on the type of system.
. The BB field identifies the I/O bus and slot
containing the card. The first digit indicates the
I/O bus. It is 0 for the standard I/O bus and 1 for
the optional I/O bus.
The second digit is the slot on the indicated I/O bus
containing the card. A value of 00 for the BB field
indicates the standard SCSI controller.
. The CC field identifies the card's SCSI bus that
the device is attached to. For a card that provides
only a single SCSI bus, this field will be set to 00.
Otherwise, a value of 00 indicates a device attached
to the card's internal SCSI bus and a value of 01
indicates a device attached to the card's external
SCSI bus.
. The S,L field identifies the SCSI ID and logical
unit number (LUN) of the SCSI device. The S value
indicates the SCSI ID, and the L value indicates the
LUN."
::= {aixTapeDrvEntry 7}
aixTapeDrvBlkSize OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the block size to use when reading or
writing to the tape."
::= {aixTapeDrvEntry 8}
aixTapeDrvManufacturerName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the manufacturer of the tape drive."
::= {aixTapeDrvEntry 9 }
aixTapeDrvModelName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model name of the tape drive."
::= {aixTapeDrvEntry 10}
aixTapeDrvSN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tape driver serial number."
::= {aixTapeDrvEntry 11}
aixTapeDrvPN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tape driver part number."
::= {aixTapeDrvEntry 12 }
aixTapeDrvFRU OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tape drive FRU number (Field Replaceable Unit)."
::= {aixTapeDrvEntry 13 }
aixTapeDrvEC OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tape drive EC (Engineering Change)."
::= {aixTapeDrvEntry 14 }
-- the hard disk device
aixHdTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixHdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of defined hard disks. The number of entries
depends on the configuration of the system. "
::= {aixHardDisk 1}
aixHdEntry OBJECT-TYPE
SYNTAX AixHdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in hdTable. Each entry contains all
the attributes of the individual hard disk."
INDEX {aixHdIndex}
::= {aixHdTable 1}
AixHdEntry ::= SEQUENCE {
aixHdName DisplayString,
aixHdIndex Integer32,
aixHdType DisplayString,
aixHdSize INTEGER,
aixHdInterface DisplayString,
aixHdStatus INTEGER,
aixHdLocation DisplayString,
aixHdIdentifier DisplayString,
aixHdDescr DisplayString,
aixHdManufacturerName DisplayString,
aixHdModelName DisplayString,
aixHdSN DisplayString,
aixHdFRU DisplayString,
aixHdPN DisplayString,
aixHdEC DisplayString
}
aixHdName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the disk device."
::= {aixHdEntry 1}
aixHdIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the hard disk table."
::= {aixHdEntry 2}
aixHdType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Identifies the predefined device type of the disk."
::= {aixHdEntry 3}
aixHdSize OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size in megabytes of the hard disk. "
::= {aixHdEntry 4}
aixHdInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the type of disk interface. This is
the same as the predefined device subclass of the disk."
::= {aixHdEntry 5}
aixHdStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the disk device.
Possible values are available(1), indicating that the
disk device is configured in the system and ready
to be used, and defined(2), indicating that the disk
device is defined to the system but not configured."
::= {aixHdEntry 6}
aixHdLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For all SCSI devices, including disks, CD-ROMs,
read/write optical drives, tapes, target mode, and
initiator devices, the location code format is
AA-BB-CC-S,L. The AA-BB fields identify the location
code of the SCSI adapter controlling the SCSI device.
For details, please refer to aixTapeDrvLocation. "
::= {aixHdEntry 7}
aixHdIdentifier OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Displays the unique physical volume identifier
of the physical volume of a disk. If the disk is
not a physical volume, this field value will be none."
::= {aixHdEntry 8}
aixHdDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Provides a short text description of the disk device."
::= {aixHdEntry 9}
aixHdManufacturerName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the manufacturer of the hard drive."
::= {aixHdEntry 10 }
aixHdModelName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Model Name of the hard drive."
::= {aixHdEntry 11}
aixHdSN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hard driver serial number."
::= {aixHdEntry 12 }
aixHdPN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hard driver part number."
::= {aixHdEntry 13 }
aixHdFRU OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hard drive FRU number (Field Replaceable Unit)."
::= {aixHdEntry 14 }
aixHdEC OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hard drive Engineering Change."
::= {aixHdEntry 15 }
--the memory device
aixMemTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixMemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of defined physical memory.
The number of entries depends on the
configuration of the system. "
::= {aixMemory 1}
aixMemEntry OBJECT-TYPE
SYNTAX AixMemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the memory table ."
INDEX {aixMemIndex}
::= {aixMemTable 1 }
AixMemEntry ::= SEQUENCE {
aixMemName
DisplayString,
aixMemIndex
Integer32,
aixMemLocation
DisplayString,
aixMemSize
Integer32,
aixMemDescr
DisplayString
}
aixMemName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the memory. For example, it may
be mem0."
::= {aixMemEntry 1}
aixMemIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the memory table."
::= {aixMemEntry 2}
aixMemLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The memory location code. An example is 00-00."
::= {aixMemEntry 3}
aixMemSize OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
UNITS "megabytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the physical memory in megabytes. "
::= {aixMemEntry 4}
aixMemDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of memory "
::= {aixMemEntry 5}
-- CDROM drive
aixCdromTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixCdromEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of all defined cdroms."
::= {aixCDROM 1}
aixCdromEntry OBJECT-TYPE
SYNTAX AixCdromEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the cdrom table ."
INDEX { aixCdromIndex }
::= {aixCdromTable 1 }
AixCdromEntry ::= SEQUENCE {
aixCdromName
DisplayString,
aixCdromIndex
Integer32,
aixCdromType
DisplayString,
aixCdromInterface
DisplayString,
aixCdromDescr
DisplayString,
aixCdromStatus
INTEGER,
aixCdromLocation
DisplayString,
aixCdromManufacturerName
DisplayString,
aixCdromModelName
DisplayString,
aixCdromFRU
DisplayString,
aixCdromPN
DisplayString,
aixCdromEC
DisplayString
}
aixCdromName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the CD-ROM drive."
::= {aixCdromEntry 1}
aixCdromIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the CD-ROM table."
::= {aixCdromEntry 2}
aixCdromType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the predefined device type of the
CD-ROM drive."
::= {aixCdromEntry 3}
aixCdromInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the type of drive interface. This is the
same as the predefined device subclass of the CD-ROM
drive."
::= {aixCdromEntry 4}
aixCdromDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Provides a short text description of the CD-ROM
drive device."
::= {aixCdromEntry 5}
aixCdromStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the CD-ROM drive.
Possible values are available(1), indicating that the
CD-ROM drive is configured in the system and ready
to be used, and defined(2), indicating that the drive
is defined to the system but not configured."
::= {aixCdromEntry 6}
aixCdromLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For all SCSI devices, including disks, CD-ROMs,
read/write optical drives, tapes, target mode, and
initiator devices, the location code format is
AA-BB-CC-S,L. The AA-BB fields identify the location
code of the SCSI adapter controlling the SCSI device.
For details, please refer to aixTapeDrvLocation. "
::= {aixCdromEntry 7}
aixCdromManufacturerName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the manufacturer of the cdrom drive."
::= {aixCdromEntry 8 }
aixCdromModelName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cdrom driver model name."
::= {aixCdromEntry 9 }
aixCdromPN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cdrom driver part number."
::= {aixCdromEntry 10 }
aixCdromFRU OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cdrom drive FRU (Field Replaceable Unit)."
::= {aixCdromEntry 11 }
aixCdromEC OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cdrom drive Engineering Change."
::= {aixCdromEntry 12 }
-- SCSI
aixScsiTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixScsiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of SCSI adapters."
::= {aixScsi 1}
aixScsiEntry OBJECT-TYPE
SYNTAX AixScsiEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the SCSI adapter ."
INDEX { aixScsiIndex }
::= {aixScsiTable 1 }
AixScsiEntry ::= SEQUENCE {
aixScsiName
DisplayString,
aixScsiIndex
Integer32,
aixScsiDescr
DisplayString,
aixScsiStatus
INTEGER,
aixScsiLocation
DisplayString,
aixScsiAdapterID
Integer32
}
aixScsiName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the adapter."
::= {aixScsiEntry 1}
aixScsiIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the scsi adapter table."
::= {aixScsiEntry 2}
aixScsiDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Defines a short text description of the adapter."
::= {aixScsiEntry 3}
aixScsiStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the adapter.
Possible values are available, indicating that the
adapter is configured in the system and ready to
be used, and defined, indicating that the adapter
is defined on the system but not configured."
::= {aixScsiEntry 4}
aixScsiLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The location code for the SCSI adapter. An example
is 04-C0."
::= {aixScsiEntry 5}
aixScsiAdapterID OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Specifies the SCSI ID value which the adapter
will use when sending SCSI commands as an initiator
device, and, if target mode is supported,
specifies the SCSI ID the adapter will respond to
when acting as a target device. "
::= {aixScsiEntry 6}
-- Processor
aixProcessorTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of processors."
::= {aixProcessor 1}
aixProcessorEntry OBJECT-TYPE
SYNTAX AixProcessorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the Processor ."
INDEX { aixProcessorIndex }
::= {aixProcessorTable 1 }
AixProcessorEntry ::= SEQUENCE {
aixProcessorName DisplayString,
aixProcessorIndex Integer32,
aixProcessorType DisplayString,
aixProcessorDescr DisplayString,
aixProcessorSpeed Integer32
}
aixProcessorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the processor."
::= {aixProcessorEntry 1}
aixProcessorIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the processor table."
::= {aixProcessorEntry 2}
aixProcessorType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Defines the model type of the processor. For example:
PowerPC_604e"
::= {aixProcessorEntry 3}
aixProcessorDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Defines a short text description of the processor."
::= {aixProcessorEntry 4}
aixProcessorSpeed OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The speed of the processor in hertz."
::= {aixProcessorEntry 5}
-- Network
aixNetworkTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixNetworkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Network adapters."
::= {aixNetwork 1}
aixNetworkEntry OBJECT-TYPE
SYNTAX AixNetworkEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the Network adapter ."
INDEX { aixNetworkIndex }
::= {aixNetworkTable 1 }
AixNetworkEntry ::= SEQUENCE {
aixNetworkName DisplayString,
aixNetworkIndex Integer32,
aixNetworkType DisplayString,
aixNetworkInterface DisplayString,
aixNetworkStatus INTEGER,
aixNetworkLocation DisplayString,
aixNetworkDescr DisplayString
}
aixNetworkName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the network adapter."
::= {aixNetworkEntry 1}
aixNetworkIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the network adapter table."
::= {aixNetworkEntry 2}
aixNetworkType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the network adapter. An example
is ie3."
::= {aixNetworkEntry 3}
aixNetworkInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface name for the Network adapter. An example
is LO."
::= {aixNetworkEntry 4}
aixNetworkStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the adapter.
Possible values are available, indicating that the
adapter is configured in the system and ready to
be used, and defined, indicating that the adapter
is defined on the system but not configured."
::= {aixNetworkEntry 5}
aixNetworkLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The location code for the Network adapter. An example
is 10-60."
::= {aixNetworkEntry 6}
aixNetworkDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Defines a short text description of the adapter. An example is
IEEE 802.3 Ethernet Network Interface"
::= {aixNetworkEntry 7}
-- Adapter
aixAdapterTable OBJECT-TYPE
SYNTAX SEQUENCE OF AixAdapterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of adapters."
::= {aixAdapter 1}
aixAdapterEntry OBJECT-TYPE
SYNTAX AixAdapterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry of the adapter "
INDEX { aixAdapterIndex }
::= {aixAdapterTable 1 }
AixAdapterEntry ::= SEQUENCE {
aixAdapterName DisplayString,
aixAdapterIndex INTEGER,
aixAdapterType DisplayString,
aixAdapterInterface DisplayString,
aixAdapterStatus INTEGER,
aixAdapterLocation DisplayString,
aixAdapterDescr DisplayString
}
aixAdapterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the logical name of the adapter."
::= { aixAdapterEntry 1 }
aixAdapterIndex OBJECT-TYPE
SYNTAX Integer32(1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index for the adapter table."
::= {aixAdapterEntry 2}
aixAdapterType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the adapter. An example
is keyboard."
::= {aixAdapterEntry 3}
aixAdapterInterface OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The interface name for the adapter. An example
is pci."
::= {aixAdapterEntry 4}
aixAdapterStatus OBJECT-TYPE
SYNTAX INTEGER {
available(1),
defined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the current status of the .
Possible values are available, indicating that the
is configured in the system and ready to
be used, and defined, indicating that the
is defined on the system but not configured."
::= {aixAdapterEntry 5}
aixAdapterLocation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The location code for the adapter. An example
is 01-K1-00."
::= {aixAdapterEntry 6}
aixAdapterDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Defines a short text description of the . An example is
Keyboard Adapter"
::= {aixAdapterEntry 7}
-- conformance information
aixCfmGroup OBJECT IDENTIFIER ::= { aixConformance 1}
aixCompliances OBJECT IDENTIFIER ::= { aixConformance 2}
-- compliance statements
aixCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The statement of compliance. "
MODULE IBM-AIX-MIB
MANDATORY-GROUPS {
aixAgentGroup, aixVGGroup,aixPVGroup,
aixLVGroup, aixPagingSpaceGroup,
aixFsGroup, aixProcessGroup,
aixLoginUsrGroup, aixSeGroup,
aixPrtQueueGroup, aixUsrGroup,
aixGrpGroup, aixSubSystemGroup,
aixSubServerGroup, aixSeAuxGroup,
aixPrinterGroup, aixTapeGroup, aixHardDiskGroup,
aixMemoryGroup, aixCDROMGroup, aixScsiGroup,
aixProcessorGroup, aixNetworkGroup, aixAdapterGroup}
GROUP criticalNotificationGroup
DESCRIPTION
"The notification group depends on
aixAgentGroup, aixVGGroup, aixPVGroup,
aixLVGroup, aixPagingSpaceGroup, aixFsGroup,
aixProcessGroup, aixLoginUsrGroup, aixSeGroup.
This group is mandatory."
::= {aixCompliances 1}
aixAgentGroup OBJECT-GROUP
OBJECTS {
aixAgentAction, aixAgentCmdString, aixAgentExeCommand,
aixAgentCmdResult, aixAgentCmdOutput, aixAgentCmdOutIndex,
aixAgentPollInterval, aixPollEnable, aixLastTrapMsg,
aixFsPollInterval, aixVgPollInterval,
aixCPUPollInterval, aixLFPollInterval,
aixPagePollInterval
}
STATUS current
DESCRIPTION
"The objects necessary to control and show
information about the subagent. "
::= {aixCfmGroup 1}
aixSeGroup OBJECT-GROUP
OBJECTS {
aixSeCPUUtilization, aixSeCPUThreshold,
aixSeSystemRunLevel, aixSeSystemState, aixSeSystemTrap
}
STATUS current
DESCRIPTION
"The objects neccessary to control and show
information about the system environment. These objects
are mandatory."
::= {aixCfmGroup 2}
criticalNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS
{
aixFileSystemMounted, aixFileSystemFull,
aixVolumeGroupFull, aixPageFull, aixUserLoginFailed,
aixUtilizationCPU, aixSnmptrapHolder
}
STATUS current
DESCRIPTION
"These objects are used to send traps."
::= {aixCfmGroup 3}
aixVGGroup OBJECT-GROUP
OBJECTS {
aixVgName, aixVgIdentifier, aixVgState, aixVgSize,
aixVgFree, aixVgCurNumLVs, aixVgOpenLVs, aixVgActivePVs,
aixVgThreshold, aixVgIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about the volume group."
::= {aixCfmGroup 4}
aixLVGroup OBJECT-GROUP
OBJECTS {
aixLvName, aixLvNameVG, aixLvType,
aixLvMountPoint, aixLvSize, aixLvState, aixLvIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about logical volumes."
::= {aixCfmGroup 5}
aixPVGroup OBJECT-GROUP
OBJECTS {
aixPvName, aixPvNameVG, aixPvState, aixPvSize,
aixPvFree, aixPvNumLVs, aixPvIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about physical volumes."
::= {aixCfmGroup 6}
aixPagingSpaceGroup OBJECT-GROUP
OBJECTS {
aixPageName, aixPageNameVG, aixPageNamePV, aixPageSize,
aixPagePercentUsed, aixPageStatus, aixPageType,
aixPageThreshold, aixPageIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about paging space."
::= {aixCfmGroup 7}
aixFsGroup OBJECT-GROUP
OBJECTS {
aixFsIndex,aixFsName, aixFsMountPoint, aixFsType, aixFsSize,
aixFsFree, aixFsNumINodes, aixFsUsedInodes, aixFsThreshold,
aixFsStatus, aixFsExecution, aixFsResultMsg
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about file systems."
::= {aixCfmGroup 8}
aixProcessGroup OBJECT-GROUP
OBJECTS {
aixProcPID, aixProcUID, aixProcPPID, aixProcGroup ,
aixProcPriority, aixProcCPU, aixProcStart,
aixProcStatus, aixProcTTY , aixProcCMD, aixProcNum
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about processes."
::= {aixCfmGroup 9}
aixLoginUsrGroup OBJECT-GROUP
OBJECTS {
aixLoginUserName, aixLoginUserTTY, aixLoginUserHost,
aixLoginUserDateAndTime, aixLoginUserIndex,
aixLoginFailedThreshold, aixFailedLoginTimePeriod
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about users currently logged in."
::= {aixCfmGroup 10}
aixPrtQueueGroup OBJECT-GROUP
OBJECTS {
aixPrtQueName, aixPrtQueDevice, aixPrtQueStatus,
aixPrtQueAction, aixPrtQueIndex, aixPrtQueAcctFile,
aixPrtQueRQ, aixPrtQueDescipline, aixPrtQueHost ,
aixPrtQueJobNum
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about print queues."
::= {aixCfmGroup 11}
aixUsrGroup OBJECT-GROUP
OBJECTS {
aixUsrName, aixUsrID, aixUsrHome, aixUsrShell,
aixUsrLocalLogin, aixUsrRemoteLogin, aixUsrPasswdMaxAge,
aixUsrStatus, aixUsrGroups, aixUsrAllowableAttempts,
aixUsrResetLoginCount, aixUsrPrimaryGroup, aixUsrIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about system users."
::= {aixCfmGroup 12}
aixGrpGroup OBJECT-GROUP
OBJECTS {
aixGrpName, aixGrpID, aixGrpAdminGroup,aixGrpIndex,
aixGrpUsrList, aixGrpAdmList
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about system groups."
::= {aixCfmGroup 13}
aixSubSystemGroup OBJECT-GROUP
OBJECTS {
aixSubSysName, aixSubSysGroup, aixSubSysPID,aixSubSysIndex,
aixSubSysStatus, aixSubSystemNum
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about subsystems."
::= {aixCfmGroup 14}
aixSubServerGroup OBJECT-GROUP
OBJECTS {
aixSubSrvName, aixSubSrvDescr, aixSubSrvCommand,
aixSubSrvStatus, aixSubSrvNum, aixSubSrvIndex, aixSubSrvSubsys
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about subservers."
::= {aixCfmGroup 15}
aixSeAuxGroup OBJECT-GROUP
OBJECTS {
aixSeDateAndTime, aixSeMaxProcPerUser, aixSeLicenseNum,
aixSeRemainingLicenseNum, aixSeNumCPUs, aixSeMachineType,
aixSeSerialNumber
}
STATUS current
DESCRIPTION
"The objects neccessary for controlling and showing
information about the system environment. These objects are
optional."
::= {aixCfmGroup 16}
aixPrinterGroup OBJECT-GROUP
OBJECTS {
aixPrinterName, aixPrinterType, aixPrinterInterface,
aixPrinterStatus, aixPrinterDescr, aixPrinterLocation,
aixPrinterPortNumber, aixPrinterIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the printer."
::= {aixCfmGroup 17}
aixTapeGroup OBJECT-GROUP
OBJECTS {
aixTapeDrvName, aixTapeDrvType, aixTapeDrvInterface,
aixTapeDrvStatus, aixTapeDrvLocation,
aixTapeDrvBlkSize, aixTapeDrvDescr, aixTapeDrvIndex,
aixTapeDrvManufacturerName, aixTapeDrvModelName, aixTapeDrvSN,
aixTapeDrvFRU, aixTapeDrvPN, aixTapeDrvEC
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the tape."
::= {aixCfmGroup 18}
aixHardDiskGroup OBJECT-GROUP
OBJECTS {
aixHdName, aixHdType, aixHdSize, aixHdInterface, aixHdStatus,
aixHdLocation, aixHdIdentifier, aixHdDescr, aixHdIndex,
aixHdManufacturerName, aixHdModelName, aixHdSN,
aixHdFRU, aixHdPN, aixHdEC
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the hard disk. "
::= {aixCfmGroup 19}
aixMemoryGroup OBJECT-GROUP
OBJECTS {
aixMemName, aixMemLocation, aixMemSize,
aixMemDescr, aixMemIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the memory. "
::= {aixCfmGroup 20}
aixCDROMGroup OBJECT-GROUP
OBJECTS {
aixCdromName, aixCdromType, aixCdromInterface, aixCdromDescr,
aixCdromStatus, aixCdromLocation, aixCdromIndex,
aixCdromManufacturerName, aixCdromModelName,
aixCdromFRU, aixCdromPN, aixCdromEC
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the CDROM. "
::= {aixCfmGroup 21}
aixScsiGroup OBJECT-GROUP
OBJECTS {
aixScsiName, aixScsiDescr, aixScsiStatus, aixScsiLocation,
aixScsiAdapterID, aixScsiIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the SCSI adapter."
::= {aixCfmGroup 22}
aixProcessorGroup OBJECT-GROUP
OBJECTS {
aixProcessorName, aixProcessorDescr,
aixProcessorSpeed, aixProcessorType,
aixProcessorIndex
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the processors."
::= {aixCfmGroup 23}
aixNetworkGroup OBJECT-GROUP
OBJECTS {
aixNetworkName, aixNetworkDescr, aixNetworkStatus, aixNetworkLocation,
aixNetworkType, aixNetworkIndex, aixNetworkInterface
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the Network adapters."
::= {aixCfmGroup 24}
aixAdapterGroup OBJECT-GROUP
OBJECTS {
aixAdapterName, aixAdapterDescr, aixAdapterStatus, aixAdapterLocation,
aixAdapterType, aixAdapterIndex, aixAdapterInterface
}
STATUS current
DESCRIPTION
"The objects neccessary for showing
information about the adapters."
::= {aixCfmGroup 25}
END
|