1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
6846
6847
6848
6849
6850
6851
6852
6853
6854
6855
6856
6857
6858
6859
6860
6861
6862
6863
6864
6865
6866
6867
6868
6869
6870
6871
6872
6873
6874
6875
6876
6877
6878
6879
6880
6881
6882
6883
6884
6885
6886
6887
6888
6889
6890
6891
6892
6893
6894
6895
6896
6897
6898
6899
6900
6901
6902
6903
6904
6905
6906
6907
6908
6909
6910
6911
6912
6913
6914
6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
6925
6926
6927
6928
6929
6930
6931
6932
6933
6934
6935
6936
6937
6938
6939
6940
6941
6942
6943
6944
6945
6946
6947
6948
6949
6950
6951
6952
6953
6954
6955
6956
6957
6958
6959
6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
6971
6972
6973
6974
6975
6976
6977
6978
6979
6980
6981
6982
6983
6984
6985
6986
6987
6988
6989
6990
6991
6992
6993
6994
6995
6996
6997
6998
6999
7000
7001
7002
7003
7004
7005
7006
7007
7008
7009
7010
7011
7012
7013
7014
7015
7016
7017
7018
7019
7020
7021
7022
7023
7024
7025
7026
7027
7028
7029
7030
7031
7032
7033
7034
7035
7036
7037
7038
7039
7040
7041
7042
7043
7044
7045
7046
7047
7048
7049
7050
7051
7052
|
-- ****************************************************************************
--
-- Server Health Features
-- Management Information Base for SNMP Network Management
--
--
-- Copyright 1992,2015 Hewlett-Packard Enterprise Development, L.P.
--
-- Hewlett-Packard Enterprise Development LP shall not be liable for technical
-- or editorial errors or omissions contained herein. The information in
-- this document is provided "as is" without warranty of any kind and
-- is subject to change without notice. The warranties for HP products
-- are set forth in the express limited warranty statements
-- accompanying such products. Nothing herein should be construed as
-- constituting an additional warranty.
--
-- Confidential computer software. Valid license from HP required for
-- possession, use or copying. Consistent with FAR 12.211 and 12.212,
-- Commercial Computer Software, Computer Software Documentation, and
-- Technical Data for Commercial Items are licensed to the U.S.
-- Government under vendor's standard commercial license.
--
-- Refer to the READMIB.RDM file for more information about the
-- organization of the information in the Compaq Enterprise.
--
-- The Compaq Enterprise number is 232.
-- The ASN.1 prefix to, and including the Compaq Enterprise is:
-- 1.3.6.1.4.1.232
--
-- ****************************************************************************
CPQHLTH-MIB DEFINITIONS ::= BEGIN
IMPORTS
compaq FROM CPQHOST-MIB
enterprises FROM RFC1155-SMI
Counter FROM RFC1155-SMI
DisplayString FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212
TRAP-TYPE FROM RFC-1215
sysName FROM RFC1213-MIB
cpqHoTrapFlags FROM CPQHOST-MIB
cpqSiServerSystemId FROM CPQSINFO-MIB
cpqSiMemModuleSize FROM CPQSINFO-MIB
cpqHoGUIDCanonical FROM CPQHOST-MIB;
-- compaq OBJECT IDENTIFIER ::= { enterprises 232 }
cpqHealth OBJECT IDENTIFIER ::= { compaq 6 }
cpqHeMibRev OBJECT IDENTIFIER ::= { cpqHealth 1 }
cpqHeComponent OBJECT IDENTIFIER ::= { cpqHealth 2 }
cpqHeTrap OBJECT IDENTIFIER ::= { cpqHealth 3 }
cpqHeInterface OBJECT IDENTIFIER ::= { cpqHeComponent 1 }
cpqHeCriticalError OBJECT IDENTIFIER ::= { cpqHeComponent 2 }
cpqHeCorrectableMemory OBJECT IDENTIFIER ::= { cpqHeComponent 3 }
cpqHeAsr OBJECT IDENTIFIER ::= { cpqHeComponent 5 }
cpqHeThermal OBJECT IDENTIFIER ::= { cpqHeComponent 6 }
cpqHePostMsg OBJECT IDENTIFIER ::= { cpqHeComponent 7 }
cpqHeSysUtil OBJECT IDENTIFIER ::= { cpqHeComponent 8 }
cpqHeFltTolPwrSupply OBJECT IDENTIFIER ::= { cpqHeComponent 9 }
cpqHeIRC OBJECT IDENTIFIER ::= { cpqHeComponent 10 }
cpqHeEventLog OBJECT IDENTIFIER ::= { cpqHeComponent 11 }
cpqHeMgmtDisplay OBJECT IDENTIFIER ::= { cpqHeComponent 12 }
cpqHePowerConverter OBJECT IDENTIFIER ::= { cpqHeComponent 13 }
cpqHeResilientMemory OBJECT IDENTIFIER ::= { cpqHeComponent 14 }
cpqHePowerMeter OBJECT IDENTIFIER ::= { cpqHeComponent 15 }
cpqHeHWBios OBJECT IDENTIFIER ::= { cpqHeComponent 16 }
cpqHeSysBackupBattery OBJECT IDENTIFIER ::= { cpqHeComponent 17 }
cpqHeSysPwrHw OBJECT IDENTIFIER ::= { cpqHeComponent 18 }
cpqHeSysBoardFru OBJECT IDENTIFIER ::= { cpqHeComponent 19 }
cpqHePowerFailure OBJECT IDENTIFIER ::= { cpqHeComponent 20 }
cpqHeInterlockFailure OBJECT IDENTIFIER ::= { cpqHeComponent 21 }
cpqHeOsNetWare3x OBJECT IDENTIFIER ::= { cpqHeInterface 1 }
cpqHeOsCommon OBJECT IDENTIFIER ::= { cpqHeInterface 4 }
-- ****************************************************************************
-- Health MIB Revision
-- ===================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeMibRev Group (1.3.6.1.4.1.232.6.1)
--
-- An Insight Agent conforming to this document will return a
-- cpqHeMibRevMajor of one (1) and a cpqHeMibRevMinor of fifty nine (59).
--
--
-- Implementation of the MibRev group is mandatory for all agents
-- supporting the Server Health MIB.
--
-- ****************************************************************************
cpqHeMibRevMajor OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Major Revision level of the MIB.
A change in the major revision level represents a major change
in the architecture of the MIB. A change in the major revision
level may indicate a significant change in the information
supported and/or the meaning of the supported information,
correct interpretation of data may require a MIB document with
the same major revision level."
::= { cpqHeMibRev 1 }
cpqHeMibRevMinor OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor revision level of the MIB.
A change in the minor revision level may represent some minor
additional support, no changes to any pre-existing information
has occurred."
::= { cpqHeMibRev 2 }
cpqHeMibCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2), -- default
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The overall condition.
This object represents the overall status of the server health
system represented by this MIB."
::= { cpqHeMibRev 3 }
-- ****************************************************************************
-- Health MIB NetWare OS Group
-- ===========================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1)
-- cpqHeOsNetWare3x Group (1.3.6.1.4.1.232.6.2.1.1)
--
-- Implementation of the cpqHeOsNetWare3x group is mandatory for all
-- agents that support the Server Health MIB in a NetWare host
-- operating environment.
--
-- ****************************************************************************
cpqHeNw3xDriverName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Driver Name.
This value identifies the NetWare Loadable Module providing the
operating system access to the Server Health information."
::= { cpqHeOsNetWare3x 1 }
cpqHeNw3xDriverDate OBJECT-TYPE
SYNTAX DisplayString (SIZE (8))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Driver Date.
The date of the NetWare Loadable Module providing the operating
system access to the Server Health logs. The date is
provided in mm/dd/yy format."
::= { cpqHeOsNetWare3x 2 }
cpqHeNw3xDriverVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..5))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Driver Version.
This is the version of the NetWare Loadable Module (NLM)
providing the operating system access to the Server
Health logs."
::= { cpqHeOsNetWare3x 3 }
-- ****************************************************************************
-- Health MIB OS Common Group
-- ==========================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1)
-- cpqHeOsCommon Group (1.3.6.1.4.1.232.6.2.1.4)
--
-- The cpqHeOsCommon group describes the interface to the Server
-- health components. This information describes the interface modules
-- and general OS interface architectural information.
--
-- Implementation of the cpqHeOsCommon group is mandatory for all
-- agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHeOsCommonPollFreq OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Insight Agent's polling frequency.
The frequency, in seconds, at which the Insight Agent requests
information from the device driver. A frequency of zero
indicates that the Insight Agent retrieves the information upon
request of a management station, it does not poll the device
driver at a specific interval.
If the poll frequency is 0 all attempts to write to this
object will fail. If the poll frequency is non-zero,
setting this value will change the polling frequency of the
Insight Agent. Setting the poll frequency to zero will always
fail, an agent may also choose to fail any request to change
the poll frequency to a value that would severely impact system
performance."
::= { cpqHeOsCommon 1 }
-- ****************************************************************************
-- Health MIB OS Common Module Table
-- =================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1)
-- cpqHeOsCommon Group (1.3.6.1.4.1.232.6.2.1.4)
-- cpqHeOsCommonModuleTable (1.3.6.1.4.1.232.6.2.1.4.2) deprecated
--
-- ****************************************************************************
cpqHeOsCommonModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeOsCommonModuleEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"Supporting software table.
This is a table of software modules that provide an interface
to the device this server health MIB describes."
::= { cpqHeOsCommon 2 }
cpqHeOsCommonModuleEntry OBJECT-TYPE
SYNTAX CpqHeOsCommonModuleEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A description of a software modules that provide an interface
to the device this MIB describes."
INDEX { cpqHeOsCommonModuleIndex }
::= { cpqHeOsCommonModuleTable 1 }
CpqHeOsCommonModuleEntry ::= SEQUENCE {
cpqHeOsCommonModuleIndex INTEGER,
cpqHeOsCommonModuleName DisplayString,
cpqHeOsCommonModuleVersion DisplayString,
cpqHeOsCommonModuleDate OCTET STRING,
cpqHeOsCommonModulePurpose DisplayString
}
cpqHeOsCommonModuleIndex OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"A unique index for this module description."
::= { cpqHeOsCommonModuleEntry 1 }
cpqHeOsCommonModuleName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The module name."
::= { cpqHeOsCommonModuleEntry 2 }
cpqHeOsCommonModuleVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..5))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The module version in XX.YY format.
Where XX is the major version number and YY is the minor version
number. This field will be null (size 0) string if the agent
cannot provide the module version."
::= { cpqHeOsCommonModuleEntry 3 }
cpqHeOsCommonModuleDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (7))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The module date.
field octets contents range
===== ====== ======= =====
1 1-2 year 0..65536
2 3 month 1..12
3 4 day 1..31
4 5 hour 0..23
5 6 minute 0..59
6 7 second 0..60
(use 60 for leap-second)
This field will be set to year = 0 if the agent cannot provide
the module date. The hour, minute, and second field will be set
to zero (0) if they are not relevant. The year field is set
with the most significant octet first."
::= { cpqHeOsCommonModuleEntry 4 }
cpqHeOsCommonModulePurpose OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The purpose of the module described in this entry."
::= { cpqHeOsCommonModuleEntry 5 }
-- ****************************************************************************
-- Health MIB Critical Error Group
-- ===============================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeCriticalError Group (1.3.6.1.4.1.232.6.2.2)
--
-- The cpqHeCriticalError group describes the health critical error log.
--
-- Implementation of the cpqHeCriticalError group is mandatory for all
-- agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHeCritLogSupported OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notSupported(2),
supported(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies if this system supports the critical
error logging feature."
::= { cpqHeCriticalError 1 }
cpqHeCritLogCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the critical
error log feature."
::= { cpqHeCriticalError 2 }
cpqHeLastCritErrorAbendMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Last Critical Termination message.
The message associated with the last critical error of
type criticalException(14) or abend(27)."
::= { cpqHeCriticalError 3 }
-- ****************************************************************************
-- Health MIB Critical Error Table
-- ===============================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeCriticalError Group (1.3.6.1.4.1.232.6.2.2)
-- cpqHeCriticalErrorTable (1.3.6.1.4.1.232.6.2.2.4)
--
-- ****************************************************************************
cpqHeCriticalErrorTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeCriticalErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of critical error descriptions."
::= { cpqHeCriticalError 4 }
cpqHeCriticalErrorEntry OBJECT-TYPE
SYNTAX CpqHeCriticalErrorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A critical error description."
INDEX { cpqHeCriticalErrorIndex }
::= { cpqHeCriticalErrorTable 1 }
CpqHeCriticalErrorEntry ::= SEQUENCE {
cpqHeCriticalErrorIndex INTEGER,
cpqHeCriticalErrorStatus INTEGER,
cpqHeCriticalErrorType INTEGER,
cpqHeCriticalErrorTime OCTET STRING,
cpqHeCriticalErrorInfo OCTET STRING,
cpqHeCriticalErrorDesc DisplayString
}
cpqHeCriticalErrorIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this critical error
description. The entries will be in order of occurrence
with the most recent entry first."
::= { cpqHeCriticalErrorEntry 1 }
cpqHeCriticalErrorStatus OBJECT-TYPE
SYNTAX INTEGER {
uncorrected(1),
corrected(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value specifies if the user has marked this error as
corrected. Marking errors as corrected may be performed with
the Diagnostics or by a set operation on this variable.
Attempting to set this variable to uncorrected(1) will fail."
::= { cpqHeCriticalErrorEntry 2 }
cpqHeCriticalErrorType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
empty(2),
nonCorrectableMemErr(3),
busMasterTimeoutNmi(4),
commandBusTimeoutNmi(5),
ioCheckNmi(6),
refreshOverflowNmi(7),
cacheParityNmi(8),
processorParityNmi(9),
eisaHostMemReadHit(10),
processorFailure(11),
cautionTemperature(12),
postCriticalError(13),
criticalException(14),
serverManagerIfFail(15),
pentiumIperr(16),
pentiumAperr(17),
pentiumIeerr(18),
pentiumApcheck(19),
cpuLocalError(20),
failsafeTimer(21),
softwareNmi(22),
asrBaseMemoryParity(23),
asrExtendedMemParity(24),
asrResetLimit(25),
asrMemoryParity(26),
abend(27),
asrTestEvent(28),
asrTimeoutNmi(29),
fanFailure(30),
upsDetectedLineFail(31),
asrDetectedAtBoot(32),
redunPowerSupplyFailure(33),
pciBusParityError(34),
diagnosticError(35),
rtcChipBatteryFailure(36),
pentiumBerr(37),
dcConverterFailure(38),
cpuInternalThreshPassed(39)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the type of error."
::= { cpqHeCriticalErrorEntry 3 }
cpqHeCriticalErrorTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..3))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time of the error: hour (first five bits), day of month
(next 5 bits), month (next 4 bits), year of the current century
(next 7 bits). The last 3 bits are reserved."
::= { cpqHeCriticalErrorEntry 4 }
cpqHeCriticalErrorInfo OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Information about the error."
::= { cpqHeCriticalErrorEntry 5 }
cpqHeCriticalErrorDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text description of the critical error."
::= { cpqHeCriticalErrorEntry 6 }
-- ****************************************************************************
-- Health MIB Correctable Memory Error Group
-- =========================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeCorrectableMemory Group (1.3.6.1.4.1.232.6.2.3)
--
-- The cpqHeCorrectableMemory group describes the health correctable memory
-- error log.
--
-- Implementation of the cpqHeCorrectableMemory group is mandatory for all
-- agents that support the Server Health MIB on a system that has the
-- correctable memory feature.
--
-- ****************************************************************************
cpqHeCorrMemLogStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notSupported(2),
disabled(3),
enabled(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies whether this system is currently tracking
correctable memory errors."
::= { cpqHeCorrectableMemory 1 }
cpqHeCorrMemLogCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the correctable
memory error log feature."
::= { cpqHeCorrectableMemory 2 }
cpqHeCorrMemTotalErrs OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The number of correctable memory errors that have occurred."
::= { cpqHeCorrectableMemory 3 }
-- ****************************************************************************
-- Health MIB Correctable Memory Error Table
-- =========================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeCorrectableMemory Group (1.3.6.1.4.1.232.6.2.3)
-- cpqHeCorrMemErrTable (1.3.6.1.4.1.232.6.2.3.4)
--
-- ****************************************************************************
cpqHeCorrMemErrTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeCorrMemErrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of correctable memory error descriptions."
::= { cpqHeCorrectableMemory 4 }
cpqHeCorrMemErrEntry OBJECT-TYPE
SYNTAX CpqHeCorrMemErrEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A correctable memory error description."
INDEX { cpqHeCorrMemErrIndex }
::= { cpqHeCorrMemErrTable 1 }
CpqHeCorrMemErrEntry ::= SEQUENCE {
cpqHeCorrMemErrIndex INTEGER,
cpqHeCorrMemErrCount INTEGER,
cpqHeCorrMemErrTime OCTET STRING,
cpqHeCorrMemErrDdr OCTET STRING,
cpqHeCorrMemErrSyndrome OCTET STRING,
cpqHeCorrMemErrDesc DisplayString,
cpqHeCorrMemErrHwLocation DisplayString
}
cpqHeCorrMemErrIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this correctable memory error
description. The entries will be in order of occurrence with the
most recent new entry first."
::= { cpqHeCorrMemErrEntry 1 }
cpqHeCorrMemErrCount OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of times this memory location has had a correctable
memory error. The value zero (0) indicates that the user has
marked this error as corrected. Marking errors as corrected may
be performed with the Diagnostics or with a set operation
of 0 on this variable. Any non-zero valued set operation will
fail."
::= { cpqHeCorrMemErrEntry 2 }
cpqHeCorrMemErrTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..3))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time of the error: hour (first five bits), day of month
(next 5 bits), month (next 4 bits), year of the current century
(next 7 bits). The last 3 bits are reserved."
::= { cpqHeCorrMemErrEntry 3 }
cpqHeCorrMemErrDdr OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data destination register value.
This contains information about the memory bank in which the
error occurred. The interpretation of this value is dependent
on the machine type."
::= { cpqHeCorrMemErrEntry 4 }
cpqHeCorrMemErrSyndrome OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..2))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory syndrome value.
This contains information about the memory module in which the
error occurred. The interpretation of this value is dependant
on the machine type."
::= { cpqHeCorrMemErrEntry 5 }
cpqHeCorrMemErrDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text description of the correctable memory error."
::= { cpqHeCorrMemErrEntry 6 }
cpqHeCorrMemErrHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the correctable memory error.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeCorrMemErrEntry 7 }
cpqHeCorrMemErrorCntThresh OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The error threshold for Correctable memory errors. When
cpqHeCorrMemErrCount is greater than or equal to this value
user action is required to replace the failing memory module."
::= { cpqHeCorrectableMemory 5 }
-- ****************************************************************************
-- Health MIB Automatic Server Recovery (ASR) Group
-- ================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeAsr Group (1.3.6.1.4.1.232.6.2.5)
--
-- The cpqHeAsr group describes the Automatic Server Recovery Health
-- feature.
--
-- Implementation of the cpqHeAsr group is mandatory for all agents that
-- support the Server Health MIB on a system that supports the ASR feature.
--
-- ****************************************************************************
cpqHeAsrStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notAvailable(2),
disabled(3),
enabled(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Automatic Server Recovery feature status.
If this object is currently other(1) or notAvailable(2) all
set operations will fail. Any attempt to set this object to
other(1) or notAvailable(2) by a management station will fail.
Setting this object to disabled(3) or enabled(4) will disable
or enable the ASR feature.
Setting this object to disabled(3) will disable the following
objects:
cpqHeAsrPagerStatus
cpqHeAsrDialInStatus
cpqHeAsrDialOutStatus"
::= { cpqHeAsr 1 }
cpqHeAsrMajorVersion OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The major version number of the Automatic Server Recovery
feature hardware."
::= { cpqHeAsr 2 }
cpqHeAsrMinorVersion OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minor version number of the Automatic Server Recovery
feature hardware."
::= { cpqHeAsr 3 }
cpqHeAsrTimeout OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The time-out in minutes for the Automatic Server Recovery
feature hardware. If the variable is not supported, a value
of -1 will be returned."
::= { cpqHeAsr 4 }
cpqHeAsrBaseIo OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Automatic Server Recovery feature Base I/O address."
::= { cpqHeAsr 5 }
cpqHeAsrPost OBJECT-TYPE
SYNTAX INTEGER {
other(1),
failed(2),
ok(3)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Indicates if the Automatic Server Recovery timer passed
the server power-on self test."
::= { cpqHeAsr 6 }
cpqHeAsrReset OBJECT-TYPE
SYNTAX INTEGER {
other(1),
manualReset(2),
asrReset(3),
viewed-asrReset(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates if the previous reset was caused by the ASR
timer. An asrReset(3) condition may be changed with a
viewed-asrReset(4) set operation. This is only valid
if this variable's current value is asrReset(3). Setting
this variable to any other value than viewed-asrReset(4)
will fail."
::= { cpqHeAsr 7 }
cpqHeAsrReboot OBJECT-TYPE
SYNTAX INTEGER {
other(1),
bootOs(2),
bootUtilities(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates what software should be started when the server is
rebooted by the ASR feature.
If this object is currently set to other(1), set operations
will fail. This object may not be set to other(1) by a
management station.
Setting this object to bootOs(2) or bootUtilities(3)
will select the software to be started after an ASR reboot."
::= { cpqHeAsr 8 }
cpqHeAsrRebootLimit OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of ASR timer reboots that should cause the server to
boot the firmware console and override the standard reboot
setting (cpqHeAsrReboot). If this value is 0 then no limit is
defined and the standard reboot option will always be used. If
the variable is not supported, a value of -1 will be returned."
::= { cpqHeAsr 9 }
cpqHeAsrRebootCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The number of ASR reboots that have occurred on this server
since the last manual reboot. Reboot count may be reset with
a zero valued set operation on this variable. Setting this
value to a non-zero value will fail. If the variable is not
supported, a value of -1 will be returned."
::= { cpqHeAsr 10 }
cpqHeAsrPagerStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the ASR pager feature.
If the current value of this object is not other(1), it may
be set to disabled(2) or enabled(3). Attempting a set operation
while the value is other(1) will fail. Attempting to set the
value to other(1) will fail.
Setting this object to enabled(3) will enable the
cpqHeAsrStatus object."
::= { cpqHeAsr 11 }
cpqHeAsrPagerNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..60))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The pager number to be dialed after an ASR reboot."
::= { cpqHeAsr 12 }
cpqHeAsrCommPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The communication port to be used by the firmware pager and
console. The value zero (0) indicates this setting is undefined.
If the current value of this object is zero (0) any
attempt to set this object from a management station
will fail. Any attempt to set this object to zero (0)
by a management station will fail. If the variable is not
supported, a value of -1 will be returned."
::= { cpqHeAsr 13 }
cpqHeAsrBaudRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The baud rate to be used by the firmware pager and console.
The value zero (0) indicates this setting is undefined. If the
variable is not supported, a value of -1 will be returned."
::= { cpqHeAsr 14 }
cpqHeAsrPagerMessage OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The 8 character pager message entered by the user."
::= { cpqHeAsr 15 }
cpqHeAsrBootFail OBJECT-TYPE
SYNTAX INTEGER {
other(1),
interrupt18(2)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The action to be taken if an ASR reboot failure occurs."
::= { cpqHeAsr 16 }
cpqHeAsrCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the ASR feature."
::= { cpqHeAsr 17 }
cpqHeAsrDialInStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the ASR dial in feature.
If the current value of this object is other(1) any attempt to
set this object from a management station will fail. Any
attempt to set this object to other(1) by a management station
will fail.
Setting this object to enabled(3) will enable the
cpqHeAsrStatus object."
::= { cpqHeAsr 18 }
cpqHeAsrDialOutStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the ASR dial out feature.
If the current value of this object is other(1) any attempt to
set this object from a management station will fail. Any
attempt to set this object to other(1) by a management station
will fail.
Setting this object to enabled(3) will enable the
cpqHeAsrStatus and the cpqHeAsrDialInStatus objects."
::= { cpqHeAsr 19 }
cpqHeAsrDialOutNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..60))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The phone number to be dialed for remote diagnostics if an ASR
reset occurs."
::= { cpqHeAsr 20 }
cpqHeAsrNetworkAccessStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
disabled(2),
enabled(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The status of the ASR network access feature.
If the current value of this object is other(1) any attempt to
set this object from a management station will fail. Any
attempt to set this object to other(1) by a management station
will fail."
::= { cpqHeAsr 21 }
cpqHeAsrPollTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS optional
DESCRIPTION
"The poll time in seconds the ASR watchdog timer is being
refreshed periodically."
::= { cpqHeAsr 22 }
-- ****************************************************************************
-- Health MIB Thermal Group
-- ========================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6)
--
-- The cpqHeThermal group describes the status of the temperature and the
-- fans that regulate the temperature.
--
-- Implementation of the cpqHeThermal group is mandatory for all agents
-- that support the Server Health MIB on a system that supports the thermal
-- sensing features.
--
-- ****************************************************************************
cpqHeThermalCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the system's
thermal environment."
::= { cpqHeThermal 1 }
cpqHeThermalDegradedAction OBJECT-TYPE
SYNTAX INTEGER {
other(1),
continue(2),
shutdown(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The action to perform when the thermal condition is degraded.
This value will be one of the following:
other(1)
This feature is not supported by this system or driver.
continue(2)
The system should be allowed to continue.
shutdown(3)
The system should be shutdown."
::= { cpqHeThermal 2 }
cpqHeThermalTempStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the system's temperature sensors:
This value will be one of the following:
other(1)
Temp sensing is not supported by this system or driver.
ok(2)
All temp sensors are within normal operating range.
degraded(3)
A temp sensor is outside of normal operating range.
failed(4)
A temp sensor detects a condition that could permanently
damage the system.
The system will automatically shutdown if the failed(4) condition
results, so it is unlikely that this value will ever be returned
by the agent. If the cpqHeThermalDegradedAction is set to
shutdown(3) the system will be shutdown if the degraded(3)
condition occurs."
::= { cpqHeThermal 3 }
cpqHeThermalSystemFanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the fan(s) in the system.
This value will be one of the following:
other(1)
Fan status detection is not supported by this system or driver.
ok(2)
All fans are operating properly.
degraded(3)
A non-required fan is not operating properly.
failed(4)
A required fan is not operating properly.
If the cpqHeThermalDegradedAction is set to shutdown(3) the
system will be shutdown if the failed(4) condition occurs."
::= { cpqHeThermal 4 }
cpqHeThermalCpuFanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the processor fan(s) in the system.
This value will be one of the following:
other(1)
Fan status detection is not supported by this system or driver.
ok(2)
All fans are operating properly.
failed(4)
A fan is not operating properly.
The system will be shutdown if the failed(4) condition occurs."
::= { cpqHeThermal 5 }
-- ****************************************************************************
-- Health MIB Thermal Fan Table
-- ============================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6)
-- cpqHeThermalFanTable (1.3.6.1.4.1.232.6.2.6.6)
--
-- ****************************************************************************
cpqHeThermalFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeThermalFanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of fan descriptions."
::= { cpqHeThermal 6 }
cpqHeThermalFanEntry OBJECT-TYPE
SYNTAX CpqHeThermalFanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A fan description."
INDEX { cpqHeThermalFanIndex }
::= { cpqHeThermalFanTable 1 }
CpqHeThermalFanEntry ::= SEQUENCE {
cpqHeThermalFanIndex INTEGER,
cpqHeThermalFanRequired INTEGER,
cpqHeThermalFanPresent INTEGER,
cpqHeThermalFanCpuFan INTEGER,
cpqHeThermalFanStatus INTEGER,
cpqHeThermalFanHwLocation DisplayString,
cpqHeThermalFanCurrentSpeed INTEGER
}
cpqHeThermalFanIndex OBJECT-TYPE
SYNTAX INTEGER (0..8)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this fan description."
::= { cpqHeThermalFanEntry 1 }
cpqHeThermalFanRequired OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonRequired(2),
required(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the fan described is required for proper
operation of the system."
::= { cpqHeThermalFanEntry 2 }
cpqHeThermalFanPresent OBJECT-TYPE
SYNTAX INTEGER {
other(1),
absent(2),
present(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the fan described is present in the system."
::= { cpqHeThermalFanEntry 3 }
cpqHeThermalFanCpuFan OBJECT-TYPE
SYNTAX INTEGER {
other(1),
systemFan(2),
cpuFan(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the described fan is intended specifically
to cool the CPU(s)."
::= { cpqHeThermalFanEntry 4 }
cpqHeThermalFanStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the fan described is operating properly.
This value will be one of the following:
other(1)
Fan status detection is not supported by this system or driver.
ok(2)
The fan is operating properly.
failed(4)
The fan is not operating properly."
::= { cpqHeThermalFanEntry 5 }
cpqHeThermalFanHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the fan.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeThermalFanEntry 6 }
cpqHeThermalFanCurrentSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS optional
DESCRIPTION
"The current speed of a fan in rpm - revolutions per minute."
::= { cpqHeThermalFanEntry 7 }
-- ****************************************************************************
-- Health MIB Fault Tolerant Fan Table
-- ===================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6)
-- cpqHeFltTolFanTable (1.3.6.1.4.1.232.6.2.6.7)
--
-- ****************************************************************************
cpqHeFltTolFanTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeFltTolFanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of Fault Tolerant Fan Entries."
::= { cpqHeThermal 7 }
cpqHeFltTolFanEntry OBJECT-TYPE
SYNTAX CpqHeFltTolFanEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A Fault Tolerant Fan Entry."
INDEX { cpqHeFltTolFanChassis, cpqHeFltTolFanIndex }
::= { cpqHeFltTolFanTable 1 }
CpqHeFltTolFanEntry ::= SEQUENCE {
cpqHeFltTolFanChassis INTEGER,
cpqHeFltTolFanIndex INTEGER,
cpqHeFltTolFanLocale INTEGER,
cpqHeFltTolFanPresent INTEGER,
cpqHeFltTolFanType INTEGER,
cpqHeFltTolFanSpeed INTEGER,
cpqHeFltTolFanRedundant INTEGER,
cpqHeFltTolFanRedundantPartner INTEGER,
cpqHeFltTolFanCondition INTEGER,
cpqHeFltTolFanHotPlug INTEGER,
cpqHeFltTolFanHwLocation DisplayString,
cpqHeFltTolFanCurrentSpeed INTEGER
}
cpqHeFltTolFanChassis OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The System Chassis number."
::= { cpqHeFltTolFanEntry 1 }
cpqHeFltTolFanIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this fan description."
::= { cpqHeFltTolFanEntry 2 }
cpqHeFltTolFanLocale OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
system(3),
systemBoard(4),
ioBoard(5),
cpu(6),
memory(7),
storage(8),
removableMedia(9),
powerSupply(10),
ambient(11),
chassis(12),
bridgeCard(13),
managementBoard(14),
backplane(15),
networkSlot(16),
bladeSlot(17),
virtual(18)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the location of the fan in the system."
::= { cpqHeFltTolFanEntry 3 }
cpqHeFltTolFanPresent OBJECT-TYPE
SYNTAX INTEGER {
other(1),
absent(2),
present(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the fan described is present in the system."
::= { cpqHeFltTolFanEntry 4 }
cpqHeFltTolFanType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
tachOutput(2),
spinDetect(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the type of fan.
other(1)
The type of fan could not be determined.
tachOutput(2)
The fan can increase speed for greater cooling. Implies
spin detect.
spinDetect(3)
The fan can detect when the fan stops spinning."
::= { cpqHeFltTolFanEntry 5 }
cpqHeFltTolFanSpeed OBJECT-TYPE
SYNTAX INTEGER {
other(1),
normal(2),
high(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the speed of the fan. This value will be set
if the fan type is tachOutput."
::= { cpqHeFltTolFanEntry 6 }
cpqHeFltTolFanRedundant OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notRedundant(2),
redundant(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the fan is in a redundant configuration."
::= { cpqHeFltTolFanEntry 7 }
cpqHeFltTolFanRedundantPartner OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the index of the redundant partner. A value
of zero will be used if there is no redundant partner."
::= { cpqHeFltTolFanEntry 8 }
cpqHeFltTolFanCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The condition of the fan.
This value will be one of the following:
other(1)
Fan status detection is not supported by this system or driver.
ok(2)
The fan is operating properly.
degraded(3)
A redundant fan is not operating properly.
failed(4)
A non-redundant fan is not operating properly."
::= { cpqHeFltTolFanEntry 9 }
cpqHeFltTolFanHotPlug OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonHotPluggable(2),
hotPluggable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This indicates if the fan is capable of being removed and/or
inserted while the system is in an operational state.
If the value is hotPluggable(3), the fan can be safely
removed if and only if the cpqHeFltTolFanRedundant
field is in a redundant(3) state.
This value will be one of the following:
other(1)
The state could not be determined.
nonHotPluggable(2)
The fan is not hot plug capable.
hotPluggable(3)
The fan is hot plug capable and can be removed if
the system is operating in a redundant state. A fan
may be added to an empty fan bay."
::= { cpqHeFltTolFanEntry 10 }
cpqHeFltTolFanHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the fan.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeFltTolFanEntry 11 }
cpqHeFltTolFanCurrentSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS optional
DESCRIPTION
"The current speed of a fan in rpm - revolutions per minute."
::= { cpqHeFltTolFanEntry 12 }
-- ****************************************************************************
-- Health MIB Temperature Sensor Table
-- ===================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6)
-- cpqHeTemperatureTable (1.3.6.1.4.1.232.6.2.6.8)
--
-- ****************************************************************************
cpqHeTemperatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeTemperatureEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of Temperature Sensor Entries."
::= { cpqHeThermal 8 }
cpqHeTemperatureEntry OBJECT-TYPE
SYNTAX CpqHeTemperatureEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A Temperature Sensor Entry."
INDEX { cpqHeTemperatureChassis, cpqHeTemperatureIndex }
::= { cpqHeTemperatureTable 1 }
CpqHeTemperatureEntry ::= SEQUENCE {
cpqHeTemperatureChassis INTEGER,
cpqHeTemperatureIndex INTEGER,
cpqHeTemperatureLocale INTEGER,
cpqHeTemperatureCelsius INTEGER,
cpqHeTemperatureThreshold INTEGER,
cpqHeTemperatureCondition INTEGER,
cpqHeTemperatureThresholdType INTEGER,
cpqHeTemperatureHwLocation DisplayString
}
cpqHeTemperatureChassis OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The System Chassis number."
::= { cpqHeTemperatureEntry 1 }
cpqHeTemperatureIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this temperature sensor
description."
::= { cpqHeTemperatureEntry 2 }
cpqHeTemperatureLocale OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
system(3),
systemBoard(4),
ioBoard(5),
cpu(6),
memory(7),
storage(8),
removableMedia(9),
powerSupply(10),
ambient(11),
chassis(12),
bridgeCard(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the location of the temperature sensor
present in the system."
::= { cpqHeTemperatureEntry 3 }
cpqHeTemperatureCelsius OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the current temperature sensor reading in degrees
celsius.
If this value cannot be determined by software, then a value
of -99 will be returned."
::= { cpqHeTemperatureEntry 4 }
cpqHeTemperatureThreshold OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This is the shutdown threshold temperature sensor setting
in degrees celsius. This is the temperature in which the
sensor will be considered to be in a failed state thus
causing the system to be shutdown.
If this value cannot be determined by software, then a value
of -99 will be returned.
Only the Ambient zone type allows setting of the threshold
temperature."
::= { cpqHeTemperatureEntry 5 }
cpqHeTemperatureCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Temperature sensor condition.
This value will be one of the following:
other(1)
Temperature could not be determined.
ok(2)
The temperature sensor is within normal operating range.
degraded(3)
The temperature sensor is outside of normal operating range.
failed(4)
The temperature sensor detects a condition that could
permanently damage the system.
The system will automatically shutdown if the failed(4) condition
results, so it is unlikely that this value will ever be returned
by the agent. If the cpqHeThermalDegradedAction is set to
shutdown(3) the system will be shutdown if the degraded(3)
condition occurs."
::= { cpqHeTemperatureEntry 6 }
cpqHeTemperatureThresholdType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
blowout(5),
caution(9),
critical(15),
noreaction(16)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the type of this instance of temperature
sensor.
This value will be one of the following:
other(1)
Temperature threshold type could not be determined.
blowout(5)
If a blowout(5) temperature sensor reaches its threshold,
the fan or fans in the area of the temperature sensor will
increase in speed in an attempt to reduce the temperature
before a caution or critical threshold is reached.
caution(9)
If a caution(9) temperature sensor reaches its threshold,
the cpqHeTemperatureCondition will be set to degraded(3)
and the system will either continue or shutdown depending
on the setting of cpqHeThermalDegradedAction.
critical(15)
If a critical(15) temperature sensor reaches its threshold,
the cpqHeTemperatureCondition will be set to failed(4)
and the system will shutdown.
noreaction(16)
this value will be defined when a threshold value is zero and
system will not react on those sensor as those threshold
sensors are meant for display purpose only."
::= { cpqHeTemperatureEntry 7 }
cpqHeTemperatureHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the temperature sensor.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeTemperatureEntry 8 }
-- ****************************************************************************
-- Health MIB Post Message Group
-- =============================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePostMsg Group (1.3.6.1.4.1.232.6.2.7)
--
-- The cpqHePostMsg group contains a table of the non-critical POST
-- errors that occurred during the last reboot.
--
-- Implementation of the cpqHePostMsg group is mandatory for all agents
-- that support the Server Health MIB on a system that supports the POST
-- error recording feature.
--
-- ****************************************************************************
cpqHePostMsgCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the POST
error recording feature."
::= { cpqHePostMsg 1 }
-- ****************************************************************************
-- Health MIB Post Message Table
-- =============================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePostMsg Group (1.3.6.1.4.1.232.6.2.7)
-- cpqHePostMsgTable (1.3.6.1.4.1.232.6.2.7.2)
--
-- This table may be empty if no errors occurred during POST.
--
-- ****************************************************************************
cpqHePostMsgTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHePostMsgEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of POST error message numbers."
::= { cpqHePostMsg 2 }
cpqHePostMsgEntry OBJECT-TYPE
SYNTAX CpqHePostMsgEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A POST error message number."
INDEX { cpqHePostMsgIndex }
::= { cpqHePostMsgTable 1 }
CpqHePostMsgEntry ::= SEQUENCE {
cpqHePostMsgIndex INTEGER,
cpqHePostMsgCode INTEGER,
cpqHePostMsgDesc DisplayString
}
cpqHePostMsgIndex OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this POST error description."
::= { cpqHePostMsgEntry 1 }
cpqHePostMsgCode OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies POST message number for this error."
::= { cpqHePostMsgEntry 2 }
cpqHePostMsgDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This contains a text description of the POST error.
A string of length zero (0) will be returned if no description
is available."
::= { cpqHePostMsgEntry 3 }
cpqHePostMsgEv OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The EV used to store 8 non-critical POST error codes
for use with Quicktest, Utilities, and CIM. Setting
this variable with a zero length octet string will
clear this variable. All other set operations will
fail."
::= { cpqHePostMsg 3 }
-- ****************************************************************************
-- Health MIB System Utilization Group
-- ===================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeSysUtil Group (1.3.6.1.4.1.232.6.2.8)
--
-- The cpqHeSysUtil group contains measures of system utilization.
-- This group includes long term utilization information like the total
-- server up time since originally configured. This group also contains
-- current operating utilization information such as the current EISA bus
-- utilization.
--
-- Implementation of the cpqHeSysUtil group is mandatory for all agents
-- that support the Server Health MIB on a system that supports any system
-- utilization features.
--
-- ****************************************************************************
cpqHeSysUtilLifeTime OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total time (in minutes) the system has been in full
operation (while the server health supporting software was
running)."
::= { cpqHeSysUtil 1 }
cpqHeSysUtilEisaBusMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The EISA bus utilization as a percentage of the theoretical
maximum during the last minute. A value of -1 indicates that
this feature is not supported on this machine or is not
available."
::= { cpqHeSysUtil 2 }
cpqHeSysUtilEisaBusFiveMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The EISA bus utilization as a percentage of the theoretical
maximum during the last five minutes. A value of -1 indicates
that this feature is not supported on this machine or is not
available."
::= { cpqHeSysUtil 3 }
cpqHeSysUtilEisaBusThirtyMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The EISA bus utilization as a percentage of the theoretical
maximum during the last thirty minutes. A value of -1
indicates that this feature is not supported on this machine
or is not available."
::= { cpqHeSysUtil 4 }
cpqHeSysUtilEisaBusHour OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The EISA bus utilization as a percentage of the theoretical
maximum during the last hour. A value of -1 indicates that
this feature is not supported on this machine or is not
available."
::= { cpqHeSysUtil 5 }
-- ****************************************************************************
-- Health MIB PCI Utilization Table
-- ====================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeSysUtil Group (1.3.6.1.4.1.232.6.2.8)
-- cpqHeSysUtilPciTable (1.3.6.1.4.1.232.6.2.8.6)
--
--
-- ****************************************************************************
cpqHeSysUtilPciTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeSysUtilPciEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of PCI utilization numbers for a whole aggregate
PCI bus or a specific device on that bus."
::= { cpqHeSysUtil 6 }
cpqHeSysUtilPciEntry OBJECT-TYPE
SYNTAX CpqHeSysUtilPciEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"PCI utilization entry"
INDEX { cpqHeSysUtilPciIndex }
::= { cpqHeSysUtilPciTable 1 }
CpqHeSysUtilPciEntry ::= SEQUENCE {
cpqHeSysUtilPciIndex INTEGER,
cpqHeSysUtilPciBus INTEGER,
cpqHeSysUtilPciDevice INTEGER,
cpqHeSysUtilPciMin INTEGER,
cpqHeSysUtilPciFiveMin INTEGER,
cpqHeSysUtilPciThirtyMin INTEGER,
cpqHeSysUtilPciHour INTEGER,
cpqHeSysUtilPciHwLocation DisplayString
}
cpqHeSysUtilPciIndex OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique index into each PCI utilization table entry. "
::= { cpqHeSysUtilPciEntry 1 }
cpqHeSysUtilPciBus OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PCI bus number for this set of utilization numbers. "
::= { cpqHeSysUtilPciEntry 2 }
cpqHeSysUtilPciDevice OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The PCI device number for this set of utilization numbers.
If this value is -1, the utilization reported is for the
aggregate of all devices on this PCI bus. "
::= { cpqHeSysUtilPciEntry 3 }
cpqHeSysUtilPciMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The utilization as a percentage of the theoretical
maximum during the last minute. A value of -1 indicates
that the utilization number is not available."
::= { cpqHeSysUtilPciEntry 4 }
cpqHeSysUtilPciFiveMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The utilization as a percentage of the theoretical
maximum during the last five minutes. A value of -1
indicates that the utilization number is not available."
::= { cpqHeSysUtilPciEntry 5 }
cpqHeSysUtilPciThirtyMin OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The utilization as a percentage of the theoretical
maximum during the last thirty minutes. A value of -1
indicates that the utilization number is not available."
::= { cpqHeSysUtilPciEntry 6 }
cpqHeSysUtilPciHour OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The utilization as a percentage of the theoretical
maximum during the last hour. A value of -1 indicates
that the utilization number is not available."
::= { cpqHeSysUtilPciEntry 7 }
cpqHeSysUtilPciHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the PCI drawer.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeSysUtilPciEntry 8 }
-- ****************************************************************************
-- Health MIB Fault Tolerant Power Supply Group
-- ============================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeFltTolPwrSupply Group (1.3.6.1.4.1.232.6.2.9)
--
-- The cpqHeFltTolPwrSupply group contains management information about fault
-- tolerant power supplies.
--
-- Implementation of the cpqHeFltTolPwrSupply group is mandatory for all
-- agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHeFltTolPwrSupplyCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the fault tolerant
power supply sub-system."
::= { cpqHeFltTolPwrSupply 1 }
cpqHeFltTolPwrSupplyStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notSupported(2),
notInstalled(3),
installed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the status of the fault tolerant power
supply."
::= { cpqHeFltTolPwrSupply 2 }
-- ****************************************************************************
-- Health MIB Fault Tolerant Power Supply Table
-- ============================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeFltTolPowerSupply Group (1.3.6.1.4.1.232.6.2.9)
-- cpqHeFltTolPowerSupplyTable (1.3.6.1.4.1.232.6.2.9.3)
--
-- ****************************************************************************
cpqHeFltTolPowerSupplyTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeFltTolPowerSupplyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of Power Supply Entries."
::= { cpqHeFltTolPwrSupply 3 }
cpqHeFltTolPowerSupplyEntry OBJECT-TYPE
SYNTAX CpqHeFltTolPowerSupplyEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A Fault Tolerant Power Supply Entry."
INDEX { cpqHeFltTolPowerSupplyChassis, cpqHeFltTolPowerSupplyBay }
::= { cpqHeFltTolPowerSupplyTable 1 }
CpqHeFltTolPowerSupplyEntry ::= SEQUENCE {
cpqHeFltTolPowerSupplyChassis INTEGER,
cpqHeFltTolPowerSupplyBay INTEGER,
cpqHeFltTolPowerSupplyPresent INTEGER,
cpqHeFltTolPowerSupplyCondition INTEGER,
cpqHeFltTolPowerSupplyStatus INTEGER,
cpqHeFltTolPowerSupplyMainVoltage INTEGER,
cpqHeFltTolPowerSupplyCapacityUsed INTEGER,
cpqHeFltTolPowerSupplyCapacityMaximum INTEGER,
cpqHeFltTolPowerSupplyRedundant INTEGER,
cpqHeFltTolPowerSupplyModel DisplayString,
cpqHeFltTolPowerSupplySerialNumber DisplayString,
cpqHeFltTolPowerSupplyAutoRev OCTET STRING,
cpqHeFltTolPowerSupplyHotPlug INTEGER,
cpqHeFltTolPowerSupplyFirmwareRev DisplayString,
cpqHeFltTolPowerSupplyHwLocation DisplayString,
cpqHeFltTolPowerSupplySparePartNum DisplayString,
cpqHeFltTolPowerSupplyRedundantPartner INTEGER,
cpqHeFltTolPowerSupplyErrorCondition INTEGER
}
cpqHeFltTolPowerSupplyChassis OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The system chassis number."
::= { cpqHeFltTolPowerSupplyEntry 1 }
cpqHeFltTolPowerSupplyBay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bay number to index within this chassis."
::= { cpqHeFltTolPowerSupplyEntry 2 }
cpqHeFltTolPowerSupplyPresent OBJECT-TYPE
SYNTAX INTEGER {
other(1),
absent(2),
present(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether the power supply is present in the chassis."
::= { cpqHeFltTolPowerSupplyEntry 3 }
cpqHeFltTolPowerSupplyCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The condition of the power supply.
This value will be one of the following:
other(1)
The status could not be determined or not present.
ok(2)
The power supply is operating normally.
degraded(3)
A temperature sensor, fan or other power supply component is
outside of normal operating range.
failed(4)
A power supply component detects a condition that could
permanently damage the system."
::= { cpqHeFltTolPowerSupplyEntry 4 }
cpqHeFltTolPowerSupplyStatus OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
generalFailure(2),
bistFailure(3),
fanFailure(4),
tempFailure(5),
interlockOpen(6),
epromFailed(7),
vrefFailed(8),
dacFailed(9),
ramTestFailed(10),
voltageChannelFailed(11),
orringdiodeFailed(12),
brownOut(13),
giveupOnStartup(14),
nvramInvalid(15),
calibrationTableInvalid(16),
noPowerInput(17)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the power supply."
::= { cpqHeFltTolPowerSupplyEntry 5 }
cpqHeFltTolPowerSupplyMainVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The input main voltage of the power supply in volts."
::= { cpqHeFltTolPowerSupplyEntry 6 }
cpqHeFltTolPowerSupplyCapacityUsed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The currently used capacity of the power supply in watts."
::= { cpqHeFltTolPowerSupplyEntry 7 }
cpqHeFltTolPowerSupplyCapacityMaximum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum capacity of the power supply in watts."
::= { cpqHeFltTolPowerSupplyEntry 8 }
cpqHeFltTolPowerSupplyRedundant OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notRedundant(2),
redundant(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The redundancy state of the power supply.
This value will be one of the following:
other(1)
The redundancy state could not be determined.
notRedundant(2)
The power supply is not operating in a redundant state.
redundant(3)
The power supply is operating in a redundant state."
::= { cpqHeFltTolPowerSupplyEntry 9 }
cpqHeFltTolPowerSupplyModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The power supply model name."
::= { cpqHeFltTolPowerSupplyEntry 10 }
cpqHeFltTolPowerSupplySerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The power supply serial number."
::= { cpqHeFltTolPowerSupplyEntry 11 }
cpqHeFltTolPowerSupplyAutoRev OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..4))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The power supply auto revision number."
::= { cpqHeFltTolPowerSupplyEntry 12 }
cpqHeFltTolPowerSupplyHotPlug OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonHotPluggable(2),
hotPluggable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This indicates if the power supply is capable of being
removed and/or inserted while the system is in an operational
state.
If the value is hotPluggable(3), the power supply can be safely
removed if and only if the cpqHeFltTolPowerSupplyRedundant
field is in a redundant(3) state.
This value will be one of the following:
other(1)
The state could not be determined.
nonHotPluggable(2)
The power supply is not hot plug capable.
hotPluggable(3)
The power supply is hot plug capable and can be removed if
the system is operating in a redundant state. A power
supply may be added to an empty power supply bay."
::= { cpqHeFltTolPowerSupplyEntry 13 }
cpqHeFltTolPowerSupplyFirmwareRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The power supply firmware revision. This field will be left
blank if the firmware revision is unknown."
::= { cpqHeFltTolPowerSupplyEntry 14 }
cpqHeFltTolPowerSupplyHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the power supply.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeFltTolPowerSupplyEntry 15 }
cpqHeFltTolPowerSupplySparePartNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
ACCESS read-only
STATUS optional
DESCRIPTION
"The power supply part number or spare part number."
::= { cpqHeFltTolPowerSupplyEntry 16 }
cpqHeFltTolPowerSupplyRedundantPartner OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies the index of the redundant partner. A value
of zero will be used if there is no redundant partner."
::= { cpqHeFltTolPowerSupplyEntry 17 }
cpqHeFltTolPowerSupplyErrorCondition OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
generalFailure(2),
overvoltage(3),
overcurrent(4),
overtemperature(5),
powerinputloss(6),
fanfailure(7),
vinhighwarning(8),
vinlowwarning(9),
vouthighwarning(10),
voutlowwarning(11),
inlettemphighwarning(12),
iinternaltemphighwarning(13),
vauxhighwarning(14),
vauxlowwarning(15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Error condition of the power supply."
::= { cpqHeFltTolPowerSupplyEntry 18 }
-- ****************************************************************************
-- Health MIB Integrated Remote Console (IRC) Group
-- ================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeIRC Group (1.3.6.1.4.1.232.6.2.10)
--
-- The cpqHeIRC group contains management information about the Integrated
-- Remote Console ASIC.
--
-- Implementation of the cpqHeIRC group is mandatory for all agents that
-- support the Server Health MIB.
--
-- ****************************************************************************
cpqHeIRCStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
notavailable(2),
disabled(3),
enabled(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the Integrated Remote Console. A value of notavailable
will be returned if this system does not contain IRC."
::= { cpqHeIRC 1 }
-- ****************************************************************************
-- Health MIB System Event Log Group
-- =================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeEventLog Group (1.3.6.1.4.1.232.6.2.11)
--
-- The cpqHeEventLog group describes the health system event log.
--
-- Implementation of the cpqHeEventLog group is mandatory for all
-- agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHeEventLogSupported OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notSupported(2),
supported(3),
clear(4) -- Settable value to clear the log
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value specifies if this system supports the Integrated
Management Log feature.
An SNMP set of the value clear(4) will clear the System Event
Log of all entries."
::= { cpqHeEventLog 1 }
cpqHeEventLogCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the Integrated
Management Log feature."
::= { cpqHeEventLog 2 }
-- ****************************************************************************
-- Health MIB System Event Log Table
-- =================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeEventLog Group (1.3.6.1.4.1.232.6.2.11)
-- cpqHeEventLogTable (1.3.6.1.4.1.232.6.2.11.3)
--
-- ****************************************************************************
cpqHeEventLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeEventLogEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of System Event Log Entries."
::= { cpqHeEventLog 3 }
cpqHeEventLogEntry OBJECT-TYPE
SYNTAX CpqHeEventLogEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A System Event Log Entry."
INDEX { cpqHeEventLogEntryNumber }
::= { cpqHeEventLogTable 1 }
CpqHeEventLogEntry ::= SEQUENCE {
cpqHeEventLogEntryNumber INTEGER,
cpqHeEventLogEntrySeverity INTEGER,
cpqHeEventLogEntryClass INTEGER,
cpqHeEventLogEntryCode INTEGER,
cpqHeEventLogEntryCount INTEGER,
cpqHeEventLogInitialTime OCTET STRING,
cpqHeEventLogUpdateTime OCTET STRING,
cpqHeEventLogErrorDesc DisplayString,
cpqHeEventLogFreeFormData OCTET STRING
}
cpqHeEventLogEntryNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A number that uniquely specifies this system event log
entry."
::= { cpqHeEventLogEntry 1 }
cpqHeEventLogEntrySeverity OBJECT-TYPE
SYNTAX INTEGER {
informational(2), -- informational with no action required
infoWithAlert(3), -- informational but with LCD alert message
repaired(6), -- corrective action taken
caution(9), -- non-fatal error condition
critical(15) -- component failure
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This value specifies the severity of the event log entry.
A caution or critical entry can have it's severity
lowered by setting this variable to the repaired state."
::= { cpqHeEventLogEntry 2 }
cpqHeEventLogEntryClass OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the event log entry class designation."
::= { cpqHeEventLogEntry 3 }
cpqHeEventLogEntryCode OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the event log entry code designation.
The meaning of this changes depending on the class."
::= { cpqHeEventLogEntry 4 }
cpqHeEventLogEntryCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the event log entry occurrence count.
This represents the number of times this event has occurred
starting from the initial time until the last modified time."
::= { cpqHeEventLogEntry 5 }
cpqHeEventLogInitialTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time stamp when the event log entry was first created.
field octets contents range
===== ====== ======== =====
1 1-2 year 0..65536
2 3 month 1..12
3 4 day 1..31
4 5 hour 0..23
5 6 minute 0..59
The year field is set with the most significant octet first.
A value of 0 in the year indicates an unknown time stamp."
::= { cpqHeEventLogEntry 6 }
cpqHeEventLogUpdateTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (6))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time stamp when the event log entry was last modified.
field octets contents range
===== ====== ======== =====
1 1-2 year 0..65536
2 3 month 1..12
3 4 day 1..31
4 5 hour 0..23
5 6 minute 0..59
The year field is set with the most significant octet first.
A value of 0 in the year indicates an unknown time stamp."
::= { cpqHeEventLogEntry 7 }
cpqHeEventLogErrorDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text description of the event log entry."
::= { cpqHeEventLogEntry 8 }
cpqHeEventLogFreeFormData OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..128))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the free form data associated with a particular
event."
::= { cpqHeEventLogEntry 9 }
-- ****************************************************************************
-- Health MIB Management Display Group
-- ===================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeMgmtDisplay Group (1.3.6.1.4.1.232.6.2.12)
--
-- ****************************************************************************
-- The cpqHeMgmtDisplay group maintains information about the Management
-- Display device.
--
-- Implementation of the cpqHeTrap group is mandatory for agents that
-- support the Server Health MIB.
cpqHeMgmtDisplayType OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown device or could not be determined
none(2), -- No Management display device
imd4x16(3), -- IMD display (4 lines by 16 chars)
ocp1x16(4) -- Digital OCP display (1 line by 16 chars)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the type of Management Display device.
If a display device is available on the server, the type
will be set accordingly. If no device is present, the value
will be set to none(2)."
::= { cpqHeMgmtDisplay 1 }
cpqHeMgmtDisplayText OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The text to be written to the Management display device.
If this item is read, it may not accurately reflect what
is currently displayed."
::= { cpqHeMgmtDisplay 2 }
cpqHeMgmtUID OBJECT-TYPE
SYNTAX INTEGER {
other(1), -- Unknown device or could not be determined
none(2), -- No unit identifier device
ledOn(3), -- Unit identifier LED is On
ledOff(4), -- Unit identifier LED is Off
ledBlinking(5) -- Unit identifier LED is Blinking
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Unit Identifier LED.
This value will be one of the following:
other(1)
The state of the LED could not be determined. Setting the
LED state is not allowed.
none(2)
The LED is not present. Setting LED state is not allowed.
ledOn(3)
The LED is present and ON. The LED can be turned Off or Blinking
by setting the cpqHeMgmtUID to ledOff(4) or ledBlinking(5) respectively.
ledOff(4)
The LED is present and OFF. The LED can be turned On or Blinking
by setting the cpqHeMgmtUID to ledOn(3) or ledBlinking(5) respectively.
ledBlinking(5)
The LED is present and is Blinking. The LED can be turned On or Off
by setting the cpqHeMgmtUID to ledOn(3) or ledOff(4) respectively"
::= { cpqHeMgmtDisplay 3 }
-- ****************************************************************************
-- Health MIB Power Converter Group
-- ================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePowerConverter Group (1.3.6.1.4.1.232.6.2.13)
--
-- The cpqHePowerConverter group describes the power converter modules
-- in the system.
--
-- Implementation of the cpqHePowerConverter group is mandatory for all
-- agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHePowerConverterSupported OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notSupported(2),
supported(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies if this system supports reporting
power converter module information."
::= { cpqHePowerConverter 1 }
cpqHePowerConverterCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the power
converters modules in the system."
::= { cpqHePowerConverter 2 }
-- ****************************************************************************
-- Health MIB Power Converter Table
-- ================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePowerConverter Group (1.3.6.1.4.1.232.6.2.13)
-- cpqHePowerConverterTable (1.3.6.1.4.1.232.6.2.13.3)
--
-- ****************************************************************************
cpqHePowerConverterTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHePowerConverterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of Power Converter Module Entries."
::= { cpqHePowerConverter 3 }
cpqHePowerConverterEntry OBJECT-TYPE
SYNTAX CpqHePowerConverterEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A Power Converter Module Entry."
INDEX { cpqHePwrConvChassis, cpqHePwrConvIndex }
::= { cpqHePowerConverterTable 1 }
CpqHePowerConverterEntry ::= SEQUENCE {
cpqHePwrConvChassis INTEGER,
cpqHePwrConvIndex INTEGER,
cpqHePwrConvPresent INTEGER,
cpqHePwrConvSlot INTEGER,
cpqHePwrConvSocket INTEGER,
cpqHePwrConvRedundant INTEGER,
cpqHePwrConvRedundantGroupId INTEGER,
cpqHePwrConvCondition INTEGER,
cpqHePwrConvHwLocation DisplayString
}
cpqHePwrConvChassis OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The system chassis number containing the power converter
modules."
::= { cpqHePowerConverterEntry 1 }
cpqHePwrConvIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Power Converter Module number to index within the chassis."
::= { cpqHePowerConverterEntry 2 }
cpqHePwrConvPresent OBJECT-TYPE
SYNTAX INTEGER {
other(1),
absent(2),
present(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the Power Converter Module described is
present in the system."
::= { cpqHePowerConverterEntry 3 }
cpqHePwrConvSlot OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Power Converter Module slot number within the chassis."
::= { cpqHePowerConverterEntry 4 }
cpqHePwrConvSocket OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Power Converter Module socket number within the slot."
::= { cpqHePowerConverterEntry 5 }
cpqHePwrConvRedundant OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonRedundant(2),
redundant(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This specifies if the Power Converter Module is redundant."
::= { cpqHePowerConverterEntry 6 }
cpqHePwrConvRedundantGroupId OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Power Converter Module group id. A redundant set of
power converters will have the same group id."
::= { cpqHePowerConverterEntry 7 }
cpqHePwrConvCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Power Converter Module condition."
::= { cpqHePowerConverterEntry 8 }
cpqHePwrConvHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the power converter.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHePowerConverterEntry 9 }
-- ****************************************************************************
-- Health MIB Advanced Memory Protection Group (formerly Resilient Memory)
-- =======================================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14)
--
-- The cpqHeResilientMemory group describes the Advanced Memory Protection
-- sub-system in the server.
--
-- Implementation of the cpqHeResilientMemory group is mandatory for all
-- Server Agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHeResilientMemTypeActive OBJECT-TYPE
SYNTAX INTEGER {
other(1),
none(2),
onLineSpare(3),
mirrored(4), -- deprecated
advancedEcc(5),
mirroredSingleBoard(6),
mirroredDualBoard(7),
xor(8),
lockStep(9),
onLineSpareChannel(10),
onLineSpareRank(11),
mirroringIntrasocket(12),
mirroringIntersocket(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the type of Advanced Memory Protection fault
tolerance currently active on the system.
The following connection states are supported:
other(1)
The Advanced Memory Protection fault tolerance cannot be
determined by the Management Agent. You may need to upgrade
your software.
none(2)
This system is not configured for Advanced Memory Protection
fault tolerance or Advanced Memory Protection is not available
on this system.
onLineSpare(3)
This system is configured for Online Spare Advanced Memory
Protection.
mirrored(4)
This system is configured for Mirrored Advanced Memory
Protection.
advancedECC(5)
This system is configured for the Advanced ECC type of
Advanced Memory Protection.
mirroredSingleBoard(6)
This system is configured for Mirrored Advanced Memory
Protection within a single memory board.
mirroredDualBoard(7)
This system is configured for Mirrored Advanced Memory
Protection within a dual memory board configuration. The
mirrored memory may be swapped with memory on the same
memory board or with memory on the second memory board.
xor(8)
This system is configured for Advanced Memory Protection
using the XOR engine.
lockStep(9)
This system is configured for LockStep type of
Advanced Memory Protection.
onLineSpareChannel(10)
This system is configured for Online Spare Channel Advanced
Memory Protection.
onLineSpareRank(11)
This system is configured for Online Spare Rank Advanced
Memory Protection.
mirroringIntrasocket(12)
This system is configured for Mirrored Intrasocket Advanced
Memory Protection between memory of single processor or board.
mirroringIntersocket(13)
This system is configured for Mirrored Intersocket Advanced
Memory Protection between memory of two processors or boards."
::= { cpqHeResilientMemory 1 }
cpqHeResilientMemTypeAvailable OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the type of Advanced Memory Protection
Fault Tolerance available on the system.
This is a collection of flags used to indicate the fault
Advanced Memory Protection options available. This integer
is a bitmap, with each bit indicating the availability of an
option. If the bit is set to 1, the option is available;
otherwise it is not. Multiple options are allowed.
NOTE: bit 31 is the most significant bit, bit 0 is the least
significant.
Bit 31-11: RESERVED (0)
Bit 10: Mirroring Intersocket
Bit 9: Mirroring Intrasocket
Bit 8: Online Rank Spare
Bit 7: Online Channel Spare
Bit 6: LockStep
Bit 5: XOR
Bit 4: Mirrored Memory with dual memory boards
Bit 3: Mirrored Memory within a single memory board
Bit 2: Advanced ECC
Bit 1: Mirrored (deprecated)
Bit 0: Online Spare"
::= { cpqHeResilientMemory 2 }
cpqHeResilientMemStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notProtected(2),
protected(3),
degraded(4),
dimmEcc(5),
mirrorNoFaults(6),
mirrorWithFaults(7),
hotSpareNoFaults(8),
hotSpareWithFaults(9),
xorNoFaults(10),
xorWithFaults(11),
advancedEcc(12),
advancedEccWithFaults(13),
lockStep(14),
lockStepWithFaults(15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the current state of the Advanced
Memory Protection subsystem.
The following states are supported:
other(1)
The system does not support Advanced Memory Protection or the
status cannot be determined by the Management Agent.
notProtected(2)
This system supports Advanced Memory Protection but the
feature is disabled.
protected(3)
The system is protected by Advanced Memory Protection.
degraded(4)
The system was protected, but the Advanced Memory
Protection feature has been engaged.
dimmEcc(5)
The system is protected via DIMM ECC only.
mirrorNoFaults(6)
The system is protected by Advanced Memory Protection in the
mirrored mode. No DIMM faults have been detected.
mirrorWithFaults(7)
The system is protected by Advanced Memory Protection in the
mirrored mode. One or more DIMM faults have been detected.
hotSpareNoFaults(8)
The system is protected by Advanced Memory Protection in the
hot spare mode. No DIMM faults have been detected.
hotSpareWithFaults(9)
The system is protected by Advanced Memory Protection in the
hot spare mode. One or more DIMM faults have been detected.
xorNoFaults(10)
The system is protected by Advanced Memory Protection in the
XOR memory mode. No DIMM faults have been detected.
xorWithFaults(11)
The system is protected by Advanced Memory Protection in the
XOR memory mode. One or more DIMM faults have been detected.
advancedEcc(12)
The system is protected by Advanced Memory Protection in the
Advanced ECC mode.
advancedEccWithFaults(13)
The system is protected by Advanced Memory Protection in the
Advanced ECC mode. One or more DIMM faults have been detected.
lockStep(14)
The system is protected by Advanced Memory Protection in the
Lock Step mode.
localStepWithFaults(15)
The system is protected by Advanced Memory Protection in the
Lock Step mode. One or more DIMM faults have been detected."
::= { cpqHeResilientMemory 3 }
cpqHeResilientMemCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the current condition of the Advanced
Memory Protection subsystem.
The following states are supported:
other(1)
The system does not support fault tolerant memory or the
state cannot be determined by the Management Agent.
ok(2)
This system is operating normally.
degraded(3)
The system is running in a degraded state because the
Advanced Memory Protection subsystem has been engaged."
::= { cpqHeResilientMemory 4 }
cpqHeResilientMemHotPlug OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonHotPluggable(2),
hotPluggable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the current condition of the Advanced
Memory Protection subsystem.
The following states are supported:
other(1)
The state could not be determined or the system does not
support Advanced Memory Protection.
nonHotPluggable(2)
The memory board or cartridge is not hot plug capable.
hotPluggable(3)
The memory board or cartridge is hot plug capable and can be
removed if the system is operating in a redundant state. A
memory board or cartridge may be added to an empty bay."
::= { cpqHeResilientMemory 5 }
cpqHeResilientMemOperatingSpeed OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the current operating speed of the Advanced
Memory Protection subsystem in MHz.
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResilientMemory 6 }
cpqHeResilientMemOsMemSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the size of memory as seen by the Operating
System in MB (1 MB = 1048576 bytes).
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResilientMemory 7 }
cpqHeResilientMemTotalMemSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the total size of memory including memory seen
by the Operating System and the memory used for spare, mirrored, or
RAID configurations in MB (1 MB = 1048576 bytes).
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResilientMemory 8 }
cpqHeResilientMemRivState OBJECT-TYPE
SYNTAX INTEGER {
other(1),
inactive(2),
rebuilding(3),
initializing(4),
verifying(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the state of the Rebuild/Initialize/Verify
(RIV) engine of the Advanced Memory Protection sub-system.
The following states are supported:
other(1)
The system does not support Advanced Memory Protection or this
value cannot be determined,
inactive(2)
The RIV engine is idle.
rebuilding(3)
The RIV engine is rebuilding the XOR data.
initializing(4)
The RIV engine is initializing memory.
verifying(5)
The RIV engine is verifying memory integrity."
::= { cpqHeResilientMemory 9 }
-- ****************************************************************************
-- Health MIB Advanced Memory Protection Board Group
-- =================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14)
-- cpqHeResMemBoardTable (1.3.6.1.4.1.232.6.2.14.10)
-- cpqHeResMemBoardEntry (1.3.6.1.4.1.232.6.2.14.10.1)
--
-- ****************************************************************************
cpqHeResMemBoardTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeResMemBoardEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of memory board or cartridge descriptions in Advanced
Memory Protection systems."
::= { cpqHeResilientMemory 10 }
cpqHeResMemBoardEntry OBJECT-TYPE
SYNTAX CpqHeResMemBoardEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A memory board or cartridge description."
INDEX { cpqHeResMemBoardSlotIndex }
::= { cpqHeResMemBoardTable 1 }
CpqHeResMemBoardEntry ::= SEQUENCE {
cpqHeResMemBoardSlotIndex INTEGER,
cpqHeResMemBoardOnlineStatus INTEGER,
cpqHeResMemBoardErrorStatus INTEGER,
cpqHeResMemBoardLocked INTEGER,
cpqHeResMemBoardNumSockets INTEGER,
cpqHeResMemBoardOsMemSize INTEGER,
cpqHeResMemBoardTotalMemSize INTEGER,
cpqHeResMemBoardCondition INTEGER,
cpqHeResMemBoardHotPlug INTEGER
}
cpqHeResMemBoardSlotIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot in which the memory board or cartridge is installed."
::= { cpqHeResMemBoardEntry 1 }
cpqHeResMemBoardOnlineStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
present(2),
absent(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The online status of the Advanced Memory Protection board or
cartridge.
The following status values are supported:
other(1)
The value is unsupported or could not be determined.
present(2)
The board or cartridge has memory and is currently online.
absent(3)
The board or cartridge is missing or offline."
::= { cpqHeResMemBoardEntry 2 }
cpqHeResMemBoardErrorStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
noError(2),
dimmEccError(3),
unlockError(4),
configError(5),
busError(6),
powerError(7),
advancedEcc(8),
onlineSpare(9),
mirrored(10),
mirroredDimmError(11),
memoryRaid(12),
raidDimmError(13),
lockstep(14),
lockstepDimmError(15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The error status of the Advanced Memory Protection board or
cartridge.
The following status values are supported:
other(1)
The value is unsupported or could not be determined.
noError(2)
The board or cartridge is configured and operating correctly.
dimmEccError(3)
The board or cartridge has at least one DIMM ECC error.
unlockError(4)
The board or cartridge is unlocked when it should not be.
Please insure the board of cartridge is locked.
configError(5)
The board or cartridge has a bad memory configuration.
Please insure all memory modules are of the correct type,
speed, latency, etc.
busError(6)
The board or cartridge has a memory bus error.
Please insure all memory modules are of the correct type,
speed, latency, etc. Also insure the cartridge is inserted
properly.
powerError(7)
The board or cartridge has power error.
Please insure all memory modules are of the correct type,
speed, latency, etc. Also insure the cartridge is inserted
properly.
advancedEcc(8),
The board or cartridge is configured for advanced Ecc mode.
onlineSpare(9),
The board or cartridge is configured for Online Spare mode.
mirrored(10),
The board or cartridge is configured for mirrored mode.
mirroredDimmError(11),
The board or cartridge has a mirrored Dimm error.
memoryRaid(12),
The board or cartridge is configured for memory raid mode.
raidDimmError(13)
The board or cartridge has a raid Dimm error.
lockstep(14)
The board or cartridge is configured for LockStep.
lockstepDimmError(15)
The board or cartridge has a lockStep Dimm error."
::= { cpqHeResMemBoardEntry 3 }
cpqHeResMemBoardLocked OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unlocked(2),
locked(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The locked state of the Advanced Memory Protection board or
cartridge.
The following status values are supported:
other(1)
The value is unsupported or could not be determined. If the
system does not support hot plugging of the board or
cartridge, then this value will be returned.
unlocked(2)
The board or cartridge is currently unlocked and may be
removed.
locked(3)
The board or cartridge is currently locked and may not be
removed."
::= { cpqHeResMemBoardEntry 4 }
cpqHeResMemBoardNumSockets OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of memory sockets for this memory board or
cartridge.
If this value could not be determined, or if the board or
cartridge has been removed, this value will be -1."
::= { cpqHeResMemBoardEntry 5 }
cpqHeResMemBoardOsMemSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the size of memory for this board or
cartridge as seen by the Operating System in MB (1 MB =
1048576 bytes).
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResMemBoardEntry 6 }
cpqHeResMemBoardTotalMemSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the size of memory for this board or
cartridge including memory seen by the Operating System and
the memory used for spare, mirrored, or XOR configurations
in MB (1 MB = 1048576 bytes).
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResMemBoardEntry 7 }
cpqHeResMemBoardCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the current status of the Advanced Memory
Protection memory board or cartridge.
The following status values are supported:
other(1):
The condition of this memory board or cartridge
could not be determined.
ok(2):
The memory board or cartridge is operating normally.
degraded(3):
The memory board or cartridge is in an error state.
Check for correct memory installation and that the
board has been inserted properly."
::= { cpqHeResMemBoardEntry 8 }
cpqHeResMemBoardHotPlug OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonHotPluggable(2),
hotPluggable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This indicates if the memory board is capable of being
removed and/or inserted while the system is in an
operational state.
The following states are supported:
other(1)
The state could not be determined or the system does not
support Advanced Memory Protection.
nonHotPluggable(2)
The memory board or cartridge is not hot plug capable.
hotPluggable(3)
The memory board or cartridge is hot plug capable and can be
removed if the system is operating in a redundant state. A
memory board or cartridge may be added to an empty bay."
::= { cpqHeResMemBoardEntry 9 }
-- ****************************************************************************
-- Health MIB Advanced Memory Protection Memory Module Group
-- =========================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14)
-- cpqHeResMemModuleTable (1.3.6.1.4.1.232.6.2.14.11)
-- cpqHeResMemModuleEntry (1.3.6.1.4.1.232.6.2.14.11.1)
--
-- ****************************************************************************
cpqHeResMemModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeResMemModuleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of memory module descriptions."
::= { cpqHeResilientMemory 11 }
cpqHeResMemModuleEntry OBJECT-TYPE
SYNTAX CpqHeResMemModuleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A memory module description."
INDEX { cpqHeResMemBoardIndex, cpqHeResMemModuleIndex }
::= { cpqHeResMemModuleTable 1 }
CpqHeResMemModuleEntry ::= SEQUENCE {
cpqHeResMemBoardIndex INTEGER,
cpqHeResMemModuleIndex INTEGER,
cpqHeResMemModuleSparePartNo DisplayString,
cpqHeResMemModuleStatus INTEGER,
cpqHeResMemModuleCondition INTEGER,
cpqHeResMemModuleSpd OCTET STRING
}
cpqHeResMemBoardIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot in which the memory board or cartridge is installed.
A value of 0 indicates memory installed directly on the
system board."
::= { cpqHeResMemModuleEntry 1 }
cpqHeResMemModuleIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module number."
::= { cpqHeResMemModuleEntry 2 }
cpqHeResMemModuleSparePartNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module's manufacturer part number.
This field will be a null (size 0) string if the manufacturer
part number is not available."
::= { cpqHeResMemModuleEntry 3 }
cpqHeResMemModuleStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notPresent(2),
present(3),
good(4),
add(5),
upgrade(6),
missing(7),
doesNotMatch(8),
notSupported(9),
badConfig(10),
degraded(11)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the current status of the correctable memory
errors for this memory module.
The following status values are supported:
other(1):
The status is unknown or could not be determined.
notPresent(2):
The memory module is not present or is un-initialized.
present(3):
The memory module is present but not in use.
good(4):
The memory module is present and in use. The corrected
error threshold has not been exceeded.
add(5):
The memory module has been added, but is not yet in use.
upgraded(6):
The memory module has been upgraded, but the memory is not
yet in use.
missing(7):
An expected memory module is missing.
doesNotMatch(8):
The memory module does not match the other memory modules
within the bank.
notSupported(9):
The memory module is not supported.
badConfig(10):
The memory module violates the add/upgrade configuration
rules.
degraded(11):
The memory module's correctable error count has exceeded
threshold."
::= { cpqHeResMemModuleEntry 4 }
cpqHeResMemModuleCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the current status of the correctable memory
errors for this memory module.
The following status values are supported:
other(1):
ECC is not supported on this memory module or the
condition could not be determined.
ok(2):
The memory module is operating normally.
degraded(3):
The memory module is correctable error count has exceeded
threshold or a configuration error has been detected."
::= { cpqHeResMemModuleEntry 5 }
cpqHeResMemModuleSpd OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the raw Serial Presence Detect information contained
in the memory module.
If the SPD information is not available, this item will be empty."
::= { cpqHeResMemModuleEntry 6 }
-- ****************************************************************************
-- Health MIB Advanced Memory Protection Board Group
-- =================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14)
-- cpqHeResMem2BoardTable (1.3.6.1.4.1.232.6.2.14.12)
-- cpqHeResMem2BoardEntry (1.3.6.1.4.1.232.6.2.14.12.1)
--
-- ****************************************************************************
cpqHeResMem2BoardTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeResMem2BoardEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of memory board or cartridge descriptions in Advanced
Memory Protection systems."
::= { cpqHeResilientMemory 12 }
cpqHeResMem2BoardEntry OBJECT-TYPE
SYNTAX CpqHeResMem2BoardEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A memory board or cartridge or CPU based Memory Board description."
INDEX { cpqHeResMem2BoardIndex }
::= { cpqHeResMem2BoardTable 1 }
CpqHeResMem2BoardEntry ::= SEQUENCE {
cpqHeResMem2BoardIndex INTEGER,
cpqHeResMem2BoardSlotNum INTEGER,
cpqHeResMem2BoardCpuNum INTEGER,
cpqHeResMem2BoardRiserNum INTEGER,
cpqHeResMem2BoardOnlineStatus INTEGER,
cpqHeResMem2BoardErrorStatus INTEGER,
cpqHeResMem2BoardLocked INTEGER,
cpqHeResMem2BoardNumSockets INTEGER,
cpqHeResMem2BoardOsMemSize INTEGER,
cpqHeResMem2BoardTotalMemSize INTEGER,
cpqHeResMem2BoardCondition INTEGER,
cpqHeResMem2BoardHotPlug INTEGER,
cpqHeResMem2BoardOperatingFrequency INTEGER,
cpqHeResMem2BoardOperatingVoltage INTEGER
}
cpqHeResMem2BoardIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This will represent the unique memory board or cartridge or riser."
::= { cpqHeResMem2BoardEntry 1 }
cpqHeResMem2BoardSlotNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot in which the memory board or cartridge is installed."
::= { cpqHeResMem2BoardEntry 2 }
cpqHeResMem2BoardCpuNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Processor Number to which the memory Riser belongs. Value 0 means memory is not CPU based."
::= { cpqHeResMem2BoardEntry 3 }
cpqHeResMem2BoardRiserNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Riser Number on the Processor."
::= { cpqHeResMem2BoardEntry 4 }
cpqHeResMem2BoardOnlineStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
present(2),
absent(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The online status of the Advanced Memory Protection board or
cartridge or riser.
The following status values are supported:
other(1)
The value is unsupported or could not be determined.
present(2)
The board or cartridge or riser has memory and is currently online.
absent(3)
The board or cartridge or riser is missing or offline."
::= { cpqHeResMem2BoardEntry 5 }
cpqHeResMem2BoardErrorStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
noError(2),
dimmEccError(3),
unlockError(4),
configError(5),
busError(6),
powerError(7),
advancedEcc(8),
onlineSpare(9),
mirrored(10),
mirroredDimmError(11),
memoryRaid(12),
raidDimmError(13),
lockStep(14),
lockStepError(15)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The error status of the Advanced Memory Protection board or
Cartridge or riser.
The following status values are supported:
other(1)
The value is unsupported or could not be determined.
noError(2)
The board or cartridge or riser is configured and operating correctly.
dimmEccError(3)
The board or cartridge or riser has at least one DIMM ECC error.
unlockError(4)
The board or cartridge or riser is unlocked when it should not be.
Please insure the board of cartridge is locked.
configError(5)
The board or cartridge or riser has a bad memory configuration.
Please insure all memory modules are of the correct type,
speed, latency, etc.
busError(6)
The board or cartridge or riser has a memory bus error.
Please insure all memory modules are of the correct type,
speed, latency, etc. Also insure the cartridge is inserted
properly.
powerError(7)
The board or cartridge or riser has power error.
Please insure all memory modules are of the correct type,
speed, latency, etc. Also insure the cartridge is inserted
properly.
advancedEcc(8),
The board or cartridge or riser is configured for advanced Ecc mode.
onlineSpare(9),
The board or cartridge or riser is configured for Online Spare mode.
mirrored(10),
The board or cartridge or riser is configured for mirrored mode.
mirroredDimmError(11),
The board or cartridge or riser has a mirrored Dimm error.
memoryRaid(12),
The board or cartridge or riser is configured for memory raid mode.
raidDimmError(13)
The board or cartridge or riser has a raid Dimm error.
lockStep(14),
The board or cartridge or riser is configured for lockStep mode.
lockStepError(15)
The board or cartridge or riser has a lockStep Dimm error."
::= { cpqHeResMem2BoardEntry 6 }
cpqHeResMem2BoardLocked OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unlocked(2),
locked(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The locked state of the Advanced Memory Protection board or
Cartridge or riser.
The following status values are supported:
other(1)
The value is unsupported or could not be determined. If the
system does not support hot plugging of the board or
cartridge or riser, then this value will be returned.
unlocked(2)
The board or cartridge or riser is currently unlocked and may be
removed.
locked(3)
The board or cartridge or riser is currently locked and may not be
removed."
::= { cpqHeResMem2BoardEntry 7 }
cpqHeResMem2BoardNumSockets OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of memory sockets for this memory board or
Cartridge or riser.
If this value could not be determined, or if the board or
Cartridge or riser has been removed, this value will be -1."
::= { cpqHeResMem2BoardEntry 8 }
cpqHeResMem2BoardOsMemSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the size of memory for this board or
cartridge or riser as seen by the Operating System in MB (1 MB =
1048576 bytes).
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResMem2BoardEntry 9 }
cpqHeResMem2BoardTotalMemSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the size of memory for this board or
Cartridge or riser including memory seen by the Operating System and
the memory used for spare, mirrored, or XOR configurations
in MB (1 MB = 1048576 bytes).
If this system does not support Advanced Memory Protection or this
value cannot be determined, then a value of 0 will be returned."
::= { cpqHeResMem2BoardEntry 10 }
cpqHeResMem2BoardCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the current status of the Advanced Memory
Protection memory board or cartridge or riser.
The following status values are supported:
other(1):
The condition of this memory board or cartridge or riser
could not be determined.
ok(2):
The memory board or cartridge or riser is operating normally.
degraded(3):
The memory board or cartridge or riser is in an error state.
Check for correct memory installation and that the
board has been inserted properly."
::= { cpqHeResMem2BoardEntry 11 }
cpqHeResMem2BoardHotPlug OBJECT-TYPE
SYNTAX INTEGER {
other(1),
nonHotPluggable(2),
hotPluggable(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This indicates if the memory board is capable of being
removed and/or inserted while the system is in an
operational state.
The following states are supported:
other(1)
The state could not be determined or the system does not
support Advanced Memory Protection.
nonHotPluggable(2)
The memory board or cartridge or riser is not hot plug capable.
hotPluggable(3)
The memory board or cartridge or riser is hot plug capable and can be
removed if the system is operating in a redundant state. A
memory board or cartridge or riser may be added to an empty bay."
::= { cpqHeResMem2BoardEntry 12}
cpqHeResMem2BoardOperatingFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the operational memory frequency for
this board or Cartridge or riser in MHz."
::= { cpqHeResMem2BoardEntry 13 }
cpqHeResMem2BoardOperatingVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the operational memory voltage for
this board or Cartridge or riser in millivolts."
::= { cpqHeResMem2BoardEntry 14 }
-- ****************************************************************************
-- Health MIB Advanced Memory Protection Memory Module Group
-- =========================================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14)
-- cpqHeResMem2ModuleTable (1.3.6.1.4.1.232.6.2.14.13)
-- cpqHeResMem2ModuleEntry (1.3.6.1.4.1.232.6.2.14.13.1)
--
-- ****************************************************************************
cpqHeResMem2ModuleTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeResMem2ModuleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of memory module descriptions."
::= { cpqHeResilientMemory 13 }
cpqHeResMem2ModuleEntry OBJECT-TYPE
SYNTAX CpqHeResMem2ModuleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A memory module description."
INDEX { cpqHeResMem2Module }
::= { cpqHeResMem2ModuleTable 1 }
CpqHeResMem2ModuleEntry ::= SEQUENCE {
cpqHeResMem2Module INTEGER,
cpqHeResMem2BoardNum INTEGER,
cpqHeResMem2CpuNum INTEGER,
cpqHeResMem2RiserNum INTEGER,
cpqHeResMem2ModuleNum INTEGER,
cpqHeResMem2ModuleSize INTEGER,
cpqHeResMem2ModuleType INTEGER,
cpqHeResMem2ModuleTechnology INTEGER,
cpqHeResMem2ModuleManufacturer DisplayString,
cpqHeResMem2ModulePartNo DisplayString,
cpqHeResMem2ModuleDate OCTET STRING,
cpqHeResMem2ModuleSerialNo DisplayString,
cpqHeResMem2ModuleHwLocation DisplayString,
cpqHeResMem2ModuleFrequency INTEGER,
cpqHeResMem2ModuleCellTablePtr INTEGER,
cpqHeResMem2ModuleCellStatus INTEGER,
cpqHeResMem2ModulePartNoMfgr DisplayString,
cpqHeResMem2ModuleSerialNoMfgr DisplayString,
cpqHeResMem2ModuleStatus INTEGER,
cpqHeResMem2ModuleCondition INTEGER,
cpqHeResMem2ModuleSpd OCTET STRING,
cpqHeResMem2ModuleSmartMemory INTEGER,
cpqHeResMem2ModuleMinVoltage INTEGER,
cpqHeResMem2ModuleRanks INTEGER
}
cpqHeResMem2Module OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This will represent the unique memory DIMM on
memory board or cartridge or riser. "
::= { cpqHeResMem2ModuleEntry 1 }
cpqHeResMem2BoardNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The slot in which the memory board or cartridge is installed.
A value of 0 indicates memory installed directly on the
system board."
::= { cpqHeResMem2ModuleEntry 2 }
cpqHeResMem2CpuNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module CPU number. Value 0 means memory is not Processor based."
::= { cpqHeResMem2ModuleEntry 3 }
cpqHeResMem2RiserNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module rasier number."
::= { cpqHeResMem2ModuleEntry 4 }
cpqHeResMem2ModuleNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module number."
::= { cpqHeResMem2ModuleEntry 5 }
cpqHeResMem2ModuleSize OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Module memory size in kilobytes. A kilobyte of memory is
defined as 1024 bytes.
A size of 0 indicates the module is not present."
::= { cpqHeResMem2ModuleEntry 6 }
cpqHeResMem2ModuleType OBJECT-TYPE
SYNTAX INTEGER {
other(1),
board(2),
cpqSingleWidthModule(3),
cpqDoubleWidthModule(4),
simm(5),
pcmcia(6),
compaq-specific(7),
dimm(8),
smallOutlineDimm(9),
rimm(10),
srimm(11),
fb-dimm(12),
dimmddr(13),
dimmddr2(14),
dimmddr3(15),
dimmfbd2(16),
fb-dimmddr2(17),
fb-dimmddr3(18),
dimmddr4(19)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of memory module installed. The value other(1) will be
given if the type is not known. The value board(2) will be
given if the memory module is permanently mounted (not modular)
on a system board or memory expansion board."
::= { cpqHeResMem2ModuleEntry 7 }
cpqHeResMem2ModuleTechnology OBJECT-TYPE
SYNTAX INTEGER {
other(1),
fastPageMode(2),
edoPageMode(3),
burstEdoPageMode(4),
synchronous(5),
rdram(6),
rdimm(7),
udimm(8),
lrdimm(9),
nvdimm(10),
rnvdimm(11),
lrnvdimm(12)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Technology type of memory module installed. The value other(1)
will be given if the technology is not known."
::= { cpqHeResMem2ModuleEntry 8 }
cpqHeResMem2ModuleManufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module's manufacturer name.
This field will be a null (size 0) string if the manufacturer
name is not available."
::= { cpqHeResMem2ModuleEntry 9 }
cpqHeResMem2ModulePartNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module's manufacturer part number.
This field will be a null (size 0) string if the manufacturer
part number is not available."
::= { cpqHeResMem2ModuleEntry 10 }
cpqHeResMem2ModuleDate OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (7))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module date of manufacture.
field octets contents range
===== ====== ====================== ========
1 1-2 year 0..65536
2 3 month 1..12
3 4 day 1..31
4 5 hour 0..23
5 6 minute 0..59
6 7 second 0..60
(use 60 for leap-second)
This field will be set to year = 0 if the date of manufacture
is not available. The hour, minute, and second fields will
always be set to 0."
::= { cpqHeResMem2ModuleEntry 11 }
cpqHeResMem2ModuleSerialNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The memory module's serial number.
This field will be a null (size 0) string if the serial number
is not available."
::= { cpqHeResMem2ModuleEntry 12 }
cpqHeResMem2ModuleHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"A text description of the hardware location, on complex
multi SBB hardware only, for the memory module.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqHeResMem2ModuleEntry 13 }
cpqHeResMem2ModuleFrequency OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The memory module maximum frequency in MHz. The value zero
(0) will be given if the module frequency cannot be determined."
::= { cpqHeResMem2ModuleEntry 14 }
cpqHeResMem2ModuleCellTablePtr OBJECT-TYPE
SYNTAX INTEGER (0..15)
ACCESS read-only
STATUS optional
DESCRIPTION
"Index for the cell in cpqSeCellTable where the memory board is
installed."
::= { cpqHeResMem2ModuleEntry 15 }
cpqHeResMem2ModuleCellStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
deconfigured(3)
}
ACCESS read-only
STATUS optional
DESCRIPTION
"This provides the current status for this memory module.
The following status values are supported:
other(1):
The memory module status is not available
ok(2):
The memory module is active
deconfigured(3):
The memory module is not ready"
::= { cpqHeResMem2ModuleEntry 16 }
cpqHeResMem2ModulePartNoMfgr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"The memory module's manufacturer's part number.
This field will be a null (size 0) string if the manufacturer
part number is not available."
::= { cpqHeResMem2ModuleEntry 17 }
cpqHeResMem2ModuleSerialNoMfgr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS optional
DESCRIPTION
"The memory module's manufacturer's serial number.
This field will be a null (size 0) string if the manufacturer
serial number is not available."
::= { cpqHeResMem2ModuleEntry 18 }
cpqHeResMem2ModuleStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notPresent(2),
present(3),
good(4),
add(5),
upgrade(6),
missing(7),
doesNotMatch(8),
notSupported(9),
badConfig(10),
degraded(11),
spare(12),
partial(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the current status of the correctable memory
errors for this memory module.
The following status values are supported:
other(1):
The status is unknown or could not be determined.
notPresent(2):
The memory module is not present or is un-initialized.
present(3):
The memory module is present but not in use.
good(4):
The memory module is present and in use. The corrected
error threshold has not been exceeded.
add(5):
The memory module has been added, but is not yet in use.
upgraded(6):
The memory module has been upgraded, but the memory is not
yet in use.
missing(7):
An expected memory module is missing.
doesNotMatch(8):
The memory module does not match the other memory modules
within the bank.
notSupported(9):
The memory module is not supported.
badConfig(10):
The memory module violates the add/upgrade configuration
rules.
degraded(11):
The memory module's correctable error count has exceeded
threshold.
spare(12):
The memory module is configured as a spare.
partial(13):
The memory module is present and is partially in use."
::= { cpqHeResMem2ModuleEntry 19 }
cpqHeResMem2ModuleCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
degradedModuleIndexUnknown(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the current status of the correctable memory
errors for this memory module.
The following status values are supported:
other(1):
ECC is not supported on this memory module or the
condition could not be determined.
ok(2):
The memory module is operating normally.
degraded(3):
The memory module is correctable error count has exceeded
threshold or a configuration error has been detected.
degradedModuleIndexUnknown(4):
The correctable error count has exceeded threshold.
The module number not available."
::= { cpqHeResMem2ModuleEntry 20 }
cpqHeResMem2ModuleSpd OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..256))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the raw Serial Presence Detect information contained
in the memory module.
If the SPD information is not available, this item will be empty.
NOTE: SPD information will not be available if cpqHeResMem2ModuleType is dimmddr4(19)."
::= { cpqHeResMem2ModuleEntry 21 }
cpqHeResMem2ModuleSmartMemory OBJECT-TYPE
SYNTAX INTEGER {
other(1),
notHPSmartMemory(2),
isHPSmartMemory(3),
isHPStandardMemory(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This indicates whether the DIMM slot is populated with HP Smart Memory or HP Standard Memory DIMM.
The following values are supported:
other(1):
HP SmartMemory not supported in this device.
notHPSmartMemory(2):
HP SmartMemory is NOT installed in DIMM slot (includes
the case where the DIMM slot is not populated).
isHPSmartMemory(3):
HP SmartMemory is installed in DIMM slot.
isHPStandardMemory(4):
HP Standard Memory is installed in DIMM slot."
::= { cpqHeResMem2ModuleEntry 22 }
cpqHeResMem2ModuleMinVoltage OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the minimum voltage needed for the module to
operate, in millivolts."
::= { cpqHeResMem2ModuleEntry 23 }
cpqHeResMem2ModuleRanks OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This provides the number of physical ranks on the module."
::= { cpqHeResMem2ModuleEntry 24 }
-- ****************************************************************************
-- Health MIB Power Meter Group
-- ========================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePowerMeter Group (1.3.6.1.4.1.232.6.2.15)
--
-- The cpqHePowerMeter group describes the Server's power consumption read
--
--
-- Implementation of the cpqHePowerMeter group is mandatory for all
-- platform that support Power Meter.
--
-- ****************************************************************************
cpqHePowerMeterSupport OBJECT-TYPE
SYNTAX INTEGER {
other(1),
supported(2),
unsupported(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies whether Power Meter is supported
by this Server .
The following values are supported:
other(1)
Could not read the Power Meter status.
supported(2)
This system support Power Meter.
unsupported(3)
This system does not support Power Meter."
::= { cpqHePowerMeter 1}
cpqHePowerMeterStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
present(2),
absent(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies whether Power Meter reading is supported
by this Server .
The following values are supported:
other(1)
Could not read the Power Meter status.
present(2)
The Power Meter data is available.
absent(3)
The Power Meter data is not available at this time."
::= { cpqHePowerMeter 2}
cpqHePowerMeterCurrReading OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" This is the current Power Meter reading in Watts.
This value shows the most recent power reading if available.
On systems without Power Meter support, this value will be -1."
::= { cpqHePowerMeter 3 }
cpqHePowerMeterPrevReading OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
" This is the previous Power Meter reading in Watts.
This value shows previous power reading if available.
On systems without Power Meter support, this value will be -1."
::= { cpqHePowerMeter 4 }
--*****************************************************************************
-- Health MIB Hardware BIOS Group
-- ===============================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeHWBios Group (1.3.6.1.4.1.232.6.2.16)
--
-- The cpqHeHWBios group describes the Server's Hardware BIOS information
--
--
-- ****************************************************************************
cpqHeHWBiosCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value indicates an error has been detected during Pre-OS Test (POST) or
during initial hardware initialization. Typically, this will be a hardware interlock
not closed due to an adapter or cable not properly seated in the slot. The first
action is to review the iLO Event Log and iLO Integrated Management Log (IML)
for a new event. If no entries found, the server will usually require a physical
inspection to identify the source of the issue by observing the external and
internal hardware status LEDs.
This value will be one of the following:
other(1)
There is no data available to support the cpqHeHWBiosCondition.
ok(2)
The primary server hardware is operational.
degraded(3)
A non-fatal condition detected. Review iLO Event and Integrated Management Logs.
failed(4)
A fatal condition detected during POST or prior to hardware power on."
::= { cpqHeHWBios 1 }
-- ****************************************************************************
-- Health MIB System Backup Battery Group
-- ============================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeSysBackupBattery Group (1.3.6.1.4.1.232.6.2.17)
--
-- The cpqHeSysBackupBattery group contains management information about
-- HP Smart Storage Batteries.
--
-- Implementation of the cpqHeSysBackupBattery group is mandatory for all
-- agents that support the Server Health MIB.
--
-- ****************************************************************************
cpqHeSysBackupBatteryCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the battery
backup sub-system."
::= { cpqHeSysBackupBattery 1 }
-- ****************************************************************************
-- Health MIB System Battery Table
-- ============================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeSysBackupBattery Group (1.3.6.1.4.1.232.6.2.17)
-- cpqHeSysBattery Table (1.3.6.1.4.1.232.6.2.17.2)
--
-- ****************************************************************************
cpqHeSysBatteryTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeSysBatteryEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of battery entries."
::= { cpqHeSysBackupBattery 2}
cpqHeSysBatteryEntry OBJECT-TYPE
SYNTAX CpqHeSysBatteryEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A System Backup Battery Entry."
INDEX { cpqHeSysBatteryChassis, cpqHeSysBatteryIndex }
::= { cpqHeSysBatteryTable 1 }
CpqHeSysBatteryEntry ::= SEQUENCE {
cpqHeSysBatteryChassis INTEGER,
cpqHeSysBatteryIndex INTEGER,
cpqHeSysBatteryPresent INTEGER,
cpqHeSysBatteryCondition INTEGER,
cpqHeSysBatteryStatus INTEGER,
cpqHeSysBatteryCapacityMaximum INTEGER,
cpqHeSysBatteryProductName DisplayString,
cpqHeSysBatteryModel DisplayString,
cpqHeSysBatterySerialNumber DisplayString,
cpqHeSysBatteryFirmwareRev DisplayString,
cpqHeSysBatterySparePartNum DisplayString
}
cpqHeSysBatteryChassis OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The system chassis number."
::= { cpqHeSysBatteryEntry 1 }
cpqHeSysBatteryIndex OBJECT-TYPE
SYNTAX INTEGER (1..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The battery index number within this chassis."
::= { cpqHeSysBatteryEntry 2 }
cpqHeSysBatteryPresent OBJECT-TYPE
SYNTAX INTEGER {
other(1),
absent(2),
present(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether the backup battery is present in the chassis."
::= { cpqHeSysBatteryEntry 3 }
cpqHeSysBatteryCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The condition of the backup battery.
This value will be one of the following:
other(1)
The status could not be determined or not present.
ok(2)
The battery is operating normally.
degraded(3)
The battery is degraded.
failed(4)
The battery has stopped responding or has shutdown
in order to not permanently damage the system."
::= { cpqHeSysBatteryEntry 4 }
cpqHeSysBatteryStatus OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
generalFailure(2),
shutdownHighResistance(3),
shutdownLowVoltage(4),
shutdownShortCircuit(5),
shutdownChargeTimeout(6),
shutdownOverTemperature(7),
shutdownDischargeMinVoltage(8),
shutdownDischargeCurrent(9),
shutdownLoadCountHigh(10),
shutdownEnablePin(11),
shutdownOverCurrent(12),
shutdownPermanentFailure(13),
shutdownBackupTimeExceeded(14)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of the battery."
::= { cpqHeSysBatteryEntry 5 }
cpqHeSysBatteryCapacityMaximum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum capacity of the battery in watts."
::= { cpqHeSysBatteryEntry 6 }
cpqHeSysBatteryProductName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The battery product name."
::= { cpqHeSysBatteryEntry 7 }
cpqHeSysBatteryModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The battery model name."
::= { cpqHeSysBatteryEntry 8 }
cpqHeSysBatterySerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The battery serial number."
::= { cpqHeSysBatteryEntry 9 }
cpqHeSysBatteryFirmwareRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The battery firmware revision. This field will be left
blank if the firmware revision is unknown."
::= { cpqHeSysBatteryEntry 10 }
cpqHeSysBatterySparePartNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..24))
ACCESS read-only
STATUS optional
DESCRIPTION
"The battery part number or spare part number."
::= { cpqHeSysBatteryEntry 11 }
-- ****************************************************************************
-- Health MIB System Fru details Group
-- ============================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeSysPwrAllocation Group (1.3.6.1.4.1.232.6.2.18)
--
-- The cpqHeSysPwrAllocation group contains information about
-- the Power Allocation Optimization status.
--
-- ****************************************************************************
cpqHeSysPwrAllocationOptimizeStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
ok(2),
failed(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies if server power throttle setting failed or not."
::= { cpqHeSysPwrHw 1 }
-- ****************************************************************************
-- Health MIB System Fru details Group
-- ============================================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeSysBoardFru Group (1.3.6.1.4.1.232.6.2.19)
--
-- The cpqHeSysBoardFru group contains information about
-- the board fru or mezzanine card status.
--
-- ****************************************************************************
cpqHeSysBoardFruStatus OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is an array of status values representing the board fru status.
Octet Element Field
======== ======= =========
0 0 Blade base board FRU
1 1 Mezzanine Card 1
2 2 Mezzanine Card 2
.
.
16 16 Mezzanine Card 16
.
n n Reserved
Status 0 - Not Present
1 - OK
2 - Read Error
3 - Fru Format Error"
::= { cpqHeSysBoardFru 1 }
-- ****************************************************************************
-- Critical Power Failure Group
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePowerFailure Group (1.3.6.1.4.1.232.6.2.20)
--
-- Implementation of power failure support.
-- ****************************************************************************
cpqHePowerFailureSupported OBJECT-TYPE
SYNTAX INTEGER {
false (1),
true (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies whether this server supports power failure monitoring."
::= { cpqHePowerFailure 1 }
-- ****************************************************************************
-- Critical Power Failure Fault Table
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHePowerFailure Group (1.3.6.1.4.1.232.6.2.20)
-- cpqHePowerFailureTable (1.3.6.1.4.1.232.6.2.20.2)
--
-- ****************************************************************************
cpqHePowerFailureTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHePowerFailureTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of Power Fault Entries."
::= { cpqHePowerFailure 2 }
cpqHePowerFailureTableEntry OBJECT-TYPE
SYNTAX CpqHePowerFailureTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The server power failure details."
INDEX { cpqHePowerFailureIndex }
::= { cpqHePowerFailureTable 1 }
CpqHePowerFailureTableEntry ::= SEQUENCE {
cpqHePowerFailureIndex INTEGER,
cpqHePowerFailureStatus INTEGER,
cpqHePowerFailureDeviceID INTEGER,
cpqHePowerFailureArea INTEGER,
cpqHePowerFailureDeviceBitMap INTEGER,
cpqHePowerFailureGroupString DisplayString,
cpqHePowerFailureRepairSteps INTEGER,
cpqHePowerFailureType INTEGER
}
cpqHePowerFailureIndex OBJECT-TYPE
SYNTAX INTEGER (0..15)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index uniquely identifies 1 of 16 areas on the system board."
::= { cpqHePowerFailureTableEntry 1 }
cpqHePowerFailureStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
failed(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of this table entry.
The value will be one of the following:
ok(1)
There is no failed device in this area.
failed(2)
A device has failed in this area."
::= { cpqHePowerFailureTableEntry 2 }
cpqHePowerFailureDeviceID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique id of the failed power device on the system board."
::= { cpqHePowerFailureTableEntry 3 }
cpqHePowerFailureArea OBJECT-TYPE
SYNTAX INTEGER {
systemBoard(1),
processor(2),
memory (3),
memoryBoard (4),
riserCardAssembly (5),
flexibleLOM (6),
flexibleSmartArray (7),
optIOPCIeSlots (8),
powerBackplane (9),
sasBackplane (10),
powerSupply (11),
mezzCard (12),
enclosure(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This field enumerates the area on the system board.
The value will be one of the following:
systemBoard(1)
General
processor(2)
Processor
memory(3)
Memory
memoryBoard(4)
Memory Board
riserCardAssembly(5)
Riser Card Assembly
flexibleLOM(6)
Flexible LOM
flexibleSmartArray(7)
Flexible Smart Array
optIOPCIeSlots(8)
Opt IO PCIe Slots
powerBackplane(9)
Power Backplane
sasBackplane(10)
SAS Backplane
powerSupply(11)
Power Supply
mezzCard(12)
Mezzanine Card
enclosure(13)
Enclosure"
::= { cpqHePowerFailureTableEntry 4 }
cpqHePowerFailureDeviceBitMap OBJECT-TYPE
SYNTAX INTEGER (1..16)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The hex representation of the device(s) within the specified area."
::= { cpqHePowerFailureTableEntry 5 }
cpqHePowerFailureGroupString OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The location of the device on the system board."
::= { cpqHePowerFailureTableEntry 6 }
cpqHePowerFailureRepairSteps OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
systemBoardRpMsg1(2),
processorRpMsg1(3),
memoryRpMsg1(4),
memoryBoardRpMsg1(5),
riserCardAssemblyRpMsg1(6),
flexibleLomRpMsg1(7),
flexibleSmartArrayRpMsg1(8),
optIOPCIeSlotsRpMsg1(9),
powerBackplaneRpMsg1(10),
sasBackplaneRpMsg1(11),
powerSupplyRpMsg1(12),
mezzCardRpMsg1(13),
enclosureRpMsg1(14)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Recommended troubleshooting steps for a particular device error.
The value will be one of the following:
noError(1)
No errors were detected at this time.
systemBoardRpMsg1(2)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Restore the server to its base
configuration. Attempt to boot the server. (3)If error persists, capture the AHS
logs and contact your support representative for assistance.
processorRpMsg1(3)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Processor
that has an issue. Attempt to boot the server. (3) Swap the faulty Processor with a
known good Processor. Attempt to boot the server. (4) If error persists, capture the AHS
logs and contact your support representative for assistance.
memoryRpMsg1(4)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall all DIMM's in
the memory channel group connected to the CPU that logged the error. Attempt to boot the
server. (3) Swap the first DIMM in the memory channel group with a known good DIMM.
Attempt to boot the server. If the server doesn't boot, repeat step 3 by swapping each
DIMM in the memory channel group, one DIMM at a time until the bad DIMM is found.
(4) If error persists, capture the AHS logs and contact your support representative for
assistance.
memoryBoardRpMsg1(5)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove the cartridge of the Memory
Board that logged the error. Open the cartridge and reseat the DIMM's. Attempt to boot
the server. (3) If error persists, capture the AHS logs and contact your support representative
for assistance.
riserCardAssemblyRpMsg1(6)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Riser Board
that has an issue. Attempt to boot the server. (3) Remove the Riser Board then attempt
to boot the server. (4) If error persists, capture the AHS logs and contact your support
representative for assistance.
flexibleLomRpMsg1(7)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Flexible
LOM that has an issue. Attempt to boot the server. (3) Remove the Flexible LOM then
attempt to boot the server. (4) If error persists, capture the AHS logs and contact your
support representative for assistance.
flexibleSmartArrayRpMsg1(8)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Flexible
Smart Array Controller that has an issue. Attempt to boot the server. (3) Remove the
Flexible Smart Array Controller then attempt to boot the server. (4) If error persists, capture
the AHS logs and contact your support representative for assistance.
optIOPCIeSlotsRpMsg1(9)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Option Card
that has an issue. Attempt to boot the server. (3) Remove all Option Cards from the system.
Attempt to boot the server. (4) If error persists, capture the AHS logs and contact your support
representative for assistance.
powerBackplaneRpMsg1(10)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove GPU power connects one at a time
in order to isolate the bad GPU card, each time attempt to boot the server. (3) If error persists,
capture the AHS logs and contact your support representative for assistance.
sasBackplaneRpMsg1(11)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall Storage
Blackplane that logged the error (including cables). Attempt to boot the server.
(3) If error persists, capture the AHS logs and contact your support representative for assistance.
powerSupplyRpMsg1(12)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Swap the first Power Supply with a
known good Power supply. Attempt to boot the server. (3) If error persists, capture the AHS
logs and contact your support representative for assistance.
mezzCardRpMsg1(13)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Remove and then reinstall the Mezzanine
Card that has an issue. Attempt to boot the server. (3) Remove the Mezzanine Card then
attempt to boot the server. (4) If error persists, capture the AHS logs and contact your
support representative for assistance.
enclosureRpMsg1(14)
Try the following steps until the error no longer occurs:
(1) Remove AC power, then restore AC power. (2) Restore the enclosure to its base
configuration. Attempt to boot the server. (2) If error persists, capture the AHS logs
and contact your support representative for assistance."
::= { cpqHePowerFailureTableEntry 7 }
cpqHePowerFailureType OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
tempDeadly(2),
inputPowerLoss(3),
badFuse(4),
standby(5),
runtime(6),
powerOn(7),
generic(8),
cpuThermTrip(9)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Critical power failure that occurred.
The value will be one of the following:
noError(1)
No error has occurred.
tempDeadly(2)
The server was shut down because a temperature sensor was above the critical threshold.
inputPowerLoss(3)
The server was shut down because the input power source was removed.
badFuse(4)
The server was shut down because one or more fuses tripped.
standby(5)
The server had a power fault that occurred while it was powered off.
runtime(6)
The server was shut down due to a power fault that occurred while it was powered on.
powerOn(7)
The server had a power fault while attempting to power on.
generic(8)
The server had a power fault but the reason is unknown.
cpuThermTrip(9)
The server was shut down because the CPU temperature sensor was above the allowed threshold. "
::= { cpqHePowerFailureTableEntry 8 }
-- ****************************************************************************
-- Critical Interlock Failure Group
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeInterlockFailure Group (1.3.6.1.4.1.232.6.2.21)
--
-- Implementation of Interlock failure
-- ****************************************************************************
cpqHeInterlockFailureSupported OBJECT-TYPE
SYNTAX INTEGER {
false(1),
true(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies whether this server supports Interlock failure monitoring."
::= { cpqHeInterlockFailure 1 }
-- ****************************************************************************
-- Critical Interlock Failure Fault Table
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2)
-- cpqHeInterlockFailure Group (1.3.6.1.4.1.232.6.2.21)
-- cpqHeInterlockFailureTable (1.3.6.1.4.1.232.6.2.21.2)
-- ****************************************************************************
cpqHeInterlockFailureTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeInterlockFailureTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of Interlock Table Entries."
::= { cpqHeInterlockFailure 2 }
cpqHeInterlockFailureTableEntry OBJECT-TYPE
SYNTAX CpqHeInterlockFailureTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Interlock failure details."
INDEX { cpqHeInterlockFailureIndex }
::= { cpqHeInterlockFailureTable 1 }
CpqHeInterlockFailureTableEntry ::= SEQUENCE {
cpqHeInterlockFailureIndex INTEGER,
cpqHeInterlockFailureStatus INTEGER,
cpqHeInterlockFailureDeviceID INTEGER,
cpqHeInterlockFailureArea INTEGER,
cpqHeInterlockFailureDeviceName DisplayString,
cpqHeInterlockFailureType INTEGER
}
cpqHeInterlockFailureIndex OBJECT-TYPE
SYNTAX INTEGER (1..16)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index uniquely identifies 1 of 16 areas on the system board."
::= { cpqHeInterlockFailureTableEntry 1 }
cpqHeInterlockFailureStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
failed(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status of this table entry.
The value will be one of the following:
ok(1)
There are no missing devices in this area.
failed(2)
A device is missing or improperly seated this area."
::= { cpqHeInterlockFailureTableEntry 2 }
cpqHeInterlockFailureDeviceID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unique id of the missing or improperly seated device on the system board."
::= { cpqHeInterlockFailureTableEntry 3 }
cpqHeInterlockFailureArea OBJECT-TYPE
SYNTAX INTEGER {
systemBoard(1),
processor(2),
memory(3),
memoryBoard(4),
riserCardAssembly(5),
flexibleLOM(6),
flexibleSmartArray(7),
optIOPCIeSlots(8),
powerBackplane(9),
sasBackplane(10),
powerSupply(11),
mezzCard(12),
enclosure(13)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This field enumerates the area on the system board.
The value will be one of the following:
systemBoard(1)
General
processor(2)
Processor
memory(3)
Memory
memoryBoard(4)
Memory Board
riserCardAssembly(5)
Riser Card Assembly
flexibleLOM(6)
Flexible LOM
flexibleSmartArray(7)
Flexible Smart Array
optIOPCIeSlots(8)
Opt IO PCIe Slots
powerBackplane(9)
Power Backplane
sasBackplane(10)
SAS Backplane
powerSupply(11)
Power Supply
mezzCard(12)
Mezzanine Card
enclosure(13)
Enclosure"
::= { cpqHeInterlockFailureTableEntry 4 }
cpqHeInterlockFailureDeviceName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the missing or improperly seated device."
::= { cpqHeInterlockFailureTableEntry 5 }
cpqHeInterlockFailureType OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
standby(2),
runtime(3),
powerOn(4),
generic(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of critical Interlock failure that occurred.
The value will be one of the following:
noError(1)
No error has occurred.
standby(2)
The server had a power fault that occurred while it was powered off.
runtime(3)
The server was shut down due to a power fault that occurred while it was powered on.
powerOn(4)
The server had a power fault that occurred while attempting to power on.
generic(5)
The server had a power fault but the reason is unknown. "
::= { cpqHeInterlockFailureTableEntry 6 }
-- ****************************************************************************
-- HealthMIB Trap Group
-- =====================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeTrap Group (1.3.6.1.4.1.232.6.3) (deprecated)
--
-- The cpqHeTrap group maintains information about the number of traps
-- issued from the health enterprise. The trap group also maintains a table
-- of the last several traps issued. This table is intended to give a
-- management application some recent status information immediately upon
-- accessing the agent.
--
-- Implementation of the cpqHeTrap group is optional for agents that
-- support the Server Health MIB.
--
-- ****************************************************************************
cpqHeTrapPkts OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The total number of SNMP trap packets issued by the
Server Health agent."
::= { cpqHeTrap 1 }
cpqHeTrapLogMaxSize OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The maximum number of entries that will currently be kept in
the trap log. If the maximum size has been reached and a new
trap occurs the oldest trap will be removed."
::= { cpqHeTrap 2 }
-- ****************************************************************************
-- Health MIB Trap Log Table
-- =========================
--
-- The compaq enterprise (1.3.6.1.4.1.232)
-- cpqHealth Group (1.3.6.1.4.1.232.6)
-- cpqHeTrap Group (1.3.6.1.4.1.232.6.3)
-- cpqHeTrapLogTable (1.3.6.1.4.1.232.6.3.3) (deprecated)
--
-- ****************************************************************************
cpqHeTrapLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpqHeTrapLogEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"An ordered list of trap log entries (conceptually a queue). The
trap log entries will be kept in the order in which they were
generated with the most recent trap at index 1 and the oldest
trap entry at index trapLogMaxSize. If the maximum number of
entries has been reached and a new trap occurs the oldest trap
will be removed when the new trap is added so the trapMaxLogSize
is not exceeded."
::= { cpqHeTrap 3 }
cpqHeTrapLogEntry OBJECT-TYPE
SYNTAX CpqHeTrapLogEntry
ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"A description of a trap event."
INDEX { cpqHeTrapLogIndex }
::= { cpqHeTrapLogTable 1 }
CpqHeTrapLogEntry ::= SEQUENCE {
cpqHeTrapLogIndex INTEGER,
cpqHeTrapType INTEGER,
cpqHeTrapTime OCTET STRING
}
cpqHeTrapLogIndex OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The value of this object uniquely identifies this trapLogEntry
at this time. The most recent trap will have an index of 1 and
the oldest trap will have an index of trapLogMaxSize. Because of
the queue-like nature of the trapLog this particular trap event's
index will change as new traps are issued."
::= { cpqHeTrapLogEntry 1 }
cpqHeTrapType OBJECT-TYPE
SYNTAX INTEGER {
cpqHeCorrectableMemoryError(1),
cpqHeCorrectableMemoryLogDisabled(2),
cpqHe2CorrectableMemoryError(6001),
cpqHe2CorrectableMemoryLogDisabled(6002),
cpqHeThermalTempFailed(6003),
cpqHeThermalTempDegraded(6004),
cpqHeThermalTempOk(6005),
cpqHeThermalSystemFanFailed(6006),
cpqHeThermalSystemFanDegraded(6007),
cpqHeThermalSystemFanOk(6008),
cpqHeThermalCpuFanFailed(6009),
cpqHeThermalCpuFanOk(6010),
cpqHeAsrConfirmation(6011),
cpqHeThermalConfirmation(6012),
cpqHePostError(6013)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The type of the trap event this entry describes. This
number refers to an entry in a list of traps enumerating the
possible traps the Server Health agent may issue."
::= { cpqHeTrapLogEntry 2 }
cpqHeTrapTime OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..6))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The time of the trap event that this entry describes. The time
is given in year (first octet), month, day of month, hour,
minute, second (last octet) order. The octets are in Binary
Coded Decimal (BCD)."
::= { cpqHeTrapLogEntry 3 }
-- ****************************************************************************
-- Health MIB Trap Definitions
-- ===========================
--
-- The SNMP trap messages must not be bigger than 484 octets (bytes).
--
-- Trap support in an SNMP agent implementation is optional. An SNMP
-- agent implementation may support all, some, or none of the traps.
-- If traps are supported, The user should be provided with the option of
-- disabling traps.
-- **************************************************************************
cpqHeCorrectableMemoryError TRAP-TYPE
ENTERPRISE cpqHealth
VARIABLES { cpqHeCorrMemTotalErrs }
DESCRIPTION
"A correctable memory error occurred.
The error has been corrected. The current number of correctable
memory errors is reported in the variable cpqHeCorrMemTotalErrs."
--#TYPE "Correctable Memory Error Occurred (1)"
--#SUMMARY "Total correctable errors = %d."
--#ARGUMENTS {0}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 1
cpqHeCorrectableMemoryLogDisabled TRAP-TYPE
ENTERPRISE cpqHealth
VARIABLES { cpqHeCorrMemLogStatus }
DESCRIPTION
"Correctable memory error tracking disabled.
The frequency of errors is so high that the error tracking
logic has been temporarily disabled. The cpqHeCorrMemLogStatus
variable indicated the current tracking status."
--#TYPE "Memory Error Tracking Disabled (2)"
--#SUMMARY "Too many memory errors - tracking now disabled."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 2
-- Trap definitions for Insight Manager version 2.00 and greater
-- use the Compaq Enterprise (232) and have unique trap numbers between all
-- of the MIBs.
cpqHe2CorrectableMemoryError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { cpqHeCorrMemTotalErrs }
DESCRIPTION
"A correctable memory error occurred.
The error has been corrected. The current number of correctable
memory errors is reported in the variable cpqHeCorrMemTotalErrs."
--#TYPE "Correctable Memory Error Occurred (6001)"
--#SUMMARY "Total correctable errors = %d."
--#ARGUMENTS {0}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6001
cpqHe2CorrectableMemoryLogDisabled TRAP-TYPE
ENTERPRISE compaq
VARIABLES { cpqHeCorrMemLogStatus }
DESCRIPTION
"Correctable memory error tracking disabled.
The frequency of errors is so high that the error tracking
logic has been temporarily disabled. The cpqHeCorrMemLogStatus
variable indicated the current tracking status."
--#TYPE "Memory Error Tracking Disabled (6002)"
--#SUMMARY "Too many memory errors - tracking now disabled."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6002
cpqHeThermalTempFailed TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The temperature status has been set to failed.
The system will be shutdown due to this thermal condition."
--#TYPE "Thermal Failure (6003)"
--#SUMMARY "System will be shutdown due to this thermal condition."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6003
cpqHeThermalTempDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { cpqHeThermalDegradedAction }
DESCRIPTION
"The temperature status has been set to degraded.
The server's temperature is outside of the normal operating
range. The server will be shutdown if the
cpqHeThermalDegradedAction variable is set to shutdown(3)."
--#TYPE "Thermal Status Degraded (6004)"
--#SUMMARY "Temperature out of range. Shutdown may occur."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6004
cpqHeThermalTempOk TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The temperature status has been set to ok.
The server's temperature has returned to the normal operating
range."
--#TYPE "Temperature OK (6005)"
--#SUMMARY "Temperature has returned to normal range."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6005
cpqHeThermalSystemFanFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { cpqHeThermalDegradedAction }
DESCRIPTION
"The system fan status has been set to failed.
A required system fan is not operating normally. The system
will be shutdown if the cpqHeThermalDegradedAction variable
is set to shutdown(3)."
--#TYPE "System Fan Failure (6006)"
--#SUMMARY "Required fan not operating normally. Shutdown may occur."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6006
cpqHeThermalSystemFanDegraded TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The system fan status has been set to degraded.
An optional system fan is not operating normally."
--#TYPE "System Fan Degraded (6007)"
--#SUMMARY "An optional fan is not operating normally."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6007
cpqHeThermalSystemFanOk TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The system fan status has been set to ok.
Any previously non-operational system fans have returned to
normal operation."
--#TYPE "System Fan OK (6008)"
--#SUMMARY "System fan has returned to normal operation."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6008
cpqHeThermalCpuFanFailed TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The CPU fan status has been set to failed.
A processor fan is not operating normally. The server will be
shutdown."
--#TYPE "CPU Fan Failure (6009)"
--#SUMMARY "CPU fan has failed. Server will be shutdown."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
::= 6009
cpqHeThermalCpuFanOk TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The CPU fan status has been set to ok.
Any previously non-operational processor fans have returned
to normal operation."
--#TYPE "CPU Fan OK (6010)"
--#SUMMARY "CPU fan is now OK."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6010
cpqHeAsrConfirmation TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The server is operational again.
The server has previously been shutdown by the
Automatic Server Recovery (ASR) feature and has just
become operational again."
--#TYPE "Server Operational (6011)"
--#SUMMARY "Server is operational again after ASR shutdown."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6011
cpqHeThermalConfirmation TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The server is operational again.
The server has previously been shutdown due to a thermal
anomaly on the server and has just become operational again."
--#TYPE "Server Operational (6012)"
--#SUMMARY "Server is operational again after thermal shutdown."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6012
cpqHePostError TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"One or more POST errors occurred.
Power On Self-Test (POST) errors occur during the server
restart process. "
--#TYPE "POST Errors Occurred (6013)"
--#SUMMARY "Errors occurred during server restart."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6013
cpqHeFltTolPwrSupplyDegraded TRAP-TYPE
ENTERPRISE compaq
DESCRIPTION
"The fault tolerant power supply sub-system condition has been
set to degraded."
--#TYPE "Server Power Supply Degraded (6014)"
--#SUMMARY "The server power supply status has become degraded."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6014
cpqHe3CorrectableMemoryError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeCorrMemTotalErrs }
DESCRIPTION
"A correctable memory error occurred.
The error has been corrected. The current number of correctable
memory errors is reported in the variable cpqHeCorrMemTotalErrs."
--#TYPE "Correctable Memory Error Occurred (6015)"
--#SUMMARY "Total correctable errors = %d."
--#ARGUMENTS {2}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6015
cpqHe3CorrectableMemoryLogDisabled TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeCorrMemLogStatus }
DESCRIPTION
"Correctable memory error tracking disabled.
The frequency of errors is so high that the error tracking
logic has been temporarily disabled. The cpqHeCorrMemLogStatus
variable indicated the current tracking status."
--#TYPE "Memory Error Tracking Disabled (6016)"
--#SUMMARY "Too many memory errors - tracking now disabled."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY MEMORY
::= 6016
cpqHe3ThermalTempFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The temperature status has been set to failed.
The system will be shutdown due to this thermal condition."
--#TYPE "Thermal Failure (6017)"
--#SUMMARY "System will be shutdown due to this thermal condition."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY THERMAL
--#ACTION "Check the system for hardware failures and verify the environment is properly cooled."
::= 6017
cpqHe3ThermalTempDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction }
DESCRIPTION
"The temperature status has been set to degraded.
The server's temperature is outside of the normal operating
range. The server will be shutdown if the
cpqHeThermalDegradedAction variable is set to shutdown(3)."
--#TYPE "Temperature Degraded (6018)"
--#SUMMARY "Temperature out of range. Shutdown may occur."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY THERMAL
--#ACTION "Check the system for hardware failures and verify the environment is properly cooled."
::= 6018
cpqHe3ThermalTempOk TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The temperature status has been set to ok.
The server's temperature has returned to the normal operating
range."
--#TYPE "Temperature OK (6019)"
--#SUMMARY "Temperature has returned to normal range."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY THERMAL
::= 6019
cpqHe3ThermalSystemFanFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction }
DESCRIPTION
"The system fan status has been set to failed.
A required system fan is not operating normally. The system
will be shutdown if the cpqHeThermalDegradedAction variable
is set to shutdown(3)."
--#TYPE "System Fan Failure (6020)"
--#SUMMARY "Required fan not operating normally. Shutdown may occur."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY FAN
--#ACTION "Replace the failed fan."
::= 6020
cpqHe3ThermalSystemFanDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The system fan status has been set to degraded.
An optional system fan is not operating normally."
--#TYPE "System Fan Degraded (6021)"
--#SUMMARY "An optional fan is not operating normally."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY FAN
--#ACTION "Replace the failing fan."
::= 6021
cpqHe3ThermalSystemFanOk TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The system fan status has been set to ok.
Any previously non-operational system fans have returned to
normal operation."
--#TYPE "System Fan OK (6022)"
--#SUMMARY "System fan has returned to normal operation."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY FAN
::= 6022
cpqHe3ThermalCpuFanFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The CPU fan status has been set to failed.
A processor fan is not operating normally. The server will be
shutdown."
--#TYPE "CPU Fan Failure (6023)"
--#SUMMARY "CPU fan has failed. Server will be shutdown."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY FAN
--#ACTION "Replace the failed CPU fan."
::= 6023
cpqHe3ThermalCpuFanOk TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The CPU fan status has been set to ok.
Any previously non-operational processor fans have returned
to normal operation."
--#TYPE "CPU Fan OK (6024)"
--#SUMMARY "CPU fan is now OK."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY FAN
::= 6024
cpqHe3AsrConfirmation TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The server is operational again.
The server has previously been shutdown by the
Automatic Server Recovery (ASR) feature and has just
become operational again."
--#TYPE "Server Operational (6025)"
--#SUMMARY "Server is operational again after ASR shutdown."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY ASR
--#LIFECYCLE
::= 6025
cpqHe3ThermalConfirmation TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The server is operational again.
The server has previously been shutdown due to a thermal
anomaly on the server and has just become operational again."
--#TYPE "Server Operational (6026)"
--#SUMMARY "Server is operational again after thermal shutdown."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY THERMAL
::= 6026
cpqHe3PostError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"One or more POST errors occurred.
Power On Self-Test (POST) errors occur during the server
restart process. Details of the POST error messages can
be found in Integrated Management Log "
--#TYPE "POST Errors Occurred (6027)"
--#SUMMARY "Power on self-test errors occurred during server restart."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY LOGS
--#ACTION "Refer to the Integrated Management Log for details on the Power on self-test error."
::= 6027
cpqHe3FltTolPwrSupplyDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The fault tolerant power supply sub-system condition has been
set to degraded."
--#TYPE "Server Power Supply Degraded (6028)"
--#SUMMARY "The server power supply status has become degraded."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Check the system for a power supply failure. Replace the power supply."
::= 6028
-- Deprecated in 6.20 trap 6056 is the replacement
cpqHe3CorrMemReplaceMemModule TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"A correctable memory log entry indicates a memory module needs
to be replaced.
The errors have been corrected, but the memory module should be
replaced. The error information is reported in the variable
cpqHeCorrMemErrDesc."
--#TYPE "Corr Mem Errors Require a Replacement Memory Module. (6029)"
--#SUMMARY "Correctable memory errs require a replacement memory module."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6029
-- Deprecated in 5.10
cpqHe3FltTolPowerSupplyDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay }
DESCRIPTION
"The fault tolerant power supply condition has been set
to degraded for the specified chassis and bay location."
--#TYPE "Power Supply Degraded (6030)"
--#SUMMARY "The Power Supply Degraded on Chassis %d, Bay %d."
--#ARGUMENTS {2, 3}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6030
-- Deprecated in 5.10
cpqHe3FltTolPowerSupplyFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay }
DESCRIPTION
"The fault tolerant power supply condition has been set
to failed for the specified chassis and bay location."
--#TYPE "Power Supply Failed (6031)"
--#SUMMARY "The Power Supply Failed on Chassis %d, Bay %d."
--#ARGUMENTS {2, 3}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
::= 6031
cpqHe3FltTolPowerRedundancyLost TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis }
DESCRIPTION
"The Fault Tolerant Power Supplies have lost redundancy for
the specified chassis."
--#TYPE "Power Redundancy Lost (6032)"
--#SUMMARY "The power supplies are no longer redundant on chassis %d."
--#ARGUMENTS {2}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY POWER
--#ACTION "Check the system power supplies for a failure."
::= 6032
cpqHe3FltTolPowerSupplyInserted TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay }
DESCRIPTION
"A Fault Tolerant Power Supply has been inserted into the
specified chassis and bay location."
--#TYPE "Power Supply Inserted (6033)"
--#SUMMARY "The power supply has been inserted on chassis %d, bay %d."
--#ARGUMENTS {2, 3}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY POWER
--#LIFECYCLE
::= 6033
cpqHe3FltTolPowerSupplyRemoved TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay }
DESCRIPTION
"A Fault Tolerant Power Supply has been removed from the
specified chassis and bay location."
--#TYPE "Power Supply Removed (6034)"
--#SUMMARY "The power supply has been removed on chassis %d, bay %d."
--#ARGUMENTS {2, 3}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY POWER
--#LIFECYCLE
::= 6034
cpqHe3FltTolFanDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis,
cpqHeFltTolFanIndex }
DESCRIPTION
"The Fault Tolerant Fan condition has been set to degraded
for the specified chassis and fan."
--#TYPE "Fan Degraded (6035)"
--#SUMMARY "The fan degraded on chassis %d, fan %d."
--#ARGUMENTS {2, 3}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY FAN
--#ACTION "Replace the failing fan."
::= 6035
cpqHe3FltTolFanFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis,
cpqHeFltTolFanIndex }
DESCRIPTION
"The Fault Tolerant Fan condition has been set to failed
for the specified chassis and fan."
--#TYPE "Fan Failed (6036)"
--#SUMMARY "The fan failed on chassis %d, fan %d."
--#ARGUMENTS {2, 3}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY FAN
--#ACTION "Replace the failed fan."
::= 6036
cpqHe3FltTolFanRedundancyLost TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis }
DESCRIPTION
"The Fault Tolerant Fans have lost redundancy for the
specified chassis."
--#TYPE "Fan Redundancy Lost (6037)"
--#SUMMARY "The fans are no longer redundant on chassis %d."
--#ARGUMENTS {2}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY FAN
--#ACTION "Check the system fans for a failure."
::= 6037
cpqHe3FltTolFanInserted TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis,
cpqHeFltTolFanIndex }
DESCRIPTION
"A Fault Tolerant Fan has been inserted into the specified
chassis and fan location."
--#TYPE "Fan Inserted (6038)"
--#SUMMARY "The fan has been inserted on chassis %d, fan %d."
--#ARGUMENTS {2, 3}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY FAN
--#LIFECYCLE
::= 6038
cpqHe3FltTolFanRemoved TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis,
cpqHeFltTolFanIndex }
DESCRIPTION
"A Fault Tolerant Fan has been removed from the specified
chassis and fan location."
--#TYPE "Fan Removed (6039)"
--#SUMMARY "The fan has been removed on chassis %d, fan %d."
--#ARGUMENTS {2, 3}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY FAN
--#LIFECYCLE
::= 6039
cpqHe3TemperatureFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeTemperatureChassis,
cpqHeTemperatureLocale }
DESCRIPTION
"The temperature status has been set to failed in the
specified chassis and location.
The system will be shutdown due to this condition."
--#TYPE "Thermal Failure (6040)"
--#SUMMARY "Temperature exceeded on chassis %d, location %d."
--#ARGUMENTS {2, 3}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY THERMAL
--#ACTION "Check the system for hardware failures and verify the environment is properly cooled."
::= 6040
cpqHe3TemperatureDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction,
cpqHeTemperatureChassis, cpqHeTemperatureLocale }
DESCRIPTION
"The temperature status has been set to degraded in the
specified chassis and location.
The server's temperature is outside of the normal operating
range. The server will be shutdown if the
cpqHeThermalDegradedAction variable is set to shutdown(3)."
--#TYPE "Thermal Status Degraded (6041)"
--#SUMMARY "Temperature out of range on chassis %d, location %d. Shutdown may occur."
--#ARGUMENTS {3, 4}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY THERMAL
--#ACTION "Check the system for hardware failures and verify the environment is properly cooled."
::= 6041
cpqHe3TemperatureOk TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeTemperatureChassis,
cpqHeTemperatureLocale }
DESCRIPTION
"The temperature status has been set to ok in the
specified chassis and location.
The server's temperature has returned to the normal operating
range."
--#TYPE "Thermal Status OK (6042)"
--#SUMMARY "Temperature normal on chassis %d, location %d."
--#ARGUMENTS {2, 3}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY THERMAL
::= 6042
cpqHe3PowerConverterDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis,
cpqHePwrConvSlot, cpqHePwrConvSocket }
DESCRIPTION
"The DC-DC Power Converter condition has been set to degraded
for the specified chassis, slot and socket."
--#TYPE "Power Converter Degraded (6043)"
--#SUMMARY "The power converter degraded on chassis %d, slot %d, socket %d."
--#ARGUMENTS {2, 3, 4}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Check for a failing power converter or for a failed power converter in a redundant pair. Replace the power converter."
::= 6043
cpqHe3PowerConverterFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis,
cpqHePwrConvSlot, cpqHePwrConvSocket }
DESCRIPTION
"The DC-DC Power Converter condition has been set to failed
for the specified chassis, slot and socket."
--#TYPE "Power Converter Failed (6044)"
--#SUMMARY "The power converter failed on chassis %d, slot %d, socket %d."
--#ARGUMENTS {2, 3, 4}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Replace the failed power converter."
::= 6044
cpqHe3PowerConverterRedundancyLost TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis }
DESCRIPTION
"The DC-DC Power Converters have lost redundancy for the
specified chassis."
--#TYPE "Power Converter Redundancy Lost (6045)"
--#SUMMARY "The power converters are no longer redundant on chassis %d."
--#ARGUMENTS {2}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Check the power converters in the system for a failure in a redundant pair. Replace the power converter."
::= 6045
cpqHe3CacheAccelParityError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"A cache accelerator parity error indicates a cache module
needs to be replaced.
The error information is reported in the variable
cpqHeEventLogErrorDesc."
--#TYPE "Cache Accel Parity Errors may require a module. (6046)"
--#SUMMARY "Cache accelerator errors may require a replacement module."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Refer to the Integrated Management Log for details on the error. Replace the cache module."
::= 6046
cpqHeResilientMemOnlineSpareEngaged TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"Advanced Memory Protection Online Spare Engaged.
The Advanced Memory Protection subsystem has detected a memory
fault. The Online Spare Memory has been activated.
User Action: Schedule server down-time to replace the faulty
memory."
--#TYPE "Online Spare Memory Engaged (6047)"
--#SUMMARY "The Advanced Memory Protection subsystem has engaged the online spare memory."
--#ARGUMENTS {}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Schedule server down-time to replace the faulty memory."
::= 6047
-- New for rev 5.10.
cpqHe4FltTolPowerSupplyOk TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus,
cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber,
cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev,
cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId }
DESCRIPTION
"The fault tolerant power supply condition has been set back
to the OK state for the specified chassis and bay location."
--#TYPE "Power Supply OK (6048)"
--#SUMMARY "The power supply is ok on bay %d, status %d, model %s, serial number %s, firmware %s."
--#ARGUMENTS {3, 4, 5, 6, 8}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY POWER
::= 6048
-- New for rev 5.10. Deprecated cpqHe3FltTolPowerSupplyDegraded
cpqHe4FltTolPowerSupplyDegraded TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus,
cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber,
cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev,
cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId }
DESCRIPTION
"The fault tolerant power supply condition has been set
to degraded for the specified chassis and bay location."
--#TYPE "Power Supply Degraded (6049)"
--#SUMMARY "The power supply is degraded on chassis %d, bay %d, status %d, model %s, serial number %s, firmware %s."
--#ARGUMENTS {2, 3, 4, 5, 6, 8}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Replace the failing power supply."
::= 6049
-- New for rev 5.10. Deprecated cpqHe3FltTolPowerSupplyFailed
cpqHe4FltTolPowerSupplyFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus,
cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber,
cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev,
cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId }
DESCRIPTION
"The fault tolerant power supply condition has been set
to failed for the specified chassis and bay location."
--#TYPE "Power Supply Failed (6050)"
--#SUMMARY "The power supply is failed on chassis %d, bay %d, status %d, model %s, serial number %s, firmware %s."
--#ARGUMENTS {2, 3, 4, 5, 6, 8}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Replace the failed power supply."
::= 6050
-- New for rev 5.40.
cpqHeResilientMemMirroredMemoryEngaged TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"Advanced Memory Protection Mirrored Memory Engaged.
The Advanced Memory Protection subsystem has detected a memory
fault. Mirrored Memory has been activated.
User Action: Replace the faulty memory."
--#TYPE "Mirrored Memory Engaged (6051)"
--#SUMMARY "The Advanced Memory Protection subsystem has engaged the online spare memory."
--#ARGUMENTS {}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Replace the faulty memory."
::= 6051
-- New for rev 5.50.
cpqHeResilientAdvancedECCMemoryEngaged TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"Advanced Memory Protection Advanced ECC Memory Engaged.
The Advanced Memory Protection subsystem has detected a memory
fault. Advanced ECC has been activated.
User Action: Replace the faulty memory."
--#TYPE "Advanced ECC Memory Engaged (6052)"
--#SUMMARY "The Advanced Memory Protection subsystem has engaged the advanced ECC memory."
--#ARGUMENTS {}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Replace the faulty memory."
::= 6052
-- New traps added for 6.20.
cpqHeResilientMemXorMemoryEngaged TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"Advanced Memory Protection XOR Engine Memory Engaged.
The Advanced Memory Protection subsystem has detected a memory
fault. The XOR engine has been activated.
User Action: Replace the faulty memory."
--#TYPE "Advanced XOR Memory Engaged (6053)"
--#SUMMARY "The Advanced Memory Protection subsystem has engaged the XOR memory."
--#ARGUMENTS {}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Replace the faulty memory."
::= 6053
cpqHe3FltTolPowerRedundancyRestored TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis }
DESCRIPTION
"The Fault Tolerant Power Supplies have returned to a redundant
state for the specified chassis."
--#TYPE "Power Redundancy Restored (6054)"
--#SUMMARY "The power supplies are now redundant on chassis %d."
--#ARGUMENTS {2}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY POWER
::= 6054
cpqHe3FltTolFanRedundancyRestored TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis }
DESCRIPTION
"The Fault Tolerant Fans have returned to a redundant state for
the specified chassis."
--#TYPE "Fan Redundancy Restored (6055)"
--#SUMMARY "The fans are now redundant on chassis %d."
--#ARGUMENTS {2}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY FAN
::= 6055
-- Updated for 6.20 trap replaced 6029
-- deprecateed in 8.20 replaced with 6064
cpqHe4CorrMemReplaceMemModule TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardIndex,
cpqHeResMemModuleIndex, cpqHeResMemModuleSparePartNo,
cpqSiMemModuleSize, cpqSiServerSystemId }
DESCRIPTION
"Corrected Memory Errors Detected
The errors have been corrected, but the memory module should be
replaced."
--#TYPE "Corrected Memory Errors - Replace Memory Module. (6056)"
--#SUMMARY "Correctable memory errors require a replacement of the memory module in slot %d, socket %d."
--#ARGUMENTS {2, 3}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6056
-- deprecateed in 8.20 replaced with 6065
cpqHeResMemBoardRemoved TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex }
DESCRIPTION
"Memory board or cartridge removed.
An Advanced Memory Protection sub-system board or cartridge has
been removed from the system.
User Action: Insure the board or cartridge has memory correctly
installed and re-insert the memory board or cartridge back into
the system."
--#TYPE "Memory Board or Cartridge Removed (6057)"
--#SUMMARY "Memory Board or Cartridge Removed from Slot %d."
--#ARGUMENTS {2}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6057
-- deprecateed in 8.20 replaced with 6066
cpqHeResMemBoardInserted TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex }
DESCRIPTION
"Memory board or cartridge inserted.
An Advanced Memory Protection sub-system board or cartridge has
been inserted into the system.
User Action: None."
--#TYPE "Memory Board or Cartridge Inserted (6058)"
--#SUMMARY "Memory Board or Cartridge Inserted into Slot %d."
--#ARGUMENTS {2}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
::= 6058
-- deprecateed in 8.20 replaced with 6067
cpqHeResMemBoardBusError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex }
DESCRIPTION
"Memory board or cartridge bus error detected.
An Advanced Memory Protection sub-system board or cartridge
bus error has been detected.
User Action: Replace the indicated board or cartridge."
--#TYPE "Memory Board or Cartridge Bus Error Detected (6059)"
--#SUMMARY "Memory Board or Cartridge Bus Error Detected in Slot %d."
--#ARGUMENTS {2}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
::= 6059
-- The follow trap 6060 is supported only in Tru64 at this time.
-- This trap is not currently supported for ProLiants.
cpqHeEventOccurred TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeEventLogEntryNumber,
cpqHeEventLogEntrySeverity, cpqHeEventLogUpdateTime,
cpqHeEventLogErrorDesc }
DESCRIPTION
"An event has occurred.
User Action: None."
--#TYPE "Event has occurred (6060)"
--#SUMMARY "Event %s has occurred, severity %d "
--#ARGUMENTS {5,3}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY NONE
::= 6060
cpqHeManagementProcInReset TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The Management processor is currently in reset
The management processor is currently in the process of being reset
because of a firmware update or some other event.
User action: None"
--#TYPE "Management processor is currently in reset. (6061)"
--#SUMMARY "The management processor is in the process of being reset."
--#ARGUMENTS {}
--#SEVERITY MINOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR
::= 6061
cpqHeManagementProcReady TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The Management processor is ready
The management processor has successfully reset and is now available
again.
User action: None"
--#TYPE "Management processor is ready. (6062)"
--#SUMMARY "The management processor is ready after a successful reset."
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR
::= 6062
cpqHeManagementProcFailedReset TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"The Management processor failed reset
The management processor was not successfully reset and is not
operational.
User action: Reset the management procesessor again or re-flash
the management processor firmware."
--#TYPE "Management processor failed reset. (6063)"
--#SUMMARY "The management processor failed reset."
--#ARGUMENTS {}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY MANAGEMENTPROCESSOR
--#ACTION "Reset the management procesessor again or re-flash the management processor firmware."
::= 6063
-- Updated for 8.20 trap replaced 6056
cpqHe5CorrMemReplaceMemModule TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardNum,
cpqHeResMem2CpuNum, cpqHeResMem2RiserNum,
cpqHeResMem2ModuleNum, cpqHeResMem2ModulePartNo,
cpqHeResMem2ModuleSize, cpqSiServerSystemId }
DESCRIPTION
"Corrected \ uncorrected Memory Errors Detected
The errors have been corrected, but the memory module should be
replaced. Value 0 for CPU means memory is not Processor based"
--#TYPE "Corrected \ uncorrectable Memory Errors - Replace Memory Module. (6064)"
--#SUMMARY "Correctable \ uncorrectable memory errors require a replacement of the memory module in slot %d, cpu %d, riser %d, socket %d."
--#ARGUMENTS {2, 3, 4, 5}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Replace the failing memory module."
::= 6064
-- Updated for 8.20 trap replaced 6057
cpqHe5ResMemBoardRemoved TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum }
DESCRIPTION
"Memory board or cartridge or riser removed.
An Advanced Memory Protection sub-system board or cartridge or riser has
been removed from the system. Value 0 for CPU means memory is not processor based.
User Action: Insure the board or cartridge or riser has memory correctly
installed and re-insert the memory board or cartridge or CPU back into
the system."
--#TYPE "Memory Board or Cartridge or Riser Removed (6065)"
--#SUMMARY "Memory board or cartridge or riser removed from slot %d, CPU %d, riser %d."
--#ARGUMENTS {2,3,4}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#LIFECYCLE
::= 6065
-- Updated for 8.20 trap replaced 6058
cpqHe5ResMemBoardInserted TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum }
DESCRIPTION
"Memory board or cartridge or riser inserted.
An Advanced Memory Protection sub-system board or cartridge or riser
Has been inserted into the system. Value 0 for CPU means memory is not processor based.
User Action: None."
--#TYPE "Memory Board or Cartridge Inserted (6066)"
--#SUMMARY "Memory board or cartridge inserted into slot %d, CPU %d, riser %d."
--#ARGUMENTS {2,3,4}
--#SEVERITY INFORMATIONAL
--#TIMEINDEX 99
--#STATE OPERATIONAL
--#SIMPLE_SEVERITY OK
--#HWSTATUS_CATEGORY MEMORY
--#LIFECYCLE
::= 6066
-- Updated for 8.20 trap replaced 6059
cpqHe5ResMemBoardBusError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum }
DESCRIPTION
"Memory board or cartridge or Riser bus error detected.
An Advanced Memory Protection sub-system board or cartridge or Riser
bus error has been detected. Value 0 for CPU means memory is not processor based.
User Action: Replace the indicated board or cartridge or Riser."
--#TYPE "Memory Board or Cartridge or Riser Bus Error Detected (6067)"
--#SUMMARY "Memory board or cartridge bus error detected in slot %d, CPU %d, riser %d."
--#ARGUMENTS {2,3,4}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Replace the indicated board, cartridge, or riser."
::= 6067
-- Added for 8.20
cpqHeResilientMemLockStepMemoryEngaged TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags }
DESCRIPTION
"Advanced Memory Protection LockStep Engine Memory Engaged.
The Advanced Memory Protection subsystem has detected a memory
fault. The LockStep engine has been activated.
User Action: Replace the faulty memory."
--#TYPE "Advanced LockStep Memory Engaged (6068)"
--#SUMMARY "The Advanced Memory Protection subsystem has engaged the LockStep memory."
--#ARGUMENTS {}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY MEMORY
--#ACTION "Replace the faulty memory."
::= 6068
-- New for rev 8.30.
cpqHe4FltTolPowerSupplyACpowerloss TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis,
cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus,
cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber,
cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev,
cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId }
DESCRIPTION
"The fault tolerant power supply AC power loss for the specified chassis and bay location."
--#TYPE "Power Supply AC Power Loss (6069)"
--#SUMMARY "The power supply AC power loss in bay %d, status %d, model %s, serial number %s, firmware %s."
--#ARGUMENTS {3, 4, 5, 6, 8}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#SIMPLE_SEVERITY CRITICAL
--#HWSTATUS_CATEGORY POWER
--#ACTION "Check the power source for the specified power supply."
::= 6069
-- New for rev 10.0.
cpqHeSysBatteryFailed TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical,
cpqHeSysBatteryChassis, cpqHeSysBatteryIndex,
cpqHeSysBatteryStatus, cpqHeSysBatteryModel,
cpqHeSysBatterySerialNumber, cpqHeSysBatterySparePartNum }
DESCRIPTION
"The system battery condition has been set to failed
for the specified chassis and index location."
--#TYPE "System Battery Failed (6070)"
--#SUMMARY "The Battery Has Failed on Chassis %d, Index %d, Status %d, Model %s, Serial Num %s, Spare Part %s."
--#ARGUMENTS {3, 4, 5, 6, 7, 8}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY BATTERY
--#ACTION "Replace the failed battery."
::= 6070
cpqHeSysBatteryRemoved TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical,
cpqHeSysBatteryChassis, cpqHeSysBatteryIndex }
DESCRIPTION
"The system battery condition has removed
for the specified chassis and index location."
--#TYPE "System Battery Removed (6071)"
--#SUMMARY "The Battery Has Been Removed on Chassis %d, Index %d."
--#ARGUMENTS {3, 4 }
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY BATTERY
--#LIFECYCLE
::= 6071
-- New for rev 10.20.
cpqHeSysPwrAllocationNotOptimized TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical}
DESCRIPTION
"Error in setting server power throttle. Server enclosure power request has increased. Server power allocation is not optimized."
--#TYPE "Power Throttle Write Failed (6072)"
--#SUMMARY "Server power allocation could not be optimized. Server Enclosure power request has increased."
--#ARGUMENTS {}
--#SEVERITY MAJOR
--#TIMEINDEX 99
--#STATE DEGRADED
--#SIMPLE_SEVERITY MAJOR
--#HWSTATUS_CATEGORY POWER
--#ACTION "Refer to the Integrated Management Log on the iLO for details. Power down & reinsert the server blade. If the error persists, please contact your support representative."
::= 6072
cpqHeSysPwrOnDenied TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical,
cpqHeSysBoardFruStatus }
DESCRIPTION
"One of the Field Replacement Units(FRU) is not allowing the system to power on."
--#TYPE "FRU device read error(6073)"
--#SUMMARY "FRU device read error, status %s."
--#ARGUMENTS {3}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE DEGRADED
--#HWSTATUS_CATEGORY POWER
--#ACTION "Refer to the Integrated Management Log for details. In the event of a baseboard FRU read error: a) Remove and reinsert the server blade and attempt to power on the system. In the event of a mezzanine card read error: a) Remove and reseat the failing mezzanine card and attempt to power on the system. b) Remove the failing mezzanine card and attempt to power on the system. If the error persists, please contact your support representative."
::= 6073
-- End for rev 10.20.
-- New for rev 10.30.
cpqHePowerFailureError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical,
cpqHePowerFailureIndex, cpqHePowerFailureType, cpqHePowerFailureArea,
cpqHePowerFailureGroupString, cpqHePowerFailureDeviceBitMap,cpqHePowerFailureRepairSteps}
DESCRIPTION
"This trap signifies a device connected to or embedded on the system board has an error."
--#TYPE "Server Critical Power Failure (6074)"
--#SUMMARY "A device connected to or embedded on the system board has an error. Service Information: Failure Type:%d, Area:%d, Group:%s."
--#ARGUMENTS {4, 5, 6}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#HWSTATUS_CATEGORY POWER
--#SIMPLE_SEVERITY CRITICAL
--#ACTION "Refer to the Integrated Management Log for details. Try the following steps until the error no longer occurs: a) Remove the AC power, and then restore AC power. Attempt to boot the server. (b) Remove and then reinstall the failed device. Attempt to boot the server. (c) Swap the failed device with a known good device and attempt to boot the server. (d) If the error persists, please contact your support representative."
::= 6074
cpqHeInterlockFailureError TRAP-TYPE
ENTERPRISE compaq
VARIABLES { sysName, cpqHoTrapFlags, cpqHoGUIDCanonical,
cpqHeInterlockFailureIndex, cpqHeInterlockFailureType, cpqHeInterlockFailureDeviceName }
DESCRIPTION
"This trap signifies a device missing or improperly seated on the system board."
--#TYPE "Server Critical Interlock Failure (6075)"
--#SUMMARY "There is a device missing or improperly seated on the system board. Service Information: Failure Type:%d, Missing or improperly seated device (%s)."
--#ARGUMENTS {4, 5}
--#SEVERITY CRITICAL
--#TIMEINDEX 99
--#STATE NONOPERATIONAL
--#HWSTATUS_CATEGORY POWER
--#SIMPLE_SEVERITY CRITICAL
--#ACTION "Refer to the Integrated Management Log for details. Remove and then reinstall the failed device. Attempt to boot the server. If the error persists, please contact your support representative.
::= 6075
-- End for rev 10.30.
END
|