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
|
-- *****************************************************************
-- SUPERMICRO-SSM.mib: Super Micro Enterprise Structure of Management Information
--
-- December 21 2017, Software Dept.
--
-- Copyright (c) 1993-2019 Super Micro Computer, Inc.
-- All rights reserved.
--
-- *****************************************************************
SUPERMICRO-SD5-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
smSSMInfo
FROM SUPERMICRO-SMI;
smSuperDoctor5MIB MODULE-IDENTITY
LAST-UPDATED "201307020000Z"
ORGANIZATION "Super Micro Computer Inc."
CONTACT-INFO
" Software Dept.
Postal: 980 Rock Avenue
San Jose, CA 95131
USA
Tel: +1 408 503 8000
E-mail: SoftLab@supermicro.com"
DESCRIPTION
"MIB module for sd5 information"
::= { smSSMInfo 1 }
-- sd5
sd5Table OBJECT-TYPE
SYNTAX SEQUENCE OF SD5Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of sd5 entries."
::= { smSuperDoctor5MIB 1 }
sd5Entry OBJECT-TYPE
SYNTAX SD5Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the sd5 table.
Entries cannot be created or deleted via SNMP operations."
INDEX { sd5Idx }
::= { sd5Table 1 }
SD5Entry ::=
SEQUENCE {
sd5Idx Integer32,
sd5Version DisplayString,
sd5MIBVersion DisplayString
}
sd5Idx OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique value identifies this sd5."
::= { sd5Entry 1 }
sd5Version OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the sd5."
::= { sd5Entry 2 }
sd5MIBVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MIB version of the sd5."
::= { sd5Entry 3 }
-- cpu
cpuTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of processor entries."
::= { smSuperDoctor5MIB 2 }
cpuEntry OBJECT-TYPE
SYNTAX CpuEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the processor table.
Entries cannot be created or deleted via SNMP operations."
INDEX { cpuIndex }
::= { cpuTable 1 }
CpuEntry ::=
SEQUENCE {
cpuIndex DisplayString,
cpuName DisplayString,
cpuDescription DisplayString,
cpuManufacturer DisplayString,
cpuDeviceStatus Integer32,
cpuMaxSpeed DisplayString,
cpuCurrentSpeed DisplayString,
cpuLoadingPercentage DisplayString,
cpuCoreEnabled Integer32,
cpuCoreCount Integer32,
cpuThreadCount Integer32,
cpuSocketDesignation DisplayString,
cpuDeviceVersion DisplayString,
cpuDeviceID DisplayString,
cpuID DisplayString
}
cpuIndex OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique value which identifies this processor."
::= { cpuEntry 1 }
cpuName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the processor."
::= { cpuEntry 2 }
cpuDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the processor."
::= { cpuEntry 3 }
cpuManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer of the processor."
::= { cpuEntry 4 }
cpuDeviceStatus OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the processor.
The status depends on the cpu failure check via BIOS.
0: OK
2: Critical "
::= { cpuEntry 5 }
cpuMaxSpeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum speed (MHz) of the processor."
::= { cpuEntry 6 }
cpuCurrentSpeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed (MHz) of the processor."
::= { cpuEntry 7 }
cpuLoadingPercentage OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The loading percentage of the processor."
::= { cpuEntry 9 }
cpuCoreEnabled OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The core enabled count of the processor."
::= { cpuEntry 10 }
cpuCoreCount OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The core count of the processor."
::= { cpuEntry 11 }
cpuThreadCount OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The thread count of the processor."
::= { cpuEntry 12 }
cpuSocketDesignation OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The socket designation of the processor."
::= { cpuEntry 14 }
cpuDeviceVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device version of the processor."
::= { cpuEntry 18 }
cpuDeviceID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device ID of the processor."
::= { cpuEntry 20 }
cpuID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the processor."
::= { cpuEntry 21 }
-- memory
memTable OBJECT-TYPE
SYNTAX SEQUENCE OF MemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of physical memory entries."
::= { smSuperDoctor5MIB 3 }
memEntry OBJECT-TYPE
SYNTAX MemEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the physical memory table.
Entries cannot be created or deleted via SNMP operations."
INDEX { memTag }
::= { memTable 1 }
MemEntry ::=
SEQUENCE {
memTag DisplayString,
memDescription DisplayString,
memDeviceStatus Integer32,
memLabeledBank DisplayString,
memDeviceLocator DisplayString,
memModel DisplayString,
memManufacturer DisplayString,
memPartNumber DisplayString,
memSerialNumber DisplayString,
memCapacity Integer32,
memDataWidth DisplayString,
memTotalWidth DisplayString,
memErrorCount Integer32,
memECCErrorCount Integer32,
memUECCErrorCount Integer32
}
memTag OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The tag of the physical memory. The unique value identifies this physical memory."
::= { memEntry 1 }
memDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the physical memory."
::= { memEntry 2 }
memDeviceStatus OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the physical memory.
The status depends on the ECC check result on the physical memory.
0: OK
2: Critical "
::= { memEntry 3 }
memLabeledBank OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The labeled bank of the physical memory."
::= { memEntry 4 }
memDeviceLocator OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device locator of the physical memory."
::= { memEntry 5 }
memModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model name of the physical memory."
::= { memEntry 7 }
memManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer's name of the physical memory."
::= { memEntry 8 }
memPartNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The part number of the physical memory."
::= { memEntry 9 }
memSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the physical memory."
::= { memEntry 10 }
memCapacity OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capacity of the physical memory. (Unit: MB)"
::= { memEntry 11 }
memDataWidth OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The data width of the physical memory. (Unit: bit)"
::= { memEntry 12 }
memTotalWidth OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total width of the physical memory. (Unit: bit)"
::= { memEntry 13 }
memErrorCount OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The error count of the physical memory.
It's the summary of the ECC error count and UECC error count."
::= { memEntry 15 }
memECCErrorCount OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ECC error count of the physical memory."
::= { memEntry 16 }
memUECCErrorCount OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UECC error count of the physical memory."
::= { memEntry 17 }
-- disk
diskTable OBJECT-TYPE
SYNTAX SEQUENCE OF DiskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of physical disk entries."
::= { smSuperDoctor5MIB 4 }
diskEntry OBJECT-TYPE
SYNTAX DiskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the physical disk table.
Entries cannot be created or deleted via SNMP operations."
INDEX { diskName }
::= { diskTable 1 }
DiskEntry ::=
SEQUENCE {
diskSerialNumber DisplayString,
diskName DisplayString,
diskVendor DisplayString,
diskSmartStatus Integer32,
diskModel DisplayString,
diskSize Integer32,
diskMediaType DisplayString,
diskInterfaceType DisplayString,
diskController DisplayString,
diskSlotID DisplayString
}
diskSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the disk."
::= { diskEntry 1 }
diskName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the disk. The unique value identifies this disk."
::= { diskEntry 2 }
diskVendor OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The vendor name of the disk."
::= { diskEntry 3 }
diskSmartStatus OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the disk.
The status depends on the SMART check result on the disk.
0: OK
2: Critical "
::= { diskEntry 4 }
diskModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model of the disk."
::= { diskEntry 5 }
diskSize OBJECT-TYPE
SYNTAX Integer32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the disk. (Unit: MB)"
::= { diskEntry 6 }
diskMediaType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The media type of the disk includes
External hard disk media
Removable media other than floppy
Fixed hard disk media and Unknown format"
::= { diskEntry 8 }
diskInterfaceType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk interface types includes IDE, HDC, USB, and SCSI."
::= { diskEntry 9 }
diskController OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The controller name of the disk."
::= { diskEntry 10 }
diskSlotID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Slot ID of the disk."
::= { diskEntry 11 }
-- system bios
sysBIOSTable OBJECT-TYPE
SYNTAX SEQUENCE OF SysBIOSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of System BIOS entries."
::= { smSuperDoctor5MIB 5 }
sysBIOSEntry OBJECT-TYPE
SYNTAX SysBIOSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the System BIOS table.
Entries cannot be created or deleted via SNMP operations."
INDEX { sysBIOSIndex }
::= { sysBIOSTable 1 }
SysBIOSEntry ::=
SEQUENCE {
sysBIOSIndex Integer32,
sysBIOSReleaseDate DisplayString,
sysBIOSVersion DisplayString,
sysBIOSManufacturer DisplayString
}
sysBIOSIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique value identifies this BIOS."
::= { sysBIOSEntry 1 }
sysBIOSReleaseDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The release date of BIOS."
::= { sysBIOSEntry 7 }
sysBIOSVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of BIOS."
::= { sysBIOSEntry 8 }
sysBIOSManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer's name of BIOS."
::= { sysBIOSEntry 11 }
-- baseboard
mbTable OBJECT-TYPE
SYNTAX SEQUENCE OF MBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of baseboard entries."
::= { smSuperDoctor5MIB 6 }
mbEntry OBJECT-TYPE
SYNTAX MBEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the baseboard table.
Entries cannot be created or deleted via SNMP operations."
INDEX { mbIndex }
::= { mbTable 1 }
MBEntry ::=
SEQUENCE {
mbIndex Integer32,
mbManufacturer DisplayString,
mbProductName DisplayString,
mbVersionName DisplayString,
mbAssetTag DisplayString,
mbSerialNumber DisplayString
}
mbIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique value identifies this baseboard."
::= { mbEntry 1 }
mbManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer's name of the baseboard."
::= { mbEntry 10 }
mbProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product name of the baseboard."
::= { mbEntry 11 }
mbVersionName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the baseboard."
::= { mbEntry 12 }
mbAssetTag OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The asset tag of the baseboard."
::= { mbEntry 15 }
mbSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the baseboard."
::= { mbEntry 16 }
-- operation system
osTable OBJECT-TYPE
SYNTAX SEQUENCE OF OSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of operation system entries."
::= { smSuperDoctor5MIB 7 }
osEntry OBJECT-TYPE
SYNTAX OSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the operation system table.
Entries cannot be created or deleted via SNMP operations."
INDEX { osIndex }
::= { osTable 1 }
OSEntry ::=
SEQUENCE {
osIndex Integer32,
osName DisplayString,
osVersion DisplayString,
osManufacturer DisplayString,
osSerialNumber DisplayString,
osCSDVersion DisplayString
}
osIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique value identifies this Operation System."
::= { osEntry 1 }
osName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the Operation System."
::= { osEntry 6 }
osVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The version of the operation system."
::= { osEntry 7 }
osManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacturer's name of the Operation System."
::= { osEntry 8 }
osSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the operation system."
::= { osEntry 9 }
osCSDVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { osEntry 10 }
-- dmi event logs
dmiLogTable OBJECT IDENTIFIER ::= { smSuperDoctor5MIB 8 }
ceccLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF CeccLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of operation system entries."
::= { dmiLogTable 1 }
ceccLogEntry OBJECT-TYPE
SYNTAX CeccLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the operation system table.
Entries cannot be created or deleted via SNMP operations."
INDEX { ceccLogIndex }
::= { ceccLogTable 1 }
CeccLogEntry ::=
SEQUENCE {
ceccLogDatetime DisplayString,
ceccLogInfo DisplayString,
ceccLogIndex Integer32
}
ceccLogDatetime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { ceccLogEntry 1 }
ceccLogInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { ceccLogEntry 2 }
ceccLogIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { ceccLogEntry 10 }
ueccLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF UeccLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of operation system entries."
::= { dmiLogTable 2 }
ueccLogEntry OBJECT-TYPE
SYNTAX UeccLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the operation system table.
Entries cannot be created or deleted via SNMP operations."
INDEX { ceccLogIndex }
::= { ueccLogTable 1 }
UeccLogEntry ::=
SEQUENCE {
ueccLogDatetime DisplayString,
ueccLogInfo DisplayString,
ueccLogIndex Integer32
}
ueccLogDatetime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { ueccLogEntry 1 }
ueccLogInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { ueccLogEntry 2 }
ueccLogIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { ueccLogEntry 10 }
postLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF PostLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of operation system entries."
::= { dmiLogTable 8 }
postLogEntry OBJECT-TYPE
SYNTAX PostLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the operation system table.
Entries cannot be created or deleted via SNMP operations."
INDEX { postLogIndex }
::= { postLogTable 1 }
PostLogEntry ::=
SEQUENCE {
postLogDatetime DisplayString,
postLogInfo DisplayString,
postLogIndex Integer32
}
postLogDatetime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { postLogEntry 1 }
postLogInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { postLogEntry 2 }
postLogIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { postLogEntry 10 }
cpuLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF CpuLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of operation system entries."
::= { dmiLogTable 11 }
cpuLogEntry OBJECT-TYPE
SYNTAX CpuLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the operation system table.
Entries cannot be created or deleted via SNMP operations."
INDEX { cpuLogIndex }
::= { cpuLogTable 1 }
CpuLogEntry ::=
SEQUENCE {
cpuLogDatetime DisplayString,
cpuLogInfo DisplayString,
cpuLogIndex Integer32
}
cpuLogDatetime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { cpuLogEntry 1 }
cpuLogInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { cpuLogEntry 2 }
cpuLogIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The CSD version of the operation system."
::= { cpuLogEntry 10 }
-- RAID Controller
raidAdapterTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaidAdapterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of raid controller entries."
::= { smSuperDoctor5MIB 9 }
raidAdapterEntry OBJECT-TYPE
SYNTAX RaidAdapterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raid controller table.
Entries cannot be created or deleted via SNMP operations."
INDEX { raidAdapterIndex }
::= { raidAdapterTable 1 }
RaidAdapterEntry ::=
SEQUENCE {
raidAdapterIndex Integer32,
raidAdapterGroup DisplayString,
raidAdapterId DisplayString,
raidAdapterProductName DisplayString,
raidAdapterSerialNumber DisplayString,
raidAdapterFWPackageBuild DisplayString,
raidAdapterFWVersion DisplayString,
raidAdapterBIOSVersion DisplayString,
raidAdapterVendorId DisplayString,
raidAdapterDeviceId DisplayString,
raidAdapterSubVendorId DisplayString,
raidAdapterSubDeviceId DisplayString,
raidIsBBUAbsent DisplayString,
raidIsBBUAbsentIgnored DisplayString,
raidAdapterAllinoneStatus Integer32,
raidAdapterAllinoneMsg DisplayString
}
raidAdapterIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Raid controller index. The unique value which identifies this raid controller."
::= { raidAdapterEntry 1 }
raidAdapterGroup OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group of the raid controller. Values:
LSI-MegaRAID
LSI-Fusion-MPT
"
::= { raidAdapterEntry 2 }
raidAdapterId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the raid controller. The id is unique in one adapter group."
::= { raidAdapterEntry 3 }
raidAdapterProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product name of the raid controller."
::= { raidAdapterEntry 4 }
raidAdapterSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the raid controller."
::= { raidAdapterEntry 5 }
raidAdapterFWPackageBuild OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The build number of the firmware package of the raid controller."
::= { raidAdapterEntry 6 }
raidAdapterFWVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware version of the raid controller."
::= { raidAdapterEntry 7 }
raidAdapterBIOSVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bios version of the raid controller."
::= { raidAdapterEntry 8 }
raidAdapterVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PCI vendor id of the raid controller."
::= { raidAdapterEntry 9 }
raidAdapterDeviceId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PCI device id of the raid controller."
::= { raidAdapterEntry 10 }
raidAdapterSubVendorId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PCI sub-vendor id of the raid controller."
::= { raidAdapterEntry 11 }
raidAdapterSubDeviceId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PCI sub-device id of the raid controller."
::= { raidAdapterEntry 12 }
raidIsBBUAbsent OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Is the BBU absent or present?
Values: Absent, Present."
::= { raidAdapterEntry 13 }
raidIsBBUAbsentIgnored OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the raid controller ignore the absent BBU?
Values: YES, NO.
If the value is No then the absent BBU will affect the all-in-one status of the raid controller."
::= { raidAdapterEntry 14 }
raidAdapterAllinoneStatus OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the raid controller. Values:
0: OK
1: Warning
2: Critical
"
::= { raidAdapterEntry 15 }
raidAdapterAllinoneMsg OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status message of the raid controller."
::= { raidAdapterEntry 16 }
-- RAID BBU
raidBBUTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaidBBUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of raid BBU entries."
::= { smSuperDoctor5MIB 10 }
raidBBUEntry OBJECT-TYPE
SYNTAX RaidBBUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the raid BBU table.
Entries cannot be created or deleted via SNMP operations."
INDEX { raidBBUIndex }
::= { raidBBUTable 1 }
RaidBBUEntry ::=
SEQUENCE {
raidBBUIndex Integer32,
raidAdapterGroup-BBU DisplayString,
raidAdapterId-BBU DisplayString,
raidBBUStatus DisplayString,
raidBBUAllinoneStatus Integer32,
raidBBUAllinoneMsg DisplayString
}
raidBBUIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Raid BBU index.
The unique value which identifies this raid BBU."
::= { raidBBUEntry 1 }
raidAdapterGroup-BBU OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group of the raid controller. Values:
LSI-MegaRAID
LSI-Fusion-MPT
"
::= { raidBBUEntry 2 }
raidAdapterId-BBU OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the raid controller. The id is unique in one adapter group."
::= { raidBBUEntry 3 }
raidBBUStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the properties of the BBU.
Values: Passed, Failed."
::= { raidBBUEntry 8 }
raidBBUAllinoneStatus OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the BBU. Values:
0: OK
1: Warning
2: Critical
"
::= { raidBBUEntry 9}
raidBBUAllinoneMsg OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status message of the BBU."
::= { raidBBUEntry 10}
-- RAID VD
raidVDTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaidVDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of virtual drive entries."
::= { smSuperDoctor5MIB 11 }
raidVDEntry OBJECT-TYPE
SYNTAX RaidVDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the virtual drive table.
Entries cannot be created or deleted via SNMP operations."
INDEX { raidVDIndex }
::= { raidVDTable 1 }
RaidVDEntry ::=
SEQUENCE {
raidVDIndex Integer32,
raidAdapterGroup-VD DisplayString,
raidAdapterId-VD DisplayString,
raidDiskGroupId DisplayString,
raidVDId DisplayString,
raidVDTargetId DisplayString,
raidVDName DisplayString,
raidVDRaidLevel DisplayString,
raidVDSize DisplayString,
raidVDMirrorDataSize DisplayString,
raidVDStripSize DisplayString,
raidVDNumDrives DisplayString,
raidVDSpanDepth DisplayString,
raidVDDefaultCachePolicy DisplayString,
raidVDCurrentCachePolicy DisplayString,
raidVDDefaultAccessPolicy DisplayString,
raidVDCurrentAccessPolicy DisplayString,
raidVDDiskCachePolicy DisplayString,
raidVDEncryptionType DisplayString,
raidVDDefaultPSPolicy DisplayString,
raidVDCurrentPSPolicy DisplayString,
raidVDCanSpinUpIn1Min DisplayString,
raidVDSupportT10Power DisplayString,
raidVDSupportsMaxPS DisplayString,
raidVDBadBlocksExist DisplayString,
raidVDCached DisplayString,
raidVDState DisplayString,
raidVDAllinoneStatus Integer32,
raidVDAllinoneMsg DisplayString
}
raidVDIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Raid virtual drive index.
The unique value which identifies this raid virtual drive."
::= { raidVDEntry 1 }
raidAdapterGroup-VD OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group of the raid controller. Values:
LSI-MegaRAID
LSI-Fusion-MPT
"
::= { raidVDEntry 2 }
raidAdapterId-VD OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the raid controller. The id is unique in one adapter group."
::= { raidVDEntry 3 }
raidDiskGroupId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk group id of the virtual drive."
::= { raidVDEntry 4 }
raidVDId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the virtual drive."
::= { raidVDEntry 5 }
raidVDTargetId OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The target id of the virtual drive."
::= { raidVDEntry 6 }
raidVDName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the virtual drive."
::= { raidVDEntry 7 }
raidVDRaidLevel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The raid level of the virtual drive."
::= { raidVDEntry 8 }
raidVDSize OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the virtual drive."
::= { raidVDEntry 9 }
raidVDMirrorDataSize OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mirror data size of the virtual drive."
::= { raidVDEntry 10 }
raidVDStripSize OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The stripe size of the virtual drive."
::= { raidVDEntry 11 }
raidVDNumDrives OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of physical drives of the virtual drive."
::= { raidVDEntry 12 }
raidVDSpanDepth OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The span depth of the virtual drive."
::= { raidVDEntry 13 }
raidVDDefaultCachePolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default cache policy of the virtual drive."
::= { raidVDEntry 14 }
raidVDCurrentCachePolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current cache policy of the virtual drive."
::= { raidVDEntry 15 }
raidVDDefaultAccessPolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default access policy of the virtual drive."
::= { raidVDEntry 16 }
raidVDCurrentAccessPolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current access policy of the virtual drive."
::= { raidVDEntry 17 }
raidVDDiskCachePolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk cache policy of the virtual drive."
::= { raidVDEntry 18 }
raidVDEncryptionType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The encryption type of the virtual drive."
::= { raidVDEntry 19 }
raidVDDefaultPSPolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default power savings policy of the virtual drive."
::= { raidVDEntry 20 }
raidVDCurrentPSPolicy OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The default current savings policy of the virtual drive."
::= { raidVDEntry 21 }
raidVDCanSpinUpIn1Min OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can the physical drive spin up in 1 minute?"
::= { raidVDEntry 22 }
raidVDSupportT10Power OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the VD have drives that support T10 power conditions?"
::= { raidVDEntry 23 }
raidVDSupportsMaxPS OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the VD's IO profile supports MAX power savings with cached writes?"
::= { raidVDEntry 24 }
raidVDBadBlocksExist OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Does the virtual drive have bad blocks?"
::= { raidVDEntry 25 }
raidVDCached OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Is the virtual drive cached?"
::= { raidVDEntry 26 }
raidVDState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the virtual drive. Values:
Offline, Partially-degraded, Degraded, Optimal.
"
::= { raidVDEntry 27 }
raidVDAllinoneStatus OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the virtual drive. Values:
0: OK
1: Warning
2: Critical
"
::= { raidVDEntry 28}
raidVDAllinoneMsg OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status message of the virtual drive."
::= { raidVDEntry 29}
-- RAID PD
raidPDTable OBJECT-TYPE
SYNTAX SEQUENCE OF RaidPDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of physical drive entries."
::= { smSuperDoctor5MIB 12 }
raidPDEntry OBJECT-TYPE
SYNTAX RaidPDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the physical drive table.
Entries cannot be created or deleted via SNMP operations."
INDEX { raidPDIndex }
::= { raidPDTable 1 }
RaidPDEntry ::=
SEQUENCE {
raidPDIndex Integer32,
raidAdapterGroup-PD DisplayString,
raidAdapterId-PD DisplayString,
raidDiskGroupId-PD DisplayString,
raidPDSlotNumber DisplayString,
raidPDFirmwareState DisplayString,
raidPDMediaErrorCount DisplayString,
raidPDOtherErrorCount DisplayString,
raidPDPredFailCount DisplayString,
raidPDLastPredFailEventSeqNo DisplayString,
raidPDRawSize DisplayString,
raidPDDeviceFwLevel DisplayString,
raidPDInquiryData DisplayString,
raidPDDeviceSpeed DisplayString,
raidPDLinkSpeed DisplayString,
raidPDMediaType DisplayString,
raidPDWriteCache DisplayString,
raidPDNCQSetting DisplayString,
raidPDPort0Linkspeed DisplayString,
raidPDPort0Status DisplayString,
raidPDPort1Linkspeed DisplayString,
raidPDPort1Status DisplayString,
raidPDEnclosureDeviceID DisplayString,
raidPDOpProgress DisplayString,
raidPDSpan DisplayString,
raidPDAllinoneStatus Integer32,
raidPDAllinoneMsg DisplayString,
raidPDModel DisplayString,
raidPDSerialNumber DisplayString,
raidPDFirmwareRevision DisplayString
}
raidPDIndex OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Raid physical drive index.
The unique value which identifies this raid physical drive."
::= { raidPDEntry 1 }
raidAdapterGroup-PD OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group of the raid controller. Values:
LSI-MegaRAID
LSI-Fusion-MPT
"
::= { raidPDEntry 2 }
raidAdapterId-PD OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the raid controller. The id is unique in one adapter group."
::= { raidPDEntry 3 }
raidDiskGroupId-PD OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk group id of the virtual drive."
::= { raidPDEntry 4 }
raidPDSlotNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The slot number of the physical drive."
::= { raidPDEntry 5 }
raidPDFirmwareState OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware state of the physical drive. Values:
unconfigured-good, unconfigured-bad, hot-spare, offline, failed, rebuild, online, and copyback"
::= { raidPDEntry 6 }
raidPDMediaErrorCount OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The media error count of the physical drive."
::= { raidPDEntry 7 }
raidPDOtherErrorCount OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The other error count of the physical drive."
::= { raidPDEntry 8 }
raidPDPredFailCount OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The predictive failure count of the physical drive."
::= { raidPDEntry 9 }
raidPDLastPredFailEventSeqNo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last predictive failure event sequence number of the physical drive."
::= { raidPDEntry 10 }
raidPDRawSize OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The raw size of the physical drive."
::= { raidPDEntry 11 }
raidPDDeviceFwLevel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device firmware level of the physical drive."
::= { raidPDEntry 12 }
raidPDInquiryData OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The inquiry data of the physical drive."
::= { raidPDEntry 13 }
raidPDDeviceSpeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device speed of the physical drive."
::= { raidPDEntry 14 }
raidPDLinkSpeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The link speed of the physical drive."
::= { raidPDEntry 15 }
raidPDMediaType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The media type of the physical drive."
::= { raidPDEntry 16 }
raidPDWriteCache OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The write cache of the physical drive."
::= { raidPDEntry 17 }
raidPDNCQSetting OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The NCQ setting of the physical drive."
::= { raidPDEntry 18 }
raidPDPort0Linkspeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The link speed of port 0 of the physical drive."
::= { raidPDEntry 19 }
raidPDPort0Status OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of port 0 of the physical drive."
::= { raidPDEntry 20 }
raidPDPort1Linkspeed OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The link speed of port 1 of the physical drive."
::= { raidPDEntry 21 }
raidPDPort1Status OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of port 1 of the physical drive."
::= { raidPDEntry 22 }
raidPDEnclosureDeviceID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The enclosure id of the physical drive."
::= { raidPDEntry 23 }
raidPDOpProgress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operation progress of the physical drive."
::= { raidPDEntry 24 }
raidPDSpan OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The span of the physical drive."
::= { raidPDEntry 25 }
raidPDAllinoneStatus OBJECT-TYPE
SYNTAX Integer32 (1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the status of the physical drive. Values:
0: OK
1: Warning
2: Critical
"
::= { raidPDEntry 26}
raidPDAllinoneMsg OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status message of the physical drive."
::= { raidPDEntry 27}
raidPDModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model of the physical drive."
::= { raidPDEntry 28}
raidPDSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the physical drive."
::= { raidPDEntry 29}
raidPDFirmwareRevision OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware revision of the physical drive."
::= { raidPDEntry 30}
smSD5TrapMIB OBJECT IDENTIFIER ::= { smSSMInfo 3 }
trapFanNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Fan Speed has returned to Normal"
--#TYPE "FAN Event"
--#SUMMARY "Fan Speed has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 101
trapFanWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Fan Speed is Warning"
--#TYPE "FAN Event"
--#SUMMARY "Fan Speed is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 102
trapFanCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Fan Speed is Critical"
--#TYPE "FAN Event"
--#SUMMARY "Fan Speed is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 103
trapVoltageNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Voltage has returned to Normal"
--#TYPE "Voltage Event"
--#SUMMARY "Voltage has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 201
trapVoltageWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Voltage is Warning"
--#TYPE "Voltage Event"
--#SUMMARY "Voltage is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 202
trapVoltageCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Voltage is Critical"
--#TYPE "Voltage Event"
--#SUMMARY "Voltage is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 203
trapTemperatureNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Temperature has returned to Normal"
--#TYPE "Temperature Event"
--#SUMMARY "Temperature has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 301
trapTemperatureWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Temperature is Warning"
--#TYPE "Temperature Event"
--#SUMMARY "Temperature is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 302
trapTemperatureCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Temperature is Critical"
--#TYPE "Temperature Event"
--#SUMMARY "Temperature is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 303
trapChassisIntrusionCleared TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Chassis Intrusion has cleared"
--#TYPE "Chassis Intrusion Event"
--#SUMMARY "Chassis Intrusion has cleared"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 401
trapChassisIntrusion TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Chassis Intrusion has triggered"
--#TYPE "Chassis Intrusion Event"
--#SUMMARY "Chassis Intrusion has triggered"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 403
trapStorageSMARTCheckNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Storage SMART Check has returned to Normal"
--#TYPE "Storage SMART Check Event"
--#SUMMARY "Storage SMART Check has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 601
trapStorageSMARTCheckWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Storage SMART Check is Warning"
--#TYPE "Storage SMART Check Event"
--#SUMMARY "Storage SMART Check is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 602
trapStorageSMARTCheckCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Storage SMART Check is Critical"
--#TYPE "Storage SMART Check Event"
--#SUMMARY "Storage SMART Check is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 603
trapPowerSupplyNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Power Supply has returned to Normal"
--#TYPE "Power Supply Event"
--#SUMMARY "Power Supply has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 701
trapPowerSupplyWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Power Supply is Warning"
--#TYPE "Power Supply Event"
--#SUMMARY "Power Supply is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 702
trapPowerSupplyCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Power Supply is Critical"
--#TYPE "Power Supply Event"
--#SUMMARY "Power Supply is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 703
trapMemoryCeccNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Memory CECC has returned to Normal"
--#TYPE "Memory CECC Event"
--#SUMMARY "Memory CECC has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 801
trapMemoryCeccWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Memory CECC is Warning"
--#TYPE "Memory CECC Event"
--#SUMMARY "Memory CECC is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 802
trapMemoryCeccCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Memory CECC is Critical"
--#TYPE "Memory CECC Event"
--#SUMMARY "Memory CECC is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 803
trapMemoryUeccNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Memory UECC has returned to Normal"
--#TYPE "Memory UECC Event"
--#SUMMARY "Memory UECC has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 901
trapMemoryUeccWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Memory UECC is Warning"
--#TYPE "Memory UECC Event"
--#SUMMARY "Memory UECC is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 902
trapMemoryUeccCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Memory UECC Critical"
--#TYPE "Memory UECC Event"
--#SUMMARY "Memory UECC is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 903
trapGenericNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Monitored item has returned to Normal"
--#TYPE "Generic Event"
--#SUMMARY "Monitored item has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 1001
trapGenericWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Monitored item is Warning"
--#TYPE "Generic Event"
--#SUMMARY "Monitored item is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 1002
trapGenericCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Monitored item Critical"
--#TYPE "Generic Event"
--#SUMMARY "Monitored item is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 1003
trapBbpStatusNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "BBP has returned to Normal"
--#TYPE "BBP Event"
--#SUMMARY "BBP has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 1101
trapBbpStatusWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "BBP is Warning"
--#TYPE "BBP Event"
--#SUMMARY "BBP is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 1102
trapBbpStatusCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "BBP is Critical"
--#TYPE "BBP Event"
--#SUMMARY "BBP is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 1103
trapCpuFaultNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Processor Fault has returned to Normal"
--#TYPE "Processor Fault Event"
--#SUMMARY "Processor Fault has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 1201
trapCpuFaultWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Processor Fault is Warning"
--#TYPE "Processor Fault Event"
--#SUMMARY "Processor Fault is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 1202
trapCpuFaultCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Processor Fault is Critical"
--#TYPE "Processor Fault Event"
--#SUMMARY "Processor Fault is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 1203
trapStorageAdapterStatusNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Storage Adapter has returned to Normal"
--#TYPE "Storage Adapter Event"
--#SUMMARY "Storage Adapter has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 1301
trapStorageAdapterStatusWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Storage Adapter is Warning"
--#TYPE "Storage Adapter Event"
--#SUMMARY "Storage Adapter is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 1302
trapStorageAdapterStatusCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Storage Adapter is Critical"
--#TYPE "Storage Adapter Event"
--#SUMMARY "Storage Adapter is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 1303
trapBatteryStatusNormal TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Battery has returned to Normal"
--#TYPE "Battery Event"
--#SUMMARY "Battery has returned to Normal"
--#ARGUMENTS {}
--#SEVERITY INFORMATIONAL
::= 1401
trapBatteryStatusWarning TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Battery is Warning"
--#TYPE "Battery Event"
--#SUMMARY "Battery is Warning"
--#ARGUMENTS {}
--#SEVERITY WARNING
::= 1402
trapBatteryStatusCritical TRAP-TYPE
ENTERPRISE smSD5TrapMIB
DESCRIPTION "Battery is Critical"
--#TYPE "Battery Event"
--#SUMMARY "Battery is Critical"
--#ARGUMENTS {}
--#SEVERITY CRITICAL
::= 1403
END
|