forked from dangmocrang/check_idrac
-
Notifications
You must be signed in to change notification settings - Fork 0
/
idrac-smiv2.mib
11439 lines (10450 loc) · 435 KB
/
idrac-smiv2.mib
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
------------------------------------------------------------------------------
--
-- Title: iDRAC MIB
--
-- Version: 2.0
-- Date: 10/30/2012
--
-- Description: This MIB defines MIB objects that make iDRAC data available
-- to SNMP management applications.
--
-- Note that the iDRAC MIB file is published in both types of SMI (Structure
-- of Managed Information) notations: SMIv1 and SMIv2. This copy of the iDRAC
-- MIB file is the SMIv2 version of the MIB file.
--
-- Copyright (c) 2012 Dell Inc.
-- All Rights Reserved.
--
-- Note: The information and functionality described by this MIB file,
-- like many MIB files, is subject to change without notice.
-- Please examine the version number of this MIB and compare it
-- to the version number you are expecting.
--
-- OID Format Legend:
-- <a> = attribute ID
-- <i> = index ID
-- <n> = trap ID
--
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Begin MIB
------------------------------------------------------------------------------
IDRAC-MIB-SMIv2 DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Counter32, Integer32,
TimeTicks, NOTIFICATION-TYPE, Unsigned32,
OBJECT-IDENTITY, enterprises FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF;
outOfBandGroup MODULE-IDENTITY
LAST-UPDATED "201210300000Z" -- 10/30/2012
ORGANIZATION "Dell Inc."
CONTACT-INFO
"Visit the Dell Support website at: support.dell.com"
DESCRIPTION
"This MIB defines MIB objects that make out-of-band iDRAC data
available to SNMP management applications. It also defines the traps
that iDRAC supports."
-- Revision history, in reverse chronological order.
REVISION "201210300000Z" -- 10/30/2012
DESCRIPTION
"Version: 2.0 (Initial SMIv2 version of the iDRAC MIB.)"
::= { enterprises dell(674) server3(10892) 5 }
------------------------------------------------------------------------------
-- Object Identifiers
------------------------------------------------------------------------------
-- Server3 Out-of-Band Groups
--
-- The informationGroup provides information to discover the system (RAC,
-- blade enclosure/chassis, and server) and its associated properties.
--
informationGroup OBJECT IDENTIFIER ::= { outOfBandGroup 1 }
racInfoGroup OBJECT IDENTIFIER ::= { informationGroup 1 }
chassisInfoGroup OBJECT IDENTIFIER ::= { informationGroup 2 }
systemInfoGroup OBJECT IDENTIFIER ::= { informationGroup 3 }
statusGroup OBJECT IDENTIFIER ::= { outOfBandGroup 2 }
alertGroup OBJECT IDENTIFIER ::= { outOfBandGroup 3 }
alertVariablesGroup OBJECT IDENTIFIER ::= { alertGroup 1 }
alertTrapGroup OBJECT IDENTIFIER ::= { alertGroup 2 }
systemAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 1 }
storageAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 2 }
updatesAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 3 }
auditAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 4 }
configurationAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 5 }
-- System details start
systemDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 4 }
mIBVersionGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1 }
systemStateGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 200 }
chassisInformationGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 300 }
powerGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 600 }
thermalGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 700 }
deviceGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1100 }
slotGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1200 }
fruGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 2000 }
-- System details end
-- Storage details start
storageDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 5 }
software OBJECT IDENTIFIER ::= { storageDetailsGroup 1 }
storageManagement OBJECT IDENTIFIER ::= { software 20 }
physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 }
logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 }
-- Storage details end
------------------------------------------------------------------------------
-- Textual Conventions
------------------------------------------------------------------------------
StringType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type."
SYNTAX OCTET STRING (SIZE (0..1023))
String7 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 7 byte strings."
SYNTAX OCTET STRING (SIZE (0..7))
String8 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 8 byte strings."
SYNTAX OCTET STRING (SIZE (0..8))
String10 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 10 byte strings."
SYNTAX OCTET STRING (SIZE (0..10))
String64 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 128 byte strings."
SYNTAX OCTET STRING (SIZE (0..64))
String128 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 128 byte strings."
SYNTAX OCTET STRING (SIZE (0..128))
NonEmptyString128 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 1 to 128 byte strings."
SYNTAX OCTET STRING (SIZE (1..128))
String512 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 512 byte strings."
SYNTAX OCTET STRING (SIZE (0..512))
String1024 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 1024 byte strings."
SYNTAX OCTET STRING (SIZE (0..1024))
String2048 ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"General string type for 2048 byte strings."
SYNTAX OCTET STRING (SIZE (0..2048))
FQDDString ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"String type for FQDD strings."
SYNTAX OCTET STRING (SIZE (0..512))
SecurityString ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"String type for security strings."
SYNTAX OCTET STRING (SIZE (0..255))
MACAddress ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"String type for MAC Address strings."
SYNTAX OCTET STRING (SIZE (6))
ObjectRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Integer with a range of (1..128)."
SYNTAX INTEGER (1..128)
Unsigned8BitRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Integer with a range of (0..255)."
SYNTAX INTEGER (0..255)
Unsigned16BitRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Integer with a range of (0..65535)."
SYNTAX INTEGER (0..65535)
Unsigned32BitRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Integer with a range of (0..4294967295)."
SYNTAX Unsigned32 (0..4294967295)
Signed32BitRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Integer with a range of (-2147483647..2147483647)."
SYNTAX INTEGER (-2147483647..2147483647)
BooleanType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Integer with a range of (0..1).
Where 0 = FALSE, 1 = TRUE"
SYNTAX INTEGER (1..128)
-- (Note: The following definition is in the SMIv1 version of the iDRAC MIB
-- file. In order to keep this SMIv2 copy of the iDRAC MIB file as closely in
-- sync with the SMIv1 version, this definition has been kept, and is used,
-- in this SMIv2 version of the MIB file.)
--
-- This definition is required because SNMP V1 does not support 64 bit ranges.
-- The information sent back by this subagent will have the most significant
-- byte of the information as the first byte (i.e. network byte order).
-- E.G. The integer value 0x1029384754657687 will be sent as:
-- Byte: 1 2 3 4 ...
-- Hex: 10 29 38 47 ...
-- Binary: 0001 0000 0010 1001 0011 1000 0100 0111 ...
Unsigned64BitRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"String type used to effectively store an unsigned 64-bit integer."
SYNTAX OCTET STRING (SIZE (8))
-- DateName dates are defined in the displayable format
-- yyyymmddHHMMSS.uuuuuu+ooo
-- where yyyy is the year, mm is the month number, dd is the day of the month,
-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the
-- number of microseconds, and +ooo is the offset from UTC in minutes. If east
-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the
-- number is preceded by a minus (-) sign.
--
-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT
-- would be represented as: 19940525133015.000000-300
--
-- Values must be zero-padded if necessary, like "05" in the example above.
-- If a value is not supplied for a field, each character in the field
-- must be replaced with asterisk ('*') characters.
DateName ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"String type for date strings of a given DateName format."
SYNTAX OCTET STRING (SIZE (25))
-- Note About Bit Fields:
-- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique,
-- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers
-- representing a series of bit definitions. They are NOT enumerations and
-- should be treated as bit fields. The value is passed as a decimal value;
-- it should be converted to hex, and the appropriate bits should be parsed
-- from that. Some of the more common bit combinations are defined in some
-- variables, but not all combinations are or will be defined.
--
-- Generic State Capabilities
--
StateCapabilitiesFlags ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"State Capabilities flags."
SYNTAX INTEGER {
-- If set to 0 (zero), object has no state capabilities
unknownCapabilities(1), -- object's state capabilities are unknown
-- The object's state capabilities allow it to be set to:
enableCapable(2), -- be disabled (offline) or be enabled (online)
notReadyCapable(4), -- not ready
enableAndNotReadyCapable(6)
}
--
-- Generic State Settings
--
StateSettingsFlags ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"State Settings flags."
SYNTAX INTEGER {
-- If set to 0 (zero), object has no state settings enabled and is disabled
unknown(1), -- object's state is unknown
enabled(2), -- object's state is disabled (offline) if bit is off
-- or enabled (online) if bit is on
notReady(4), -- object's state is not ready
enabledAndNotReady(6)
}
--
-- Probe Capabilities
--
ProbeCapabilitiesFlags ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Probe Capabilities flags."
SYNTAX INTEGER {
-- If set to 0 (zero) the object has no probe capabilities
-- The object's probe capabilities allow it to be set to:
upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set
lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set
upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default
lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default
}
--
-- Probe Status
--
StatusProbeEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Probe Status enum."
SYNTAX INTEGER {
other(1), -- probe status is not one of the following:
unknown(2), -- probe status is unknown (not known or monitored)
ok(3), -- probe is reporting a value within the thresholds
nonCriticalUpper(4), -- probe has crossed upper noncritical threshold
criticalUpper(5), -- probe has crossed upper critical threshold
nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold
nonCriticalLower(7), -- probe has crossed lower noncritical threshold
criticalLower(8), -- probe has crossed lower critical threshold
nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold
failed(10) -- probe is not functional
}
--
-- Redundancy Status
--
StatusRedundancyEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Redundancy Status enum."
SYNTAX INTEGER {
other(1), -- redundancy status is not one of the following:
unknown(2), -- redundancy status is unknown (not known or monitored)
full(3), -- object is fully redundant
degraded(4), -- object's redundancy has been degraded
lost(5), -- object's redundancy has been lost
notRedundant(6), -- redundancy status does not apply or object is not redundant
redundancyOffline(7) -- redundancy object taken offline
}
--
-- Status
--
ObjectStatusEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Status of an object."
SYNTAX INTEGER {
other(1), -- the status of the object is not one of the
-- following:
unknown(2), -- the status of the object is unknown
-- (not known or monitored)
ok(3), -- the status of the object is ok
nonCritical(4), -- the status of the object is warning, non-critical
critical(5), -- the status of the object is critical (failure)
nonRecoverable(6) -- the status of the object is non-recoverable (dead)
}
RacTypeEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"RAC Type enum."
SYNTAX INTEGER {
other(1), -- the RAC type is not one of the following
unknown(2), -- the RAC type is unknown
idrac7monolithic(16), -- iDRAC7 Monolithic
idrac7modular(17) -- iDRAC7 Modular
}
SystemFormFactorEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"System Form Factor enum."
SYNTAX INTEGER {
other(1), -- the form factor is not one of the following:
unknown(2), -- the form factor is unknown
u1(3), -- 1U Monolithic
u2(4), -- 2U Monolithic
u4(5), -- 4U Monolithic
u7(6), -- 7U Monolithic
singleWidthSingleHeight(7), -- Single width, single height Modular
dualWidthSingleHeight(8), -- Dual width, single height Modular
singleWidthDualHeight(9), -- Single width, dual height Modular
dualWidthDualHeight(10), -- Dual width, dual height Modular
singleWidthQuarterHeight(11), -- Single width, quarter height Modular
u5(12) -- 5U Monolithic
}
BladeGeometryEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Blade Geometry enum."
SYNTAX INTEGER {
other(1), -- the blade geometry is not one of the following:
unknown(2), -- the blade geometry is unknown
singleWidthSingleHeight(3), -- Single width, single height Blade
dualWidthSingleHeight(4), -- Dual width, single height Blade
singleWidthDualHeight(5), -- Single width, dual height Blade
dualWidthDualHeight(6), -- Dual width, dual height Blade
singleWidthQuarterHeight(7) -- Single width, quarter height Blade
}
PowerStateStatusEnum ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Power State Status enum."
SYNTAX INTEGER {
other(1), -- the power state status is not one of the following:
unknown(2), -- the power state status is unknown
off(3), -- system power is off
on(4) -- system power is on
}
------------------------------------------------------------------------------
--
-- MIB Groups
--
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- RAC Information Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.1.1.<a>.0
------------------------------------------------------------------------------
racName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the product name of a remote access card."
::= { racInfoGroup 1 }
racShortName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the short product name of a remote access
card."
::= { racInfoGroup 2 }
racDescription OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the product description of a remote access
card."
::= { racInfoGroup 3 }
racManufacturer OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the product manufacturer of a remote access
card."
::= { racInfoGroup 4 }
racVersion OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the product version of a remote access card."
::= { racInfoGroup 5 }
racURL OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the out-of-band UI URL of a remote access
card."
::= { racInfoGroup 6 }
racType OBJECT-TYPE
SYNTAX RacTypeEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the type of a remote access card."
::= { racInfoGroup 7 }
racFirmwareVersion OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the firmware version of a remote access card."
::= { racInfoGroup 8 }
------------------------------------------------------------------------------
-- Chassis Information Group
-- (blade enclosure/chassis info)
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.1.2.<a>.0
------------------------------------------------------------------------------
chassisServiceTag OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the service tag of the enclosing blade
enclosure/chassis."
::= { chassisInfoGroup 1 }
------------------------------------------------------------------------------
-- System Information Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.1.3.<a>.0
------------------------------------------------------------------------------
systemFQDN OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the fully qualified domain name of the system.
For example, hostname.domainname."
::= { systemInfoGroup 1 }
systemServiceTag OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the service tag of the system."
::= { systemInfoGroup 2 }
systemExpressServiceCode OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the express service code of the system."
::= { systemInfoGroup 3 }
systemAssetTag OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the asset tag of the system."
::= { systemInfoGroup 4 }
systemBladeSlotNumber OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the slot number of the blade in the blade
enclosure/chassis."
::= { systemInfoGroup 5 }
systemOSName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the name of the operating system that the host
is running."
::= { systemInfoGroup 6 }
systemFormFactor OBJECT-TYPE
SYNTAX SystemFormFactorEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the form factor of the system."
::= { systemInfoGroup 7 }
systemDataCenterName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the Data Center locator of the system."
::= { systemInfoGroup 8 }
systemAisleName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the Aisle locator of the system."
::= { systemInfoGroup 9 }
systemRackName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the Rack locator of the system."
::= { systemInfoGroup 10 }
systemRackSlot OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the Rack Slot locator of the system."
::= { systemInfoGroup 11 }
systemModelName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the model name of the system."
::= { systemInfoGroup 12 }
systemSystemID OBJECT-TYPE
SYNTAX Unsigned16BitRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the system ID of the system."
::= { systemInfoGroup 13 }
systemOSVersion OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the version of the operating system that the
host is running."
::= { systemInfoGroup 14 }
systemRoomName OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the Room locator of the system."
::= { systemInfoGroup 15 }
systemChassisSystemHeight OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the height of the system, in 'U's.
A U is a standard unit of measure for the height of a rack or
rack-mountable component.
(If not applicable, a 'no such name' error is returned.)"
::= { systemInfoGroup 16 }
systemBladeGeometry OBJECT-TYPE
SYNTAX BladeGeometryEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the blade geometry for a blade system.
(If not applicable, a 'no such name' error is returned.)"
::= { systemInfoGroup 17 }
------------------------------------------------------------------------------
-- Status Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.2.<a>.0
------------------------------------------------------------------------------
globalSystemStatus OBJECT-TYPE
SYNTAX ObjectStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the overall rollup status of all
components in the system being monitored by the remote
access card. Includes system, storage, IO devices, iDRAC,
CPU, memory, etc."
::= { statusGroup 1 }
systemLCDStatus OBJECT-TYPE
SYNTAX ObjectStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the system status as it is reflected by
the LCD front panel. Not all system components may be included."
::= { statusGroup 2 }
globalStorageStatus OBJECT-TYPE
SYNTAX ObjectStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the overall storage status being
monitored by the remote access card."
::= { statusGroup 3 }
systemPowerState OBJECT-TYPE
SYNTAX PowerStateStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This attribute defines the power state of the system."
::= { statusGroup 4 }
------------------------------------------------------------------------------
-- Alert Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.3
------------------------------------------------------------------------------
------------------------------------------------------------------------------
-- Alert Variables Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.3.1.<a>.0
------------------------------------------------------------------------------
alertMessageID OBJECT-TYPE
SYNTAX String8
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Message ID of the event."
::= { alertVariablesGroup 1 }
alertMessage OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Message describing the alert."
::= { alertVariablesGroup 2 }
alertCurrentStatus OBJECT-TYPE
SYNTAX ObjectStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current status of object causing the alert, if applicable."
::= { alertVariablesGroup 3 }
alertSystemServiceTag OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Service tag of the system."
::= { alertVariablesGroup 4 }
alertSystemFQDN OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fully qualified domain name of the system."
::= { alertVariablesGroup 5 }
alertFQDD OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fully qualified device descriptor of the device."
::= { alertVariablesGroup 6 }
alertDeviceDisplayName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..512))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Display name of the device/FQDD."
::= { alertVariablesGroup 7 }
alertMessageArguments OBJECT-TYPE
SYNTAX StringType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Concatenated set of strings representing the message arguments of the
event. Each message argument string is enclosed in double quotes,
and there is a comma after the ending double quote of each message
argument string, except the last one. Any double quotes found within
a message argument string are preprocessed and changed to single
quotes."
::= { alertVariablesGroup 8 }
alertChassisServiceTag OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"For blade systems, the service tag of the enclosing chassis.
For rack and tower systems, this varbind will be empty (zero
length)."
::= { alertVariablesGroup 9 }
-------------------------------------------------------------------------------
-- System Details Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.4
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- MIB Version Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1.<a>.0
-------------------------------------------------------------------------------
mIBMajorVersionNumber OBJECT-TYPE
SYNTAX Unsigned8BitRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0001.0001 This attribute defines the major version number for the
version of this MIB supported by the iDRAC."
::= { mIBVersionGroup 1 }
mIBMinorVersionNumber OBJECT-TYPE
SYNTAX Unsigned8BitRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0001.0002 This attribute defines the minor version number for the
version of this MIB supported by the iDRAC."
::= { mIBVersionGroup 2 }
mIBMaintenanceVersionNumber OBJECT-TYPE
SYNTAX Unsigned8BitRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0001.0003 This attribute defines the maintenance version number for
the version of this MIB supported by the iDRAC."
::= { mIBVersionGroup 3 }
-------------------------------------------------------------------------------
-- System State Group
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
-- System State Table
--
-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200.10.1.<a>.<i1>
-------------------------------------------------------------------------------
SystemStateTableEntry ::= SEQUENCE {
systemStatechassisIndex ObjectRange,
systemStateGlobalSystemStatus ObjectStatusEnum,
systemStateChassisState StateSettingsFlags,
systemStateChassisStatus ObjectStatusEnum,
systemStatePowerUnitStateDetails NonEmptyString128,
systemStatePowerUnitStatusRedundancy StatusRedundancyEnum,
systemStatePowerUnitStatusDetails NonEmptyString128,
systemStatePowerSupplyStateDetails NonEmptyString128,
systemStatePowerSupplyStatusCombined ObjectStatusEnum,
systemStatePowerSupplyStatusDetails NonEmptyString128,
systemStateVoltageStateDetails NonEmptyString128,
systemStateVoltageStatusCombined ObjectStatusEnum,
systemStateVoltageStatusDetails NonEmptyString128,
systemStateAmperageStateDetails NonEmptyString128,
systemStateAmperageStatusCombined ObjectStatusEnum,
systemStateAmperageStatusDetails NonEmptyString128,
systemStateCoolingUnitStateDetails NonEmptyString128,
systemStateCoolingUnitStatusRedundancy StatusRedundancyEnum,
systemStateCoolingUnitStatusDetails NonEmptyString128,
systemStateCoolingDeviceStateDetails NonEmptyString128,
systemStateCoolingDeviceStatusCombined ObjectStatusEnum,
systemStateCoolingDeviceStatusDetails NonEmptyString128,
systemStateTemperatureStateDetails NonEmptyString128,
systemStateTemperatureStatusCombined ObjectStatusEnum,
systemStateTemperatureStatusDetails NonEmptyString128,
systemStateMemoryDeviceStateDetails NonEmptyString128,
systemStateMemoryDeviceStatusCombined ObjectStatusEnum,
systemStateMemoryDeviceStatusDetails NonEmptyString128,
systemStateChassisIntrusionStateDetails NonEmptyString128,
systemStateChassisIntrusionStatusCombined ObjectStatusEnum,
systemStateChassisIntrusionStatusDetails NonEmptyString128,
systemStatePowerUnitStatusCombined ObjectStatusEnum,
systemStatePowerUnitStatusList NonEmptyString128,
systemStateCoolingUnitStatusCombined ObjectStatusEnum,
systemStateCoolingUnitStatusList NonEmptyString128,
systemStateProcessorDeviceStatusCombined ObjectStatusEnum,
systemStateProcessorDeviceStatusList NonEmptyString128,
systemStateBatteryStatusCombined ObjectStatusEnum,
systemStateBatteryStatusList NonEmptyString128,
systemStateSDCardUnitStatusCombined ObjectStatusEnum,
systemStateSDCardUnitStatusList NonEmptyString128,
systemStateSDCardDeviceStatusCombined ObjectStatusEnum,
systemStateSDCardDeviceStatusList NonEmptyString128,
systemStateIDSDMCardUnitStatusCombined ObjectStatusEnum,
systemStateIDSDMCardUnitStatusList NonEmptyString128,
systemStateIDSDMCardDeviceStatusCombined ObjectStatusEnum,
systemStateIDSDMCardDeviceStatusList NonEmptyString128,
systemStateTemperatureStatisticsStateDetails NonEmptyString128,
systemStateTemperatureStatisticsStatusCombined ObjectStatusEnum,
systemStateTemperatureStatisticsStatusDetails NonEmptyString128
}
systemStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF SystemStateTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"0200.0010 This object defines the System State Table."
::= { systemStateGroup 10 }
systemStateTableEntry OBJECT-TYPE
SYNTAX SystemStateTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"0200.0010.0001 This object defines the System State Table Entry."
INDEX { systemStatechassisIndex }
::= { systemStateTable 1 }
systemStatechassisIndex OBJECT-TYPE
SYNTAX ObjectRange
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0200.0010.0001.0001 This attribute defines the index (one based) of
this system chassis."
::= { systemStateTableEntry 1 }
systemStateGlobalSystemStatus OBJECT-TYPE
SYNTAX ObjectStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0200.0010.0001.0002 This attribute defines the global system status
of all system chassis being monitored by the systems management software."
::= { systemStateTableEntry 2 }
systemStateChassisState OBJECT-TYPE
SYNTAX StateSettingsFlags
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0200.0010.0001.0003 This attribute defines the state settings of this
system chassis."
::= { systemStateTableEntry 3 }
systemStateChassisStatus OBJECT-TYPE
SYNTAX ObjectStatusEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0200.0010.0001.0004 This attribute defines the status of this system
chassis."
::= { systemStateTableEntry 4 }
systemStatePowerUnitStateDetails OBJECT-TYPE
SYNTAX NonEmptyString128
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0200.0010.0001.0005 This attribute lists the state settings of each
power unit of this system. The results are returned as a binary octet
string where each byte of the octet string represents the state settings
of a power unit. The first byte returned represents the state settings
of the first power unit, etc. The bytes have the same definition type
as StateSettingsFlags."
::= { systemStateTableEntry 5 }
systemStatePowerUnitStatusRedundancy OBJECT-TYPE
SYNTAX StatusRedundancyEnum
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0200.0010.0001.0006 This attribute defines the combined redundancy status
of all power units of this system."
::= { systemStateTableEntry 6 }
systemStatePowerUnitStatusDetails OBJECT-TYPE
SYNTAX NonEmptyString128
MAX-ACCESS read-only