1-- HIP Version = X131
2--
3-- MIB generated by miftomib version 1.0a
4
5DELLBASEBOARDMIF-MIB DEFINITIONS ::= BEGIN
6
7-- This is the MIF for Dell Servers
8
9IMPORTS
10    OBJECT-TYPE
11    FROM RFC-1212
12    enterprises
13    FROM RFC1155-SMI
14    DisplayString
15    FROM RFC1213-MIB;
16
17DmiInteger			::= INTEGER
18DmiOctetstring		::= OCTET STRING
19DmiDisplaystring	::= DisplayString
20DmiDate				::= OCTET STRING (SIZE (28))
21DmiComponentIndex	::= INTEGER
22
23dell                	OBJECT IDENTIFIER ::= {enterprises 674}
24server             	OBJECT IDENTIFIER ::= {dell 10890}
25baseboard      	OBJECT IDENTIFIER ::= {server 1}
26dmtfGroups          	OBJECT IDENTIFIER ::= {baseboard 1}
27
28SComponentid ::= SEQUENCE {
29	a1Manufacturer                          	DmiDisplaystring,
30	a1Product                               	DmiDisplaystring,
31	a1Version                               	DmiDisplaystring,
32	a1SerialNumber                          	DmiDisplaystring,
33	a1Installation                          	DmiDate,
34	a1Verify                                	DmiInteger
35}
36
37tComponentid OBJECT-TYPE
38	SYNTAX		SEQUENCE OF SComponentid
39	ACCESS		not-accessible
40	STATUS		mandatory
41	DESCRIPTION	"This group defines attributes common to all components."
42	::= {dmtfGroups 1}
43
44eComponentid OBJECT-TYPE
45	SYNTAX		SComponentid
46	ACCESS		not-accessible
47	STATUS		mandatory
48	DESCRIPTION	""
49	INDEX		{DmiComponentIndex}
50	::= {tComponentid 1}
51
52a1Manufacturer OBJECT-TYPE
53	SYNTAX		DmiDisplaystring
54	ACCESS		read-only
55	STATUS		mandatory
56	DESCRIPTION	"The name of the manufacturer that produced this component."
57	::= {eComponentid 1}
58
59a1Product OBJECT-TYPE
60	SYNTAX		DmiDisplaystring
61	ACCESS		read-only
62	STATUS		mandatory
63	DESCRIPTION	"The name of the component."
64	::= {eComponentid 2}
65
66a1Version OBJECT-TYPE
67	SYNTAX		DmiDisplaystring
68	ACCESS		read-only
69	STATUS		mandatory
70	DESCRIPTION	"The version for the component."
71	::= {eComponentid 3}
72
73a1SerialNumber OBJECT-TYPE
74	SYNTAX		DmiDisplaystring
75	ACCESS		read-only
76	STATUS		mandatory
77	DESCRIPTION	"The serial number for this instance of this component."
78	::= {eComponentid 4}
79
80a1Installation OBJECT-TYPE
81	SYNTAX		DmiDate
82	ACCESS		read-only
83	STATUS		mandatory
84	DESCRIPTION	"The time & date of the lastest installation of this component."
85	::= {eComponentid 5}
86
87a1Verify OBJECT-TYPE
88	SYNTAX		INTEGER {
89		vAnErrorOccurredCheckStatusCode         	(0),
90		vThisComponentDoesNotExist              	(1),
91		vTheVerifyIsNotSupported                	(2),
92		vReserved                               	(3),
93		vThisComponentExistsButTheFunctionalityI	(4),
94		vThisComponentExistsButTheFunctionality1	(5),
95		vThisComponentExistsAndIsNotFunctioningC	(6),
96		vThisComponentExistsAndIsFunctioningCorr	(7)
97	}
98	ACCESS		read-only
99	STATUS		mandatory
100	DESCRIPTION	"A code that provides a level of verification that the component
101is still installed and working."
102	::= {eComponentid 6}
103
104STemperature ::= SEQUENCE {
105	a2Tempparentindex                       	DmiInteger,
106	a2Tempindex                             	DmiInteger,
107	a2Temptype                              	DmiInteger,
108	a2Tempstatus                            	DmiInteger,
109	a2Tempreading                           	DmiInteger,
110	a2Tempminwarn                           	DmiDisplaystring,
111	a2Tempmaxwarn                           	DmiDisplaystring,
112	a2Tempminfail                           	DmiInteger,
113	a2Tempmaxfail                           	DmiInteger,
114	a2Templocation                          	DmiDisplaystring
115}
116
117tTemperature OBJECT-TYPE
118	SYNTAX		SEQUENCE OF STemperature
119	ACCESS		not-accessible
120	STATUS		mandatory
121	DESCRIPTION	"This group defines the attributes for the temperature probes
122this system."
123	::= {dmtfGroups 2}
124
125eTemperature OBJECT-TYPE
126	SYNTAX		STemperature
127	ACCESS		not-accessible
128	STATUS		mandatory
129	DESCRIPTION	""
130	INDEX		{DmiComponentIndex, a2Tempparentindex, a2Tempindex}
131	::= {tTemperature 1}
132
133a2Tempparentindex OBJECT-TYPE
134	SYNTAX		DmiInteger
135	ACCESS		read-only
136	STATUS		mandatory
137	DESCRIPTION	"An index into the chassis table."
138	::= {eTemperature 1}
139
140a2Tempindex OBJECT-TYPE
141	SYNTAX		DmiInteger
142	ACCESS		read-only
143	STATUS		mandatory
144	DESCRIPTION	"index into this temperature probe table."
145	::= {eTemperature 2}
146
147a2Temptype OBJECT-TYPE
148	SYNTAX		INTEGER {
149		vOther                                  	(1),
150		vUnknown                                	(2),
151		vTmc                                    	(3),
152		vTvm                                    	(4),
153		vEsm                                    	(5),
154		vBackplane                              	(6),
155		vHarrierBackplane                       	(7)
156	}
157	ACCESS		read-only
158	STATUS		mandatory
159	DESCRIPTION	"Defines the type of the temperature probe."
160	::= {eTemperature 3}
161
162a2Tempstatus OBJECT-TYPE
163	SYNTAX		INTEGER {
164		vOther                                  	(1),
165		vUnknown                                	(2),
166		vOk                                     	(3),
167		vNon-critical                           	(4),
168		vCritical                               	(5),
169		vNon-recoverable                        	(6)
170	}
171	ACCESS		read-only
172	STATUS		mandatory
173	DESCRIPTION	"Current status of the temperature probe."
174	::= {eTemperature 4}
175
176a2Tempreading OBJECT-TYPE
177	SYNTAX		DmiInteger
178	ACCESS		read-only
179	STATUS		mandatory
180	DESCRIPTION	"The reading of the temperature probe in tenths of degrees."
181	::= {eTemperature 5}
182
183a2Tempminwarn OBJECT-TYPE
184	SYNTAX		DmiDisplaystring
185	ACCESS		read-write
186	STATUS		mandatory
187	DESCRIPTION	"The lower warning threshold for the temperature probe set
188by the user."
189	::= {eTemperature 6}
190
191a2Tempmaxwarn OBJECT-TYPE
192	SYNTAX		DmiDisplaystring
193	ACCESS		read-write
194	STATUS		mandatory
195	DESCRIPTION	"The upper warning threshold for the temperature probe set
196by the user."
197	::= {eTemperature 7}
198
199a2Tempminfail OBJECT-TYPE
200	SYNTAX		DmiInteger
201	ACCESS		read-only
202	STATUS		mandatory
203	DESCRIPTION	"The lower failure threshold for the temperature probe."
204	::= {eTemperature 8}
205
206a2Tempmaxfail OBJECT-TYPE
207	SYNTAX		DmiInteger
208	ACCESS		read-only
209	STATUS		mandatory
210	DESCRIPTION	"The upper failure threshold for the temperature probe."
211	::= {eTemperature 9}
212
213a2Templocation OBJECT-TYPE
214	SYNTAX		DmiDisplaystring
215	ACCESS		read-only
216	STATUS		mandatory
217	DESCRIPTION	"The location of this temperature probe within the system."
218	::= {eTemperature 10}
219
220SFan ::= SEQUENCE {
221	a3Fansparentindex                       	DmiInteger,
222	a3Fansindex                             	DmiInteger,
223	a3Fanstype                              	DmiInteger,
224	a3Fansstatus                            	DmiInteger,
225	a3Fansreading                           	DmiInteger,
226	a3Fanswarningmin                        	DmiDisplaystring,
227	a3Fansmaxwarn                           	DmiDisplaystring,
228	a3Fansminfail                           	DmiInteger,
229	a3Fansmaxfail                           	DmiInteger,
230	a3Fanslocation                          	DmiDisplaystring
231}
232
233tFan OBJECT-TYPE
234	SYNTAX		SEQUENCE OF SFan
235	ACCESS		not-accessible
236	STATUS		mandatory
237	DESCRIPTION	"This group defines the attributes for the fan probes this
238system."
239	::= {dmtfGroups 3}
240
241eFan OBJECT-TYPE
242	SYNTAX		SFan
243	ACCESS		not-accessible
244	STATUS		mandatory
245	DESCRIPTION	""
246	INDEX		{DmiComponentIndex, a3Fansparentindex, a3Fansindex}
247	::= {tFan 1}
248
249a3Fansparentindex OBJECT-TYPE
250	SYNTAX		DmiInteger
251	ACCESS		read-only
252	STATUS		mandatory
253	DESCRIPTION	"An index into the chassis table."
254	::= {eFan 1}
255
256a3Fansindex OBJECT-TYPE
257	SYNTAX		DmiInteger
258	ACCESS		read-only
259	STATUS		mandatory
260	DESCRIPTION	"index into this fan probe table."
261	::= {eFan 2}
262
263a3Fanstype OBJECT-TYPE
264	SYNTAX		INTEGER {
265		vOther                                  	(1),
266		vUnknown                                	(2),
267		vBoolean                                	(3),
268		vRpm                                    	(4)
269	}
270	ACCESS		read-only
271	STATUS		mandatory
272	DESCRIPTION	"Defines the type of the fan probe."
273	::= {eFan 3}
274
275a3Fansstatus OBJECT-TYPE
276	SYNTAX		INTEGER {
277		vOther                                  	(1),
278		vUnknown                                	(2),
279		vOk                                     	(3),
280		vNon-critical                           	(4),
281		vCritical                               	(5),
282		vNon-recoverable                        	(6)
283	}
284	ACCESS		read-only
285	STATUS		mandatory
286	DESCRIPTION	"Current status of the fan probe."
287	::= {eFan 4}
288
289a3Fansreading OBJECT-TYPE
290	SYNTAX		DmiInteger
291	ACCESS		read-only
292	STATUS		mandatory
293	DESCRIPTION	"The reading of the fan probe in RPM (or boolean)."
294	::= {eFan 5}
295
296a3Fanswarningmin OBJECT-TYPE
297	SYNTAX		DmiDisplaystring
298	ACCESS		read-write
299	STATUS		mandatory
300	DESCRIPTION	"The lower warning threshold for the fan probe set by the
301user."
302	::= {eFan 6}
303
304a3Fansmaxwarn OBJECT-TYPE
305	SYNTAX		DmiDisplaystring
306	ACCESS		read-write
307	STATUS		mandatory
308	DESCRIPTION	"The upper warning threshold for the fan probe set by the
309user."
310	::= {eFan 7}
311
312a3Fansminfail OBJECT-TYPE
313	SYNTAX		DmiInteger
314	ACCESS		read-only
315	STATUS		mandatory
316	DESCRIPTION	"The lower failure threshold for the fan probe."
317	::= {eFan 8}
318
319a3Fansmaxfail OBJECT-TYPE
320	SYNTAX		DmiInteger
321	ACCESS		read-only
322	STATUS		mandatory
323	DESCRIPTION	"The upper failure threshold for the fan probe."
324	::= {eFan 9}
325
326a3Fanslocation OBJECT-TYPE
327	SYNTAX		DmiDisplaystring
328	ACCESS		read-only
329	STATUS		mandatory
330	DESCRIPTION	"The location of this fan probe within the system."
331	::= {eFan 10}
332
333SVoltage ::= SEQUENCE {
334	a4Voltparentindex                       	DmiInteger,
335	a4Voltindex                             	DmiInteger,
336	a4Volttype                              	DmiInteger,
337	a4Voltstatus                            	DmiInteger,
338	a4Voltreading                           	DmiInteger,
339	a4Voltminwarn                           	DmiDisplaystring,
340	a4Voltmaxwarn                           	DmiDisplaystring,
341	a4Voltminfail                           	DmiInteger,
342	a4Voltmaxfail                           	DmiInteger,
343	a4Voltlocation                          	DmiDisplaystring
344}
345
346tVoltage OBJECT-TYPE
347	SYNTAX		SEQUENCE OF SVoltage
348	ACCESS		not-accessible
349	STATUS		mandatory
350	DESCRIPTION	"The Voltage group contains the data on all the voltage probes
351in a system."
352	::= {dmtfGroups 4}
353
354eVoltage OBJECT-TYPE
355	SYNTAX		SVoltage
356	ACCESS		not-accessible
357	STATUS		mandatory
358	DESCRIPTION	""
359	INDEX		{DmiComponentIndex, a4Voltparentindex, a4Voltindex}
360	::= {tVoltage 1}
361
362a4Voltparentindex OBJECT-TYPE
363	SYNTAX		DmiInteger
364	ACCESS		read-only
365	STATUS		mandatory
366	DESCRIPTION	"The chassis this voltage probe is connected to."
367	::= {eVoltage 1}
368
369a4Voltindex OBJECT-TYPE
370	SYNTAX		DmiInteger
371	ACCESS		read-only
372	STATUS		mandatory
373	DESCRIPTION	"the index of the voltage probe within the chassis."
374	::= {eVoltage 2}
375
376a4Volttype OBJECT-TYPE
377	SYNTAX		INTEGER {
378		vOther                                  	(1),
379		vUnknown                                	(2),
380		v-3_3v                                   	(3),
381		v3_3v                                   	(4),
382		v-5v                                    	(5),
383		v5v                                    	(6),
384		v-12v                                   	(7),
385		v12v                                   	(8),
386		v15v                                   	(9),
387		vCore                                   	(10)
388	}
389	ACCESS		read-only
390	STATUS		mandatory
391	DESCRIPTION	"The type of voltage probe"
392	::= {eVoltage 3}
393
394a4Voltstatus OBJECT-TYPE
395	SYNTAX		INTEGER {
396		vOther                                  	(1),
397		vUnknown                                	(2),
398		vOk                                     	(3),
399		vNon-critical                           	(4),
400		vCritical                               	(5),
401		vNon-recoverable                        	(6)
402	}
403	ACCESS		read-only
404	STATUS		mandatory
405	DESCRIPTION	"Status of the voltage probe."
406	::= {eVoltage 4}
407
408a4Voltreading OBJECT-TYPE
409	SYNTAX		DmiInteger
410	ACCESS		read-only
411	STATUS		mandatory
412	DESCRIPTION	"Current reading of the voltage probe, in millivolts."
413	::= {eVoltage 5}
414
415a4Voltminwarn OBJECT-TYPE
416	SYNTAX		DmiDisplaystring
417	ACCESS		read-write
418	STATUS		mandatory
419	DESCRIPTION	"lower warning threshold value for this voltage probe."
420	::= {eVoltage 6}
421
422a4Voltmaxwarn OBJECT-TYPE
423	SYNTAX		DmiDisplaystring
424	ACCESS		read-write
425	STATUS		mandatory
426	DESCRIPTION	"upper warning threshold value for this voltage probe."
427	::= {eVoltage 7}
428
429a4Voltminfail OBJECT-TYPE
430	SYNTAX		DmiInteger
431	ACCESS		read-only
432	STATUS		mandatory
433	DESCRIPTION	"lower failure threshold value for this voltage probe."
434	::= {eVoltage 8}
435
436a4Voltmaxfail OBJECT-TYPE
437	SYNTAX		DmiInteger
438	ACCESS		read-only
439	STATUS		mandatory
440	DESCRIPTION	"upper failure threshold value for this voltage probe."
441	::= {eVoltage 9}
442
443a4Voltlocation OBJECT-TYPE
444	SYNTAX		DmiDisplaystring
445	ACCESS		read-only
446	STATUS		mandatory
447	DESCRIPTION	"the location of this voltage probe within the system."
448	::= {eVoltage 10}
449
450SCurrent ::= SEQUENCE {
451	a5Ampparentindex                        	DmiInteger,
452	a5Ampindex                              	DmiInteger,
453	a5Amptype                               	DmiInteger,
454	a5Ampstatus                             	DmiInteger,
455	a5Ampreading                            	DmiInteger,
456	a5Ampminwarn                            	DmiDisplaystring,
457	a5Ampmaxwarn                            	DmiDisplaystring,
458	a5Ampminfail                            	DmiInteger,
459	a5Ampmaxfail                            	DmiInteger,
460	a5Amplocation                           	DmiDisplaystring
461}
462
463tCurrent OBJECT-TYPE
464	SYNTAX		SEQUENCE OF SCurrent
465	ACCESS		not-accessible
466	STATUS		mandatory
467	DESCRIPTION	"The Current group contains the data on all the Current probes
468in a system."
469	::= {dmtfGroups 5}
470
471eCurrent OBJECT-TYPE
472	SYNTAX		SCurrent
473	ACCESS		not-accessible
474	STATUS		mandatory
475	DESCRIPTION	""
476	INDEX		{DmiComponentIndex, a5Ampparentindex, a5Ampindex}
477	::= {tCurrent 1}
478
479a5Ampparentindex OBJECT-TYPE
480	SYNTAX		DmiInteger
481	ACCESS		read-only
482	STATUS		mandatory
483	DESCRIPTION	"The chassis this current probe is connected to."
484	::= {eCurrent 1}
485
486a5Ampindex OBJECT-TYPE
487	SYNTAX		DmiInteger
488	ACCESS		read-only
489	STATUS		mandatory
490	DESCRIPTION	"the index of the current probe within the chassis."
491	::= {eCurrent 2}
492
493a5Amptype OBJECT-TYPE
494	SYNTAX		INTEGER {
495		vOther                                  	(1),
496		vUnknown                                	(2),
497		v-3_3v                                   	(3),
498		v3_3v                                   	(4),
499		v-5v                                    	(5),
500		v5v                                    	(6),
501		v-12v                                   	(7),
502		v12v                                   	(8)
503	}
504	ACCESS		read-only
505	STATUS		mandatory
506	DESCRIPTION	"The type of current probe"
507	::= {eCurrent 3}
508
509a5Ampstatus OBJECT-TYPE
510	SYNTAX		INTEGER {
511		vOther                                  	(1),
512		vUnknown                                	(2),
513		vOk                                     	(3),
514		vNon-critical                           	(4),
515		vCritical                               	(5),
516		vNon-recoverable                        	(6)
517	}
518	ACCESS		read-only
519	STATUS		mandatory
520	DESCRIPTION	"Status of the current probe."
521	::= {eCurrent 4}
522
523a5Ampreading OBJECT-TYPE
524	SYNTAX		DmiInteger
525	ACCESS		read-only
526	STATUS		mandatory
527	DESCRIPTION	"Current reading of the current probe in milliamps."
528	::= {eCurrent 5}
529
530a5Ampminwarn OBJECT-TYPE
531	SYNTAX		DmiDisplaystring
532	ACCESS		read-write
533	STATUS		mandatory
534	DESCRIPTION	"lower warning threshold value for this current probe."
535	::= {eCurrent 6}
536
537a5Ampmaxwarn OBJECT-TYPE
538	SYNTAX		DmiDisplaystring
539	ACCESS		read-write
540	STATUS		mandatory
541	DESCRIPTION	"upper warning threshold value for this current probe."
542	::= {eCurrent 7}
543
544a5Ampminfail OBJECT-TYPE
545	SYNTAX		DmiInteger
546	ACCESS		read-only
547	STATUS		mandatory
548	DESCRIPTION	"lower failure threshold value for this current probe."
549	::= {eCurrent 8}
550
551a5Ampmaxfail OBJECT-TYPE
552	SYNTAX		DmiInteger
553	ACCESS		read-only
554	STATUS		mandatory
555	DESCRIPTION	"upper failure threshold value for this current probe."
556	::= {eCurrent 9}
557
558a5Amplocation OBJECT-TYPE
559	SYNTAX		DmiDisplaystring
560	ACCESS		read-only
561	STATUS		mandatory
562	DESCRIPTION	"the location of this current probe within the system."
563	::= {eCurrent 10}
564
565SPowerSupply ::= SEQUENCE {
566	a6Pwrsupplyparentindex                  	DmiInteger,
567	a6Pwrsupplyindex                        	DmiInteger,
568	a6Pwrsupplytype                         	DmiInteger,
569	a6Pwrsupplystatus                       	DmiInteger,
570	a6Pwrsupplyonline                       	DmiDisplaystring
571}
572
573tPowerSupply OBJECT-TYPE
574	SYNTAX		SEQUENCE OF SPowerSupply
575	ACCESS		not-accessible
576	STATUS		mandatory
577	DESCRIPTION	"The Power Supply group contains the data on all the redundant
578power supplies in a system."
579	::= {dmtfGroups 6}
580
581ePowerSupply OBJECT-TYPE
582	SYNTAX		SPowerSupply
583	ACCESS		not-accessible
584	STATUS		mandatory
585	DESCRIPTION	""
586	INDEX		{DmiComponentIndex, a6Pwrsupplyparentindex, a6Pwrsupplyindex}
587	::= {tPowerSupply 1}
588
589a6Pwrsupplyparentindex OBJECT-TYPE
590	SYNTAX		DmiInteger
591	ACCESS		read-only
592	STATUS		mandatory
593	DESCRIPTION	"The chassis this power supply is connected to."
594	::= {ePowerSupply 1}
595
596a6Pwrsupplyindex OBJECT-TYPE
597	SYNTAX		DmiInteger
598	ACCESS		read-only
599	STATUS		mandatory
600	DESCRIPTION	"The index within the chassis of this power supply."
601	::= {ePowerSupply 2}
602
603a6Pwrsupplytype OBJECT-TYPE
604	SYNTAX		INTEGER {
605		vOther                                  	(1),
606		vUnknown                                	(2),
607		vPspb                                   	(3),
608		v230w                                   	(4),
609		v500w                                   	(5),
610		v700w                                   	(6),
611		v300w                                   	(7)
612	}
613	ACCESS		read-only
614	STATUS		mandatory
615	DESCRIPTION	"The type of power supply."
616	::= {ePowerSupply 3}
617
618a6Pwrsupplystatus OBJECT-TYPE
619	SYNTAX		INTEGER {
620		vOther                                  	(1),
621		vUnknown                                	(2),
622		vOk                                     	(3),
623		vNon-critical                           	(4),
624		vCritical                               	(5),
625		vNon-recoverable                        	(6)
626	}
627	ACCESS		read-only
628	STATUS		mandatory
629	DESCRIPTION	"The current status of this power supply."
630	::= {ePowerSupply 4}
631
632a6Pwrsupplyonline OBJECT-TYPE
633	SYNTAX		DmiDisplaystring
634	ACCESS		read-write
635	STATUS		mandatory
636	DESCRIPTION	"The current online status of this power supply. Setting this
637value to FALSE will turn off the power supply, setting it to TRUE will turn
638on the power supply. "
639	::= {ePowerSupply 5}
640
641SGlobalPowerUnit ::= SEQUENCE {
642	a7Pwrunitstatus                         	DmiInteger,
643	a7Pwrunitgloballevel                    	DmiInteger,
644	a7Pwrunitglobalmaxwarn                  	DmiDisplaystring,
645	a7Pwrunitlevel33v                       	DmiInteger,
646	a7Pwrunitmaxwarn33v                     	DmiDisplaystring,
647	a7Pwrunitlevel5v                        	DmiInteger,
648	a7Pwrunitmaxwarn5v                      	DmiDisplaystring,
649	a7Pwrunitlevel12v                       	DmiInteger,
650	a7Pwrunitmaxwarn12v                     	DmiDisplaystring,
651	a7Pwrunituid                            	DmiDisplaystring,
652	a7Pwrunitindex                          	DmiInteger
653}
654
655tGlobalPowerUnit OBJECT-TYPE
656	SYNTAX		SEQUENCE OF SGlobalPowerUnit
657	ACCESS		not-accessible
658	STATUS		mandatory
659	DESCRIPTION	"This group contains the global status for the power supplies
660in the system."
661	::= {dmtfGroups 7}
662
663eGlobalPowerUnit OBJECT-TYPE
664	SYNTAX		SGlobalPowerUnit
665	ACCESS		not-accessible
666	STATUS		mandatory
667	DESCRIPTION	""
668	INDEX		{DmiComponentIndex, a7Pwrunitindex}
669	::= {tGlobalPowerUnit 1}
670
671a7Pwrunitstatus OBJECT-TYPE
672	SYNTAX		INTEGER {
673		vOther                                  	(1),
674		vUnknown                                	(2),
675		vNotApplicableUnitNotRedundant          	(3),
676		vOffline                                	(4),
677		vFullyRedundant                         	(5),
678		vDegradedRedundancy                     	(6),
679		vRedundancyLost                         	(7)
680	}
681	ACCESS		read-only
682	STATUS		mandatory
683	DESCRIPTION	"The current redundancy status of the power unit."
684	::= {eGlobalPowerUnit 1}
685
686a7Pwrunitgloballevel OBJECT-TYPE
687	SYNTAX		DmiInteger
688	ACCESS		read-only
689	STATUS		mandatory
690	DESCRIPTION	"The current global power level usage, in percent."
691	::= {eGlobalPowerUnit 2}
692
693a7Pwrunitglobalmaxwarn OBJECT-TYPE
694	SYNTAX		DmiDisplaystring
695	ACCESS		read-write
696	STATUS		mandatory
697	DESCRIPTION	"Warning threshold, in percent"
698	::= {eGlobalPowerUnit 3}
699
700a7Pwrunitlevel33v OBJECT-TYPE
701	SYNTAX		DmiInteger
702	ACCESS		read-only
703	STATUS		mandatory
704	DESCRIPTION	"The current 3.3v power level usage, in percent."
705	::= {eGlobalPowerUnit 4}
706
707a7Pwrunitmaxwarn33v OBJECT-TYPE
708	SYNTAX		DmiDisplaystring
709	ACCESS		read-write
710	STATUS		mandatory
711	DESCRIPTION	"Warning threshold, in percent"
712	::= {eGlobalPowerUnit 5}
713
714a7Pwrunitlevel5v OBJECT-TYPE
715	SYNTAX		DmiInteger
716	ACCESS		read-only
717	STATUS		mandatory
718	DESCRIPTION	"The current 5v power level usage, in percent."
719	::= {eGlobalPowerUnit 6}
720
721a7Pwrunitmaxwarn5v OBJECT-TYPE
722	SYNTAX		DmiDisplaystring
723	ACCESS		read-write
724	STATUS		mandatory
725	DESCRIPTION	"Warning threshold, in percent"
726	::= {eGlobalPowerUnit 7}
727
728a7Pwrunitlevel12v OBJECT-TYPE
729	SYNTAX		DmiInteger
730	ACCESS		read-only
731	STATUS		mandatory
732	DESCRIPTION	"The current 12v power level usage, in percent."
733	::= {eGlobalPowerUnit 8}
734
735a7Pwrunitmaxwarn12v OBJECT-TYPE
736	SYNTAX		DmiDisplaystring
737	ACCESS		read-write
738	STATUS		mandatory
739	DESCRIPTION	"Warning threshold, in percent"
740	::= {eGlobalPowerUnit 9}
741
742a7Pwrunituid OBJECT-TYPE
743	SYNTAX		DmiDisplaystring
744	ACCESS		read-only
745	STATUS		mandatory
746	DESCRIPTION	"The unique ID for this power supply unit."
747	::= {eGlobalPowerUnit 10}
748
749a7Pwrunitindex OBJECT-TYPE
750	SYNTAX		DmiInteger
751	ACCESS		read-only
752	STATUS		mandatory
753	DESCRIPTION	"The index into the power supply unit table."
754	::= {eGlobalPowerUnit 11}
755
756SChassisExtension ::= SEQUENCE {
757	a8Chassindex                            	DmiInteger,
758	a8Chassglobstatus                       	DmiInteger,
759	a8Chasstempstatus                       	DmiInteger,
760	a8Chasstempprobes                       	DmiOctetstring,
761	a8Chassfansstatus                       	DmiInteger,
762	a8Chassfansprobes                       	DmiOctetstring,
763	a8Chassvoltstatus                       	DmiInteger,
764	a8Chassvoltprobes                       	DmiOctetstring,
765	a8Chassampstatus                        	DmiInteger,
766	a8Chassampprobes                        	DmiOctetstring,
767	a8Chasspsstatus                         	DmiInteger,
768	a8Chasspwrsupplies                      	DmiOctetstring,
769	a8Chassservicetag                       	DmiDisplaystring,
770	a8Chassuid                              	DmiDisplaystring,
771	a8Chassbackplaneuid                     	DmiDisplaystring,
772	a8Chassidentify                         	DmiDisplaystring,
773	a8Chassfancontrol                       	DmiDisplaystring,
774	a8Chassledconfig                        	DmiDisplaystring,
775	a8Chassfaultclear                       	DmiDisplaystring
776}
777
778tChassisExtension OBJECT-TYPE
779	SYNTAX		SEQUENCE OF SChassisExtension
780	ACCESS		not-accessible
781	STATUS		mandatory
782	DESCRIPTION	"Global status of devices in chassis."
783	::= {dmtfGroups 8}
784
785eChassisExtension OBJECT-TYPE
786	SYNTAX		SChassisExtension
787	ACCESS		not-accessible
788	STATUS		mandatory
789	DESCRIPTION	""
790	INDEX		{DmiComponentIndex, a8Chassindex}
791	::= {tChassisExtension 1}
792
793a8Chassindex OBJECT-TYPE
794	SYNTAX		DmiInteger
795	ACCESS		read-only
796	STATUS		mandatory
797	DESCRIPTION	"Physical container index"
798	::= {eChassisExtension 1}
799
800a8Chassglobstatus OBJECT-TYPE
801	SYNTAX		INTEGER {
802		vOther                                  	(1),
803		vUnknown                                	(2),
804		vOk                                     	(3),
805		vNon-critical                           	(4),
806		vCritical                               	(5),
807		vNon-recoverable                        	(6)
808	}
809	ACCESS		read-only
810	STATUS		mandatory
811	DESCRIPTION	"Global status of all devices in chassis."
812	::= {eChassisExtension 2}
813
814a8Chasstempstatus OBJECT-TYPE
815	SYNTAX		INTEGER {
816		vOther                                  	(1),
817		vUnknown                                	(2),
818		vOk                                     	(3),
819		vNon-critical                           	(4),
820		vCritical                               	(5),
821		vNon-recoverable                        	(6)
822	}
823	ACCESS		read-only
824	STATUS		mandatory
825	DESCRIPTION	"Global status of temperature probes."
826	::= {eChassisExtension 3}
827
828a8Chasstempprobes OBJECT-TYPE
829	SYNTAX		DmiOctetstring
830	ACCESS		read-only
831	STATUS		mandatory
832	DESCRIPTION	"This contains the statuses of all temp probes in the system,
833one probe per octet.  The value of each octet is the value of the status
834field."
835	::= {eChassisExtension 4}
836
837a8Chassfansstatus OBJECT-TYPE
838	SYNTAX		INTEGER {
839		vOther                                  	(1),
840		vUnknown                                	(2),
841		vOk                                     	(3),
842		vNon-critical                           	(4),
843		vCritical                               	(5),
844		vNon-recoverable                        	(6)
845	}
846	ACCESS		read-only
847	STATUS		mandatory
848	DESCRIPTION	"Global status of fan sensors."
849	::= {eChassisExtension 5}
850
851a8Chassfansprobes OBJECT-TYPE
852	SYNTAX		DmiOctetstring
853	ACCESS		read-only
854	STATUS		mandatory
855	DESCRIPTION	"This contains the statuses of all fan probes in the system,
856one probe per octet.  The value of each octet is the value of the status
857field."
858	::= {eChassisExtension 6}
859
860a8Chassvoltstatus OBJECT-TYPE
861	SYNTAX		INTEGER {
862		vOther                                  	(1),
863		vUnknown                                	(2),
864		vOk                                     	(3),
865		vNon-critical                           	(4),
866		vCritical                               	(5),
867		vNon-recoverable                        	(6)
868	}
869	ACCESS		read-only
870	STATUS		mandatory
871	DESCRIPTION	"Global status of voltage probes."
872	::= {eChassisExtension 7}
873
874a8Chassvoltprobes OBJECT-TYPE
875	SYNTAX		DmiOctetstring
876	ACCESS		read-only
877	STATUS		mandatory
878	DESCRIPTION	"This contains the statuses of all volt probes in the system,
879one probe per octet.  The value of each octet is the value of the status
880field."
881	::= {eChassisExtension 8}
882
883a8Chassampstatus OBJECT-TYPE
884	SYNTAX		INTEGER {
885		vOther                                  	(1),
886		vUnknown                                	(2),
887		vOk                                     	(3),
888		vNon-critical                           	(4),
889		vCritical                               	(5),
890		vNon-recoverable                        	(6)
891	}
892	ACCESS		read-only
893	STATUS		mandatory
894	DESCRIPTION	"Global status of current probes."
895	::= {eChassisExtension 9}
896
897a8Chassampprobes OBJECT-TYPE
898	SYNTAX		DmiOctetstring
899	ACCESS		read-only
900	STATUS		mandatory
901	DESCRIPTION	"This contains the statuses of all amp probes in the system,
902one probe per octet.  The value of each octet is the value of the status
903field."
904	::= {eChassisExtension 10}
905
906a8Chasspsstatus OBJECT-TYPE
907	SYNTAX		INTEGER {
908		vOther                                  	(1),
909		vUnknown                                	(2),
910		vOk                                     	(3),
911		vNon-critical                           	(4),
912		vCritical                               	(5),
913		vNon-recoverable                        	(6)
914	}
915	ACCESS		read-only
916	STATUS		mandatory
917	DESCRIPTION	"Global status of power supplies."
918	::= {eChassisExtension 11}
919
920a8Chasspwrsupplies OBJECT-TYPE
921	SYNTAX		DmiOctetstring
922	ACCESS		read-only
923	STATUS		mandatory
924	DESCRIPTION	"This contains the statuses of all power supplies in the system,
925one probe per octet.  The value of each octet is the value of the status
926field."
927	::= {eChassisExtension 12}
928
929a8Chassservicetag OBJECT-TYPE
930	SYNTAX		DmiDisplaystring
931	ACCESS		read-only
932	STATUS		mandatory
933	DESCRIPTION	"This is the service tag for this chassis, if it exists."
934	::= {eChassisExtension 13}
935
936a8Chassuid OBJECT-TYPE
937	SYNTAX		DmiDisplaystring
938	ACCESS		read-only
939	STATUS		mandatory
940	DESCRIPTION	"This is the Unique ID for this chassis, if it exists."
941	::= {eChassisExtension 14}
942
943a8Chassbackplaneuid OBJECT-TYPE
944	SYNTAX		DmiDisplaystring
945	ACCESS		read-only
946	STATUS		mandatory
947	DESCRIPTION	"This is the Unique ID for the backplane in this chassis."
948	::= {eChassisExtension 15}
949
950a8Chassidentify OBJECT-TYPE
951	SYNTAX		DmiDisplaystring
952	ACCESS		read-write
953	STATUS		mandatory
954	DESCRIPTION	"This attribute is used to visually identify a disk pod or
955other chassis by causing its lights to flash. Setting this value to non-zero
956turns on the identify, setting it back to zero turns it off."
957	::= {eChassisExtension 16}
958
959a8Chassfancontrol OBJECT-TYPE
960	SYNTAX		DmiDisplaystring
961	ACCESS		read-write
962	STATUS		mandatory
963	DESCRIPTION	"This attribute is used to control the fan speed in a chassis.
964 If the value is 0, then fan control is notavailable.  A value of 2 indicates
965maximum cooling.  Avalue of 1 indicates minimize fan noise (and speed)."
966	::= {eChassisExtension 17}
967
968a8Chassledconfig OBJECT-TYPE
969	SYNTAX		DmiDisplaystring
970	ACCESS		read-write
971	STATUS		mandatory
972	DESCRIPTION	"This attribute is used to configure which fault conditionscause
973the fault LED to flash.  If the value is 0, thenthis feature is not available.
974 A value of 16 indicatesflash for failure conditions.  A value of 8 indicatesfla
975h for failure and warning conditions."
976	::= {eChassisExtension 18}
977
978a8Chassfaultclear OBJECT-TYPE
979	SYNTAX		DmiDisplaystring
980	ACCESS		read-write
981	STATUS		mandatory
982	DESCRIPTION	"This attribute is used to clear the hard drive fault LED.If
983this value is non-zero, then it is available.  Writingany value to this attribut
984 will clear the hard drive faultLED."
985	::= {eChassisExtension 19}
986
987SPhysicalContainerGlobalTable ::= SEQUENCE {
988	a9ContainerOrChassisType                	DmiInteger,
989	a9ContainerAssetTag                     	DmiDisplaystring,
990	a9ChassisLockPresent                    	DmiInteger,
991	a9ContainerChassisBootupState           	DmiInteger,
992	a9PowerState                            	DmiInteger,
993	a9ThermalState                          	DmiInteger,
994	a9FruGroupIndex                         	DmiInteger,
995	a9OperationalGroupIndex                 	DmiInteger,
996	a9ContainerIndex                        	DmiInteger,
997	a9ContainerName                         	DmiDisplaystring,
998	a9ContainerLocation                     	DmiDisplaystring,
999	a9ContainerSecurityStatus               	DmiInteger
1000}
1001
1002tPhysicalContainerGlobalTable OBJECT-TYPE
1003	SYNTAX		SEQUENCE OF SPhysicalContainerGlobalTable
1004	ACCESS		not-accessible
1005	STATUS		mandatory
1006	DESCRIPTION	"The chassis class contains information about chassis."
1007	::= {dmtfGroups 9}
1008
1009ePhysicalContainerGlobalTable OBJECT-TYPE
1010	SYNTAX		SPhysicalContainerGlobalTable
1011	ACCESS		not-accessible
1012	STATUS		mandatory
1013	DESCRIPTION	""
1014	INDEX		{DmiComponentIndex, a9ContainerIndex}
1015	::= {tPhysicalContainerGlobalTable 1}
1016
1017a9ContainerOrChassisType OBJECT-TYPE
1018	SYNTAX		INTEGER {
1019		vOther                                  	(1),
1020		vUnknown                                	(2),
1021		vDesktop                                	(3),
1022		vLowProfileDesktop                      	(4),
1023		vPizzaBox                               	(5),
1024		vMiniTower                              	(6),
1025		vTower                                  	(7),
1026		vPortable                               	(8),
1027		vLaptop                                 	(9),
1028		vNotebook                               	(10),
1029		vHandheld                               	(11),
1030		vDockingStation                         	(12),
1031		vAllInOne                               	(13),
1032		vSubNotebook                            	(14),
1033		vSpace-saving                           	(15),
1034		vLunchBox                               	(16),
1035		vMainSystemChassis                      	(17),
1036		vExpansionChassis                       	(18),
1037		vSubchassis                             	(19),
1038		vBusExpansionChassis                    	(20),
1039		vPeripheralChassis                      	(21),
1040		vRaidChassis                            	(22),
1041		vRackMountChassis                       	(23)
1042	}
1043	ACCESS		read-only
1044	STATUS		mandatory
1045	DESCRIPTION	"The type of container or chassis."
1046	::= {ePhysicalContainerGlobalTable 1}
1047
1048a9ContainerAssetTag OBJECT-TYPE
1049	SYNTAX		DmiDisplaystring
1050	ACCESS		read-write
1051	STATUS		mandatory
1052	DESCRIPTION	"The Container asset tag string.  This asset tag string is
1053writeable by the system administrator."
1054	::= {ePhysicalContainerGlobalTable 2}
1055
1056a9ChassisLockPresent OBJECT-TYPE
1057	SYNTAX		INTEGER {
1058		vFalse                                  	(0),
1059		vTrue                                   	(1),
1060		vUnknown                                	(2)
1061	}
1062	ACCESS		read-only
1063	STATUS		mandatory
1064	DESCRIPTION	"If true, a chassis lock is present on the container."
1065	::= {ePhysicalContainerGlobalTable 3}
1066
1067a9ContainerChassisBootupState OBJECT-TYPE
1068	SYNTAX		INTEGER {
1069		vOther                                  	(1),
1070		vUnknown                                	(2),
1071		vOk                                     	(3),
1072		vNon-critical                           	(4),
1073		vCritical                               	(5),
1074		vNon-recoverable                        	(6)
1075	}
1076	ACCESS		read-only
1077	STATUS		mandatory
1078	DESCRIPTION	"The current state of this system when it booted."
1079	::= {ePhysicalContainerGlobalTable 4}
1080
1081a9PowerState OBJECT-TYPE
1082	SYNTAX		INTEGER {
1083		vOther                                  	(1),
1084		vUnknown                                	(2),
1085		vOk                                     	(3),
1086		vNon-critical                           	(4),
1087		vCritical                               	(5),
1088		vNon-recoverable                        	(6)
1089	}
1090	ACCESS		read-only
1091	STATUS		mandatory
1092	DESCRIPTION	"The current state of the power supply for this system."
1093	::= {ePhysicalContainerGlobalTable 5}
1094
1095a9ThermalState OBJECT-TYPE
1096	SYNTAX		INTEGER {
1097		vOther                                  	(1),
1098		vUnknown                                	(2),
1099		vOk                                     	(3),
1100		vNon-critical                           	(4),
1101		vCritical                               	(5),
1102		vNon-recoverable                        	(6)
1103	}
1104	ACCESS		read-only
1105	STATUS		mandatory
1106	DESCRIPTION	"The current thermal state of this container."
1107	::= {ePhysicalContainerGlobalTable 6}
1108
1109a9FruGroupIndex OBJECT-TYPE
1110	SYNTAX		DmiInteger
1111	ACCESS		read-only
1112	STATUS		mandatory
1113	DESCRIPTION	"If this is a field Replacable Unit or if it is part of another
1114FRU, this provides an index into the FRU table; value=-1 indicates that the
1115group is not a FRU"
1116	::= {ePhysicalContainerGlobalTable 7}
1117
1118a9OperationalGroupIndex OBJECT-TYPE
1119	SYNTAX		DmiInteger
1120	ACCESS		read-only
1121	STATUS		mandatory
1122	DESCRIPTION	"The index into the Operational State table for this device,
1123if applicable."
1124	::= {ePhysicalContainerGlobalTable 8}
1125
1126a9ContainerIndex OBJECT-TYPE
1127	SYNTAX		DmiInteger
1128	ACCESS		read-only
1129	STATUS		mandatory
1130	DESCRIPTION	"A unique index for the Physical Container in the Physical
1131Container Global Table."
1132	::= {ePhysicalContainerGlobalTable 9}
1133
1134a9ContainerName OBJECT-TYPE
1135	SYNTAX		DmiDisplaystring
1136	ACCESS		read-write
1137	STATUS		mandatory
1138	DESCRIPTION	"This is any 64-octet long name that the user or system administr
1139tor wishes to give this specific physical container."
1140	::= {ePhysicalContainerGlobalTable 10}
1141
1142a9ContainerLocation OBJECT-TYPE
1143	SYNTAX		DmiDisplaystring
1144	ACCESS		read-write
1145	STATUS		mandatory
1146	DESCRIPTION	"This attribute is a string name for the location of the containe
1147.  This attribute is read-write and may be set to any appropriate value by
1148the user. The string may be 128 octets long."
1149	::= {ePhysicalContainerGlobalTable 11}
1150
1151a9ContainerSecurityStatus OBJECT-TYPE
1152	SYNTAX		INTEGER {
1153		vOther                                  	(1),
1154		vUnknown                                	(2),
1155		vNoSecurityBreachDetected               	(3),
1156		vContainerSecurityBreachAttempted       	(4),
1157		vContainerSecurityBreached              	(5)
1158	}
1159	ACCESS		read-only
1160	STATUS		mandatory
1161	DESCRIPTION	"This attribute describes whether the Container is physically
1162secure or not.  This includes the state of the door lock, or the boot devices
1163or the keyboard or mouse."
1164	::= {ePhysicalContainerGlobalTable 12}
1165
1166SSystemControl ::= SEQUENCE {
1167	a10AutomaticCapabilities                	DmiInteger,
1168	a10AutomaticSettings                    	DmiDisplaystring,
1169	a10NotificationNumber                   	DmiDisplaystring,
1170	a10ManualCapabilities                   	DmiInteger,
1171	a10ManualControl                        	DmiDisplaystring
1172}
1173
1174tSystemControl OBJECT-TYPE
1175	SYNTAX		SEQUENCE OF SSystemControl
1176	ACCESS		not-accessible
1177	STATUS		mandatory
1178	DESCRIPTION	"This group defines whether System Control functions are availabl
1179 and enabled."
1180	::= {dmtfGroups 10}
1181
1182eSystemControl OBJECT-TYPE
1183	SYNTAX		SSystemControl
1184	ACCESS		not-accessible
1185	STATUS		mandatory
1186	DESCRIPTION	""
1187	INDEX		{DmiComponentIndex}
1188	::= {tSystemControl 1}
1189
1190a10AutomaticCapabilities OBJECT-TYPE
1191	SYNTAX		DmiInteger
1192	ACCESS		read-only
1193	STATUS		mandatory
1194	DESCRIPTION	"Indicates which Automatic  Capabilities are available for
1195the current operating system. Encoding is as follows:   0x1 = Supports Reboot
1196 0x2 = Supports Power Cycle  0x4 = Supports Notification If value is nonzero,
1197Watchdog is supported."
1198	::= {eSystemControl 1}
1199
1200a10AutomaticSettings OBJECT-TYPE
1201	SYNTAX		DmiDisplaystring
1202	ACCESS		read-write
1203	STATUS		mandatory
1204	DESCRIPTION	"Indicates which Automatic Settings are enabled by the user.
1205Encoding is as follows:  0x1 = Enabled w/ Reboot 0x2 = Enabled w/ Power Cycle
12060x4 = Enabled w/ Notification If value is nonzero, Watchdog is Enabled."
1207	::= {eSystemControl 2}
1208
1209a10NotificationNumber OBJECT-TYPE
1210	SYNTAX		DmiDisplaystring
1211	ACCESS		read-write
1212	STATUS		mandatory
1213	DESCRIPTION	"The number to dial when the watchdog timer elapses."
1214	::= {eSystemControl 3}
1215
1216a10ManualCapabilities OBJECT-TYPE
1217	SYNTAX		DmiInteger
1218	ACCESS		read-only
1219	STATUS		mandatory
1220	DESCRIPTION	"Describes which system reset actions may occur.Bit encodings:
1221                                 0x1 = Reboot 0x2 = Power Off 0x4 = Power
1222Cycle 0x8 = Shutdown OS"
1223	::= {eSystemControl 4}
1224
1225a10ManualControl OBJECT-TYPE
1226	SYNTAX		DmiDisplaystring
1227	ACCESS		read-write
1228	STATUS		mandatory
1229	DESCRIPTION	"Setting this value will immediately perform one of the following
1230functions. Encoding as follows: Bit encoding:  0x1 = Reboot  0x2 = Power
1231Off  0x4 = Power Cycle  0x8 = Shutdown OS"
1232	::= {eSystemControl 5}
1233
1234SEsmEventLog ::= SEQUENCE {
1235	a11Esmlogindex                          	DmiInteger,
1236	a11Esmlogdata                           	DmiDisplaystring
1237}
1238
1239tEsmEventLog OBJECT-TYPE
1240	SYNTAX		SEQUENCE OF SEsmEventLog
1241	ACCESS		not-accessible
1242	STATUS		mandatory
1243	DESCRIPTION	"ESM Event Log."
1244	::= {dmtfGroups 11}
1245
1246eEsmEventLog OBJECT-TYPE
1247	SYNTAX		SEsmEventLog
1248	ACCESS		not-accessible
1249	STATUS		mandatory
1250	DESCRIPTION	""
1251	INDEX		{DmiComponentIndex, a11Esmlogindex}
1252	::= {tEsmEventLog 1}
1253
1254a11Esmlogindex OBJECT-TYPE
1255	SYNTAX		DmiInteger
1256	ACCESS		read-only
1257	STATUS		mandatory
1258	DESCRIPTION	"KEY: The index to this log."
1259	::= {eEsmEventLog 1}
1260
1261a11Esmlogdata OBJECT-TYPE
1262	SYNTAX		DmiDisplaystring
1263	ACCESS		read-write
1264	STATUS		mandatory
1265	DESCRIPTION	"The event log data for the ESM."
1266	::= {eEsmEventLog 2}
1267
1268SPostEventLog ::= SEQUENCE {
1269	a12Postlogindex                         	DmiInteger,
1270	a12Postlogdata                          	DmiOctetstring
1271}
1272
1273tPostEventLog OBJECT-TYPE
1274	SYNTAX		SEQUENCE OF SPostEventLog
1275	ACCESS		not-accessible
1276	STATUS		mandatory
1277	DESCRIPTION	"POST Codes Event Log."
1278	::= {dmtfGroups 12}
1279
1280ePostEventLog OBJECT-TYPE
1281	SYNTAX		SPostEventLog
1282	ACCESS		not-accessible
1283	STATUS		mandatory
1284	DESCRIPTION	""
1285	INDEX		{DmiComponentIndex, a12Postlogindex}
1286	::= {tPostEventLog 1}
1287
1288a12Postlogindex OBJECT-TYPE
1289	SYNTAX		DmiInteger
1290	ACCESS		read-only
1291	STATUS		mandatory
1292	DESCRIPTION	"KEY: The index into the post log."
1293	::= {ePostEventLog 1}
1294
1295a12Postlogdata OBJECT-TYPE
1296	SYNTAX		DmiOctetstring
1297	ACCESS		read-only
1298	STATUS		mandatory
1299	DESCRIPTION	"The event log data."
1300	::= {ePostEventLog 2}
1301
1302SUserSecurityGroup ::= SEQUENCE {
1303	a13UserIndex                            	DmiInteger,
1304	a13UserName                             	DmiDisplaystring,
1305	a13UserControl                          	DmiDisplaystring
1306}
1307
1308tUserSecurityGroup OBJECT-TYPE
1309	SYNTAX		SEQUENCE OF SUserSecurityGroup
1310	ACCESS		not-accessible
1311	STATUS		mandatory
1312	DESCRIPTION	"Security Group - contains user database: Used by both DSA
1313and Baseboard components."
1314	::= {dmtfGroups 13}
1315
1316eUserSecurityGroup OBJECT-TYPE
1317	SYNTAX		SUserSecurityGroup
1318	ACCESS		not-accessible
1319	STATUS		mandatory
1320	DESCRIPTION	""
1321	INDEX		{DmiComponentIndex, a13UserIndex}
1322	::= {tUserSecurityGroup 1}
1323
1324a13UserIndex OBJECT-TYPE
1325	SYNTAX		DmiInteger
1326	ACCESS		read-only
1327	STATUS		mandatory
1328	DESCRIPTION	"Keyed ID for this group."
1329	::= {eUserSecurityGroup 1}
1330
1331a13UserName OBJECT-TYPE
1332	SYNTAX		DmiDisplaystring
1333	ACCESS		read-only
1334	STATUS		mandatory
1335	DESCRIPTION	"User name. First user name is 'create', allows creation."
1336	::= {eUserSecurityGroup 2}
1337
1338a13UserControl OBJECT-TYPE
1339	SYNTAX		DmiDisplaystring
1340	ACCESS		read-write
1341	STATUS		mandatory
1342	DESCRIPTION	"User control. Used for creating/deleting/editing users."
1343	::= {eUserSecurityGroup 3}
1344
1345SDialupControl ::= SEQUENCE {
1346	a14DialupCapability                     	DmiInteger,
1347	a14CallbackNumber                       	DmiDisplaystring
1348}
1349
1350tDialupControl OBJECT-TYPE
1351	SYNTAX		SEQUENCE OF SDialupControl
1352	ACCESS		not-accessible
1353	STATUS		mandatory
1354	DESCRIPTION	"Dialup Control - contains information used by the ESM dialup
1355interface."
1356	::= {dmtfGroups 14}
1357
1358eDialupControl OBJECT-TYPE
1359	SYNTAX		SDialupControl
1360	ACCESS		not-accessible
1361	STATUS		mandatory
1362	DESCRIPTION	""
1363	INDEX		{DmiComponentIndex}
1364	::= {tDialupControl 1}
1365
1366a14DialupCapability OBJECT-TYPE
1367	SYNTAX		INTEGER {
1368		vFalse                                  	(0),
1369		vTrue                                   	(1)
1370	}
1371	ACCESS		read-only
1372	STATUS		mandatory
1373	DESCRIPTION	"Specifies if this system supports dialup."
1374	::= {eDialupControl 1}
1375
1376a14CallbackNumber OBJECT-TYPE
1377	SYNTAX		DmiDisplaystring
1378	ACCESS		read-write
1379	STATUS		mandatory
1380	DESCRIPTION	"The number to callback when a dialup connection is established."
1381	::= {eDialupControl 2}
1382
1383SFirmwareInformation ::= SEQUENCE {
1384	a15FirmwareChassisIndex                 	DmiInteger,
1385	a15FirmwareIndex                        	DmiInteger,
1386	a15FirmwareType                         	DmiInteger,
1387	a15FirmwareVersion                      	DmiDisplaystring,
1388	a15FirmwareStatus                       	DmiInteger
1389}
1390
1391tFirmwareInformation OBJECT-TYPE
1392	SYNTAX		SEQUENCE OF SFirmwareInformation
1393	ACCESS		not-accessible
1394	STATUS		mandatory
1395	DESCRIPTION	"Firmware Information - Contains version/status of firmware."
1396	::= {dmtfGroups 15}
1397
1398eFirmwareInformation OBJECT-TYPE
1399	SYNTAX		SFirmwareInformation
1400	ACCESS		not-accessible
1401	STATUS		mandatory
1402	DESCRIPTION	""
1403	INDEX		{DmiComponentIndex, a15FirmwareChassisIndex, a15FirmwareIndex}
1404	::= {tFirmwareInformation 1}
1405
1406a15FirmwareChassisIndex OBJECT-TYPE
1407	SYNTAX		DmiInteger
1408	ACCESS		read-only
1409	STATUS		mandatory
1410	DESCRIPTION	"Firmware chassis index"
1411	::= {eFirmwareInformation 1}
1412
1413a15FirmwareIndex OBJECT-TYPE
1414	SYNTAX		DmiInteger
1415	ACCESS		read-only
1416	STATUS		mandatory
1417	DESCRIPTION	"Index into the firmware information table"
1418	::= {eFirmwareInformation 2}
1419
1420a15FirmwareType OBJECT-TYPE
1421	SYNTAX		INTEGER {
1422		vOther                                  	(1),
1423		vUnknown                                	(2),
1424		vBios                                   	(3),
1425		vEsm                                    	(4),
1426		vPspb                                   	(5),
1427		vBackplane                              	(6)
1428	}
1429	ACCESS		read-write
1430	STATUS		mandatory
1431	DESCRIPTION	"The type of this firmware."
1432	::= {eFirmwareInformation 3}
1433
1434a15FirmwareVersion OBJECT-TYPE
1435	SYNTAX		DmiDisplaystring
1436	ACCESS		read-only
1437	STATUS		mandatory
1438	DESCRIPTION	"Version level of this firmware"
1439	::= {eFirmwareInformation 4}
1440
1441a15FirmwareStatus OBJECT-TYPE
1442	SYNTAX		INTEGER {
1443		vOther                                  	(1),
1444		vUnknown                                	(2),
1445		vOk                                     	(3),
1446		vNon-critical                           	(4),
1447		vCritical                               	(5),
1448		vNon-recoverable                        	(6)
1449	}
1450	ACCESS		read-only
1451	STATUS		mandatory
1452	DESCRIPTION	"Current status of this firmware, if applicable"
1453	::= {eFirmwareInformation 5}
1454
1455SMiftomib ::= SEQUENCE {
1456	a99DellBaseboardMib                     	DmiDisplaystring,
1457	a99MibOid                               	DmiDisplaystring,
1458	a99DisableTraps                         	DmiInteger
1459}
1460
1461tMiftomib OBJECT-TYPE
1462	SYNTAX		SEQUENCE OF SMiftomib
1463	ACCESS		not-accessible
1464	STATUS		mandatory
1465	DESCRIPTION	"This group maps the DMI attributes to SNMP."
1466	::= {dmtfGroups 99}
1467
1468eMiftomib OBJECT-TYPE
1469	SYNTAX		SMiftomib
1470	ACCESS		not-accessible
1471	STATUS		mandatory
1472	DESCRIPTION	""
1473	INDEX		{DmiComponentIndex}
1474	::= {tMiftomib 1}
1475
1476a99DellBaseboardMib OBJECT-TYPE
1477	SYNTAX		DmiDisplaystring
1478	ACCESS		read-only
1479	STATUS		mandatory
1480	DESCRIPTION	"The MIB name that defines thif MIF"
1481	::= {eMiftomib 1}
1482
1483a99MibOid OBJECT-TYPE
1484	SYNTAX		DmiDisplaystring
1485	ACCESS		read-only
1486	STATUS		mandatory
1487	DESCRIPTION	"The MIB OID that corresponds to this MIF"
1488	::= {eMiftomib 2}
1489
1490a99DisableTraps OBJECT-TYPE
1491	SYNTAX		DmiInteger
1492	ACCESS		read-only
1493	STATUS		mandatory
1494	DESCRIPTION	"Setting this value to 1 disables trap generation."
1495	::= {eMiftomib 3}
1496
1497STemperatureProbeAlerts ::= SEQUENCE {
1498	a102EventType                           	DmiInteger,
1499	a102EventSeverity                       	DmiInteger,
1500	a102IsEventStateBased                   	DmiInteger,
1501	a102EventStateKey                       	DmiInteger,
1502	a102AssociatedGroup                     	DmiDisplaystring,
1503	a102EventSystem                         	DmiInteger,
1504	a102EventSubsystem                      	DmiInteger,
1505	a102EventSolution                       	DmiInteger,
1506	a102InstanceDataPresent                 	DmiInteger,
1507	a102VendorSpecificMessage               	DmiDisplaystring,
1508	a102VendorSpecificData                  	DmiOctetstring,
1509	a102VendorTrapNumber                    	DmiInteger
1510}
1511
1512tTemperatureProbeAlerts OBJECT-TYPE
1513	SYNTAX		SEQUENCE OF STemperatureProbeAlerts
1514	ACCESS		not-accessible
1515	STATUS		mandatory
1516	DESCRIPTION	""
1517	::= {dmtfGroups 102}
1518
1519eTemperatureProbeAlerts OBJECT-TYPE
1520	SYNTAX		STemperatureProbeAlerts
1521	ACCESS		not-accessible
1522	STATUS		mandatory
1523	DESCRIPTION	""
1524	INDEX		{DmiComponentIndex, a102AssociatedGroup}
1525	::= {tTemperatureProbeAlerts 1}
1526
1527a102EventType OBJECT-TYPE
1528	SYNTAX		INTEGER {
1529		vCoolingDeviceStatusChange              	(1)
1530	}
1531	ACCESS		read-only
1532	STATUS		mandatory
1533	DESCRIPTION	"The type of event that has occurred."
1534	::= {eTemperatureProbeAlerts 1}
1535
1536a102EventSeverity OBJECT-TYPE
1537	SYNTAX		INTEGER {
1538		vMonitor                                	(1),
1539		vInformation                            	(2),
1540		vOk                                     	(4),
1541		vNon-critical                           	(8),
1542		vCritical                               	(10),
1543		vNon-recoverable                        	(12)
1544	}
1545	ACCESS		read-only
1546	STATUS		mandatory
1547	DESCRIPTION	"The severity of this event."
1548	::= {eTemperatureProbeAlerts 2}
1549
1550a102IsEventStateBased OBJECT-TYPE
1551	SYNTAX		INTEGER {
1552		vFalse                                  	(0),
1553		vTrue                                   	(1)
1554	}
1555	ACCESS		read-only
1556	STATUS		mandatory
1557	DESCRIPTION	""
1558	::= {eTemperatureProbeAlerts 3}
1559
1560a102EventStateKey OBJECT-TYPE
1561	SYNTAX		DmiInteger
1562	ACCESS		read-only
1563	STATUS		mandatory
1564	DESCRIPTION	""
1565	::= {eTemperatureProbeAlerts 4}
1566
1567a102AssociatedGroup OBJECT-TYPE
1568	SYNTAX		DmiDisplaystring
1569	ACCESS		read-only
1570	STATUS		mandatory
1571	DESCRIPTION	""
1572	::= {eTemperatureProbeAlerts 5}
1573
1574a102EventSystem OBJECT-TYPE
1575	SYNTAX		DmiInteger
1576	ACCESS		read-only
1577	STATUS		mandatory
1578	DESCRIPTION	""
1579	::= {eTemperatureProbeAlerts 6}
1580
1581a102EventSubsystem OBJECT-TYPE
1582	SYNTAX		DmiInteger
1583	ACCESS		read-only
1584	STATUS		mandatory
1585	DESCRIPTION	""
1586	::= {eTemperatureProbeAlerts 7}
1587
1588a102EventSolution OBJECT-TYPE
1589	SYNTAX		INTEGER {
1590		vOther                                  	(1),
1591		vUnknown                                	(2)
1592	}
1593	ACCESS		read-only
1594	STATUS		mandatory
1595	DESCRIPTION	""
1596	::= {eTemperatureProbeAlerts 8}
1597
1598a102InstanceDataPresent OBJECT-TYPE
1599	SYNTAX		INTEGER {
1600		vFalse                                  	(0),
1601		vTrue                                   	(1)
1602	}
1603	ACCESS		read-only
1604	STATUS		mandatory
1605	DESCRIPTION	""
1606	::= {eTemperatureProbeAlerts 9}
1607
1608a102VendorSpecificMessage OBJECT-TYPE
1609	SYNTAX		DmiDisplaystring
1610	ACCESS		read-only
1611	STATUS		mandatory
1612	DESCRIPTION	""
1613	::= {eTemperatureProbeAlerts 10}
1614
1615a102VendorSpecificData OBJECT-TYPE
1616	SYNTAX		DmiOctetstring
1617	ACCESS		read-only
1618	STATUS		mandatory
1619	DESCRIPTION	""
1620	::= {eTemperatureProbeAlerts 11}
1621
1622a102VendorTrapNumber OBJECT-TYPE
1623	SYNTAX		DmiInteger
1624	ACCESS		read-only
1625	STATUS		mandatory
1626	DESCRIPTION	""
1627	::= {eTemperatureProbeAlerts 12}
1628
1629SFanSensorAlerts ::= SEQUENCE {
1630	a103EventType                           	DmiInteger,
1631	a103EventSeverity                       	DmiInteger,
1632	a103IsEventStateBased                   	DmiInteger,
1633	a103EventStateKey                       	DmiInteger,
1634	a103AssociatedGroup                     	DmiDisplaystring,
1635	a103EventSystem                         	DmiInteger,
1636	a103EventSubsystem                      	DmiInteger,
1637	a103EventSolution                       	DmiInteger,
1638	a103InstanceDataPresent                 	DmiInteger,
1639	a103VendorSpecificMessage               	DmiDisplaystring,
1640	a103VendorSpecificData                  	DmiOctetstring,
1641	a103VendorTrapNumber                    	DmiInteger
1642}
1643
1644tFanSensorAlerts OBJECT-TYPE
1645	SYNTAX		SEQUENCE OF SFanSensorAlerts
1646	ACCESS		not-accessible
1647	STATUS		mandatory
1648	DESCRIPTION	""
1649	::= {dmtfGroups 103}
1650
1651eFanSensorAlerts OBJECT-TYPE
1652	SYNTAX		SFanSensorAlerts
1653	ACCESS		not-accessible
1654	STATUS		mandatory
1655	DESCRIPTION	""
1656	INDEX		{DmiComponentIndex, a103AssociatedGroup}
1657	::= {tFanSensorAlerts 1}
1658
1659a103EventType OBJECT-TYPE
1660	SYNTAX		INTEGER {
1661		vCoolingDeviceStatusChange              	(1)
1662	}
1663	ACCESS		read-only
1664	STATUS		mandatory
1665	DESCRIPTION	"The type of event that has occurred."
1666	::= {eFanSensorAlerts 1}
1667
1668a103EventSeverity OBJECT-TYPE
1669	SYNTAX		INTEGER {
1670		vMonitor                                	(1),
1671		vInformation                            	(2),
1672		vOk                                     	(4),
1673		vNon-critical                           	(8),
1674		vCritical                               	(10),
1675		vNon-recoverable                        	(12)
1676	}
1677	ACCESS		read-only
1678	STATUS		mandatory
1679	DESCRIPTION	"The severity of this event."
1680	::= {eFanSensorAlerts 2}
1681
1682a103IsEventStateBased OBJECT-TYPE
1683	SYNTAX		INTEGER {
1684		vFalse                                  	(0),
1685		vTrue                                   	(1)
1686	}
1687	ACCESS		read-only
1688	STATUS		mandatory
1689	DESCRIPTION	""
1690	::= {eFanSensorAlerts 3}
1691
1692a103EventStateKey OBJECT-TYPE
1693	SYNTAX		DmiInteger
1694	ACCESS		read-only
1695	STATUS		mandatory
1696	DESCRIPTION	""
1697	::= {eFanSensorAlerts 4}
1698
1699a103AssociatedGroup OBJECT-TYPE
1700	SYNTAX		DmiDisplaystring
1701	ACCESS		read-only
1702	STATUS		mandatory
1703	DESCRIPTION	""
1704	::= {eFanSensorAlerts 5}
1705
1706a103EventSystem OBJECT-TYPE
1707	SYNTAX		DmiInteger
1708	ACCESS		read-only
1709	STATUS		mandatory
1710	DESCRIPTION	""
1711	::= {eFanSensorAlerts 6}
1712
1713a103EventSubsystem OBJECT-TYPE
1714	SYNTAX		DmiInteger
1715	ACCESS		read-only
1716	STATUS		mandatory
1717	DESCRIPTION	""
1718	::= {eFanSensorAlerts 7}
1719
1720a103EventSolution OBJECT-TYPE
1721	SYNTAX		INTEGER {
1722		vOther                                  	(1),
1723		vUnknown                                	(2)
1724	}
1725	ACCESS		read-only
1726	STATUS		mandatory
1727	DESCRIPTION	""
1728	::= {eFanSensorAlerts 8}
1729
1730a103InstanceDataPresent OBJECT-TYPE
1731	SYNTAX		INTEGER {
1732		vFalse                                  	(0),
1733		vTrue                                   	(1)
1734	}
1735	ACCESS		read-only
1736	STATUS		mandatory
1737	DESCRIPTION	""
1738	::= {eFanSensorAlerts 9}
1739
1740a103VendorSpecificMessage OBJECT-TYPE
1741	SYNTAX		DmiDisplaystring
1742	ACCESS		read-only
1743	STATUS		mandatory
1744	DESCRIPTION	""
1745	::= {eFanSensorAlerts 10}
1746
1747a103VendorSpecificData OBJECT-TYPE
1748	SYNTAX		DmiOctetstring
1749	ACCESS		read-only
1750	STATUS		mandatory
1751	DESCRIPTION	""
1752	::= {eFanSensorAlerts 11}
1753
1754a103VendorTrapNumber OBJECT-TYPE
1755	SYNTAX		DmiInteger
1756	ACCESS		read-only
1757	STATUS		mandatory
1758	DESCRIPTION	""
1759	::= {eFanSensorAlerts 12}
1760
1761SVoltageProbeAlerts ::= SEQUENCE {
1762	a104EventType                           	DmiInteger,
1763	a104EventSeverity                       	DmiInteger,
1764	a104IsEventStateBased                   	DmiInteger,
1765	a104EventStateKey                       	DmiInteger,
1766	a104AssociatedGroup                     	DmiDisplaystring,
1767	a104EventSystem                         	DmiInteger,
1768	a104EventSubsystem                      	DmiInteger,
1769	a104EventSolution                       	DmiInteger,
1770	a104InstanceDataPresent                 	DmiInteger,
1771	a104VendorSpecificMessage               	DmiDisplaystring,
1772	a104VendorSpecificData                  	DmiOctetstring,
1773	a104VendorTrapNumber                    	DmiInteger
1774}
1775
1776tVoltageProbeAlerts OBJECT-TYPE
1777	SYNTAX		SEQUENCE OF SVoltageProbeAlerts
1778	ACCESS		not-accessible
1779	STATUS		mandatory
1780	DESCRIPTION	""
1781	::= {dmtfGroups 104}
1782
1783eVoltageProbeAlerts OBJECT-TYPE
1784	SYNTAX		SVoltageProbeAlerts
1785	ACCESS		not-accessible
1786	STATUS		mandatory
1787	DESCRIPTION	""
1788	INDEX		{DmiComponentIndex, a104AssociatedGroup}
1789	::= {tVoltageProbeAlerts 1}
1790
1791a104EventType OBJECT-TYPE
1792	SYNTAX		INTEGER {
1793		vPowerSupplyStatusChange                	(1)
1794	}
1795	ACCESS		read-only
1796	STATUS		mandatory
1797	DESCRIPTION	"The type of event that has occurred."
1798	::= {eVoltageProbeAlerts 1}
1799
1800a104EventSeverity OBJECT-TYPE
1801	SYNTAX		INTEGER {
1802		vMonitor                                	(1),
1803		vInformation                            	(2),
1804		vOk                                     	(4),
1805		vNon-critical                           	(8),
1806		vCritical                               	(10),
1807		vNon-recoverable                        	(12)
1808	}
1809	ACCESS		read-only
1810	STATUS		mandatory
1811	DESCRIPTION	"The severity of this event."
1812	::= {eVoltageProbeAlerts 2}
1813
1814a104IsEventStateBased OBJECT-TYPE
1815	SYNTAX		INTEGER {
1816		vFalse                                  	(0),
1817		vTrue                                   	(1)
1818	}
1819	ACCESS		read-only
1820	STATUS		mandatory
1821	DESCRIPTION	""
1822	::= {eVoltageProbeAlerts 3}
1823
1824a104EventStateKey OBJECT-TYPE
1825	SYNTAX		DmiInteger
1826	ACCESS		read-only
1827	STATUS		mandatory
1828	DESCRIPTION	""
1829	::= {eVoltageProbeAlerts 4}
1830
1831a104AssociatedGroup OBJECT-TYPE
1832	SYNTAX		DmiDisplaystring
1833	ACCESS		read-only
1834	STATUS		mandatory
1835	DESCRIPTION	""
1836	::= {eVoltageProbeAlerts 5}
1837
1838a104EventSystem OBJECT-TYPE
1839	SYNTAX		DmiInteger
1840	ACCESS		read-only
1841	STATUS		mandatory
1842	DESCRIPTION	""
1843	::= {eVoltageProbeAlerts 6}
1844
1845a104EventSubsystem OBJECT-TYPE
1846	SYNTAX		DmiInteger
1847	ACCESS		read-only
1848	STATUS		mandatory
1849	DESCRIPTION	""
1850	::= {eVoltageProbeAlerts 7}
1851
1852a104EventSolution OBJECT-TYPE
1853	SYNTAX		INTEGER {
1854		vOther                                  	(1),
1855		vUnknown                                	(2)
1856	}
1857	ACCESS		read-only
1858	STATUS		mandatory
1859	DESCRIPTION	""
1860	::= {eVoltageProbeAlerts 8}
1861
1862a104InstanceDataPresent OBJECT-TYPE
1863	SYNTAX		INTEGER {
1864		vFalse                                  	(0),
1865		vTrue                                   	(1)
1866	}
1867	ACCESS		read-only
1868	STATUS		mandatory
1869	DESCRIPTION	""
1870	::= {eVoltageProbeAlerts 9}
1871
1872a104VendorSpecificMessage OBJECT-TYPE
1873	SYNTAX		DmiDisplaystring
1874	ACCESS		read-only
1875	STATUS		mandatory
1876	DESCRIPTION	""
1877	::= {eVoltageProbeAlerts 10}
1878
1879a104VendorSpecificData OBJECT-TYPE
1880	SYNTAX		DmiOctetstring
1881	ACCESS		read-only
1882	STATUS		mandatory
1883	DESCRIPTION	""
1884	::= {eVoltageProbeAlerts 11}
1885
1886a104VendorTrapNumber OBJECT-TYPE
1887	SYNTAX		DmiInteger
1888	ACCESS		read-only
1889	STATUS		mandatory
1890	DESCRIPTION	""
1891	::= {eVoltageProbeAlerts 12}
1892
1893SCurrentProbeAlerts ::= SEQUENCE {
1894	a105EventType                           	DmiInteger,
1895	a105EventSeverity                       	DmiInteger,
1896	a105IsEventStateBased                   	DmiInteger,
1897	a105EventStateKey                       	DmiInteger,
1898	a105AssociatedGroup                     	DmiDisplaystring,
1899	a105EventSystem                         	DmiInteger,
1900	a105EventSubsystem                      	DmiInteger,
1901	a105EventSolution                       	DmiInteger,
1902	a105InstanceDataPresent                 	DmiInteger,
1903	a105VendorSpecificMessage               	DmiDisplaystring,
1904	a105VendorSpecificData                  	DmiOctetstring,
1905	a105VendorTrapNumber                    	DmiInteger
1906}
1907
1908tCurrentProbeAlerts OBJECT-TYPE
1909	SYNTAX		SEQUENCE OF SCurrentProbeAlerts
1910	ACCESS		not-accessible
1911	STATUS		mandatory
1912	DESCRIPTION	""
1913	::= {dmtfGroups 105}
1914
1915eCurrentProbeAlerts OBJECT-TYPE
1916	SYNTAX		SCurrentProbeAlerts
1917	ACCESS		not-accessible
1918	STATUS		mandatory
1919	DESCRIPTION	""
1920	INDEX		{DmiComponentIndex, a105AssociatedGroup}
1921	::= {tCurrentProbeAlerts 1}
1922
1923a105EventType OBJECT-TYPE
1924	SYNTAX		INTEGER {
1925		vPowerSupplyStatusChange                	(1)
1926	}
1927	ACCESS		read-only
1928	STATUS		mandatory
1929	DESCRIPTION	"The type of event that has occurred."
1930	::= {eCurrentProbeAlerts 1}
1931
1932a105EventSeverity OBJECT-TYPE
1933	SYNTAX		INTEGER {
1934		vMonitor                                	(1),
1935		vInformation                            	(2),
1936		vOk                                     	(4),
1937		vNon-critical                           	(8),
1938		vCritical                               	(10),
1939		vNon-recoverable                        	(12)
1940	}
1941	ACCESS		read-only
1942	STATUS		mandatory
1943	DESCRIPTION	"The severity of this event."
1944	::= {eCurrentProbeAlerts 2}
1945
1946a105IsEventStateBased OBJECT-TYPE
1947	SYNTAX		INTEGER {
1948		vFalse                                  	(0),
1949		vTrue                                   	(1)
1950	}
1951	ACCESS		read-only
1952	STATUS		mandatory
1953	DESCRIPTION	""
1954	::= {eCurrentProbeAlerts 3}
1955
1956a105EventStateKey OBJECT-TYPE
1957	SYNTAX		DmiInteger
1958	ACCESS		read-only
1959	STATUS		mandatory
1960	DESCRIPTION	""
1961	::= {eCurrentProbeAlerts 4}
1962
1963a105AssociatedGroup OBJECT-TYPE
1964	SYNTAX		DmiDisplaystring
1965	ACCESS		read-only
1966	STATUS		mandatory
1967	DESCRIPTION	""
1968	::= {eCurrentProbeAlerts 5}
1969
1970a105EventSystem OBJECT-TYPE
1971	SYNTAX		DmiInteger
1972	ACCESS		read-only
1973	STATUS		mandatory
1974	DESCRIPTION	""
1975	::= {eCurrentProbeAlerts 6}
1976
1977a105EventSubsystem OBJECT-TYPE
1978	SYNTAX		DmiInteger
1979	ACCESS		read-only
1980	STATUS		mandatory
1981	DESCRIPTION	""
1982	::= {eCurrentProbeAlerts 7}
1983
1984a105EventSolution OBJECT-TYPE
1985	SYNTAX		INTEGER {
1986		vOther                                  	(1),
1987		vUnknown                                	(2)
1988	}
1989	ACCESS		read-only
1990	STATUS		mandatory
1991	DESCRIPTION	""
1992	::= {eCurrentProbeAlerts 8}
1993
1994a105InstanceDataPresent OBJECT-TYPE
1995	SYNTAX		INTEGER {
1996		vFalse                                  	(0),
1997		vTrue                                   	(1)
1998	}
1999	ACCESS		read-only
2000	STATUS		mandatory
2001	DESCRIPTION	""
2002	::= {eCurrentProbeAlerts 9}
2003
2004a105VendorSpecificMessage OBJECT-TYPE
2005	SYNTAX		DmiDisplaystring
2006	ACCESS		read-only
2007	STATUS		mandatory
2008	DESCRIPTION	""
2009	::= {eCurrentProbeAlerts 10}
2010
2011a105VendorSpecificData OBJECT-TYPE
2012	SYNTAX		DmiOctetstring
2013	ACCESS		read-only
2014	STATUS		mandatory
2015	DESCRIPTION	""
2016	::= {eCurrentProbeAlerts 11}
2017
2018a105VendorTrapNumber OBJECT-TYPE
2019	SYNTAX		DmiInteger
2020	ACCESS		read-only
2021	STATUS		mandatory
2022	DESCRIPTION	""
2023	::= {eCurrentProbeAlerts 12}
2024
2025SPowerUnitAlerts ::= SEQUENCE {
2026	a107EventType                           	DmiInteger,
2027	a107EventSeverity                       	DmiInteger,
2028	a107IsEventStateBased                   	DmiInteger,
2029	a107EventStateKey                       	DmiInteger,
2030	a107AssociatedGroup                     	DmiDisplaystring,
2031	a107EventSystem                         	DmiInteger,
2032	a107EventSubsystem                      	DmiInteger,
2033	a107EventSolution                       	DmiInteger,
2034	a107InstanceDataPresent                 	DmiInteger,
2035	a107VendorSpecificMessage               	DmiDisplaystring,
2036	a107VendorSpecificData                  	DmiOctetstring,
2037	a107VendorTrapNumber                    	DmiInteger
2038}
2039
2040tPowerUnitAlerts OBJECT-TYPE
2041	SYNTAX		SEQUENCE OF SPowerUnitAlerts
2042	ACCESS		not-accessible
2043	STATUS		mandatory
2044	DESCRIPTION	""
2045	::= {dmtfGroups 107}
2046
2047ePowerUnitAlerts OBJECT-TYPE
2048	SYNTAX		SPowerUnitAlerts
2049	ACCESS		not-accessible
2050	STATUS		mandatory
2051	DESCRIPTION	""
2052	INDEX		{DmiComponentIndex, a107AssociatedGroup}
2053	::= {tPowerUnitAlerts 1}
2054
2055a107EventType OBJECT-TYPE
2056	SYNTAX		INTEGER {
2057		vPowerSupplyRedundancyChange            	(1),
2058		vPowerSupplyStatusChange                	(2)
2059	}
2060	ACCESS		read-only
2061	STATUS		mandatory
2062	DESCRIPTION	"The type of event that has occurred."
2063	::= {ePowerUnitAlerts 1}
2064
2065a107EventSeverity OBJECT-TYPE
2066	SYNTAX		INTEGER {
2067		vMonitor                                	(1),
2068		vInformation                            	(2),
2069		vOk                                     	(4),
2070		vNon-critical                           	(8),
2071		vCritical                               	(10),
2072		vNon-recoverable                        	(12)
2073	}
2074	ACCESS		read-only
2075	STATUS		mandatory
2076	DESCRIPTION	"The severity of this event."
2077	::= {ePowerUnitAlerts 2}
2078
2079a107IsEventStateBased OBJECT-TYPE
2080	SYNTAX		INTEGER {
2081		vFalse                                  	(0),
2082		vTrue                                   	(1)
2083	}
2084	ACCESS		read-only
2085	STATUS		mandatory
2086	DESCRIPTION	""
2087	::= {ePowerUnitAlerts 3}
2088
2089a107EventStateKey OBJECT-TYPE
2090	SYNTAX		DmiInteger
2091	ACCESS		read-only
2092	STATUS		mandatory
2093	DESCRIPTION	""
2094	::= {ePowerUnitAlerts 4}
2095
2096a107AssociatedGroup OBJECT-TYPE
2097	SYNTAX		DmiDisplaystring
2098	ACCESS		read-only
2099	STATUS		mandatory
2100	DESCRIPTION	""
2101	::= {ePowerUnitAlerts 5}
2102
2103a107EventSystem OBJECT-TYPE
2104	SYNTAX		DmiInteger
2105	ACCESS		read-only
2106	STATUS		mandatory
2107	DESCRIPTION	""
2108	::= {ePowerUnitAlerts 6}
2109
2110a107EventSubsystem OBJECT-TYPE
2111	SYNTAX		DmiInteger
2112	ACCESS		read-only
2113	STATUS		mandatory
2114	DESCRIPTION	""
2115	::= {ePowerUnitAlerts 7}
2116
2117a107EventSolution OBJECT-TYPE
2118	SYNTAX		INTEGER {
2119		vOther                                  	(1),
2120		vUnknown                                	(2)
2121	}
2122	ACCESS		read-only
2123	STATUS		mandatory
2124	DESCRIPTION	""
2125	::= {ePowerUnitAlerts 8}
2126
2127a107InstanceDataPresent OBJECT-TYPE
2128	SYNTAX		INTEGER {
2129		vFalse                                  	(0),
2130		vTrue                                   	(1)
2131	}
2132	ACCESS		read-only
2133	STATUS		mandatory
2134	DESCRIPTION	""
2135	::= {ePowerUnitAlerts 9}
2136
2137a107VendorSpecificMessage OBJECT-TYPE
2138	SYNTAX		DmiDisplaystring
2139	ACCESS		read-only
2140	STATUS		mandatory
2141	DESCRIPTION	""
2142	::= {ePowerUnitAlerts 10}
2143
2144a107VendorSpecificData OBJECT-TYPE
2145	SYNTAX		DmiOctetstring
2146	ACCESS		read-only
2147	STATUS		mandatory
2148	DESCRIPTION	""
2149	::= {ePowerUnitAlerts 11}
2150
2151a107VendorTrapNumber OBJECT-TYPE
2152	SYNTAX		DmiInteger
2153	ACCESS		read-only
2154	STATUS		mandatory
2155	DESCRIPTION	""
2156	::= {ePowerUnitAlerts 12}
2157
2158SChassisEventGeneration ::= SEQUENCE {
2159	a108EventType                           	DmiInteger,
2160	a108EventSeverity                       	DmiInteger,
2161	a108IsEventStateBased                   	DmiInteger,
2162	a108EventStateKey                       	DmiInteger,
2163	a108AssociatedGroup                     	DmiDisplaystring,
2164	a108EventSystem                         	DmiInteger,
2165	a108EventSubsystem                      	DmiInteger,
2166	a108EventSolution                       	DmiInteger,
2167	a108InstanceDataPresent                 	DmiInteger,
2168	a108VendorSpecificMessage               	DmiDisplaystring,
2169	a108VendorSpecificData                  	DmiOctetstring,
2170	a108VendorTrapNumber                    	DmiInteger
2171}
2172
2173tChassisEventGeneration OBJECT-TYPE
2174	SYNTAX		SEQUENCE OF SChassisEventGeneration
2175	ACCESS		not-accessible
2176	STATUS		mandatory
2177	DESCRIPTION	""
2178	::= {dmtfGroups 108}
2179
2180eChassisEventGeneration OBJECT-TYPE
2181	SYNTAX		SChassisEventGeneration
2182	ACCESS		not-accessible
2183	STATUS		mandatory
2184	DESCRIPTION	""
2185	INDEX		{DmiComponentIndex, a108AssociatedGroup}
2186	::= {tChassisEventGeneration 1}
2187
2188a108EventType OBJECT-TYPE
2189	SYNTAX		INTEGER {
2190		vMemoryEccError                         	(1)
2191	}
2192	ACCESS		read-only
2193	STATUS		mandatory
2194	DESCRIPTION	"The type of event that has occurred."
2195	::= {eChassisEventGeneration 1}
2196
2197a108EventSeverity OBJECT-TYPE
2198	SYNTAX		INTEGER {
2199		vMonitor                                	(1),
2200		vInformation                            	(2),
2201		vOk                                     	(4),
2202		vNon-critical                           	(8),
2203		vCritical                               	(10),
2204		vNon-recoverable                        	(12)
2205	}
2206	ACCESS		read-only
2207	STATUS		mandatory
2208	DESCRIPTION	"The severity of this event."
2209	::= {eChassisEventGeneration 2}
2210
2211a108IsEventStateBased OBJECT-TYPE
2212	SYNTAX		INTEGER {
2213		vFalse                                  	(0),
2214		vTrue                                   	(1)
2215	}
2216	ACCESS		read-only
2217	STATUS		mandatory
2218	DESCRIPTION	""
2219	::= {eChassisEventGeneration 3}
2220
2221a108EventStateKey OBJECT-TYPE
2222	SYNTAX		DmiInteger
2223	ACCESS		read-only
2224	STATUS		mandatory
2225	DESCRIPTION	""
2226	::= {eChassisEventGeneration 4}
2227
2228a108AssociatedGroup OBJECT-TYPE
2229	SYNTAX		DmiDisplaystring
2230	ACCESS		read-only
2231	STATUS		mandatory
2232	DESCRIPTION	""
2233	::= {eChassisEventGeneration 5}
2234
2235a108EventSystem OBJECT-TYPE
2236	SYNTAX		DmiInteger
2237	ACCESS		read-only
2238	STATUS		mandatory
2239	DESCRIPTION	""
2240	::= {eChassisEventGeneration 6}
2241
2242a108EventSubsystem OBJECT-TYPE
2243	SYNTAX		DmiInteger
2244	ACCESS		read-only
2245	STATUS		mandatory
2246	DESCRIPTION	""
2247	::= {eChassisEventGeneration 7}
2248
2249a108EventSolution OBJECT-TYPE
2250	SYNTAX		INTEGER {
2251		vOther                                  	(1),
2252		vUnknown                                	(2)
2253	}
2254	ACCESS		read-only
2255	STATUS		mandatory
2256	DESCRIPTION	""
2257	::= {eChassisEventGeneration 8}
2258
2259a108InstanceDataPresent OBJECT-TYPE
2260	SYNTAX		INTEGER {
2261		vFalse                                  	(0),
2262		vTrue                                   	(1)
2263	}
2264	ACCESS		read-only
2265	STATUS		mandatory
2266	DESCRIPTION	""
2267	::= {eChassisEventGeneration 9}
2268
2269a108VendorSpecificMessage OBJECT-TYPE
2270	SYNTAX		DmiDisplaystring
2271	ACCESS		read-only
2272	STATUS		mandatory
2273	DESCRIPTION	""
2274	::= {eChassisEventGeneration 10}
2275
2276a108VendorSpecificData OBJECT-TYPE
2277	SYNTAX		DmiOctetstring
2278	ACCESS		read-only
2279	STATUS		mandatory
2280	DESCRIPTION	""
2281	::= {eChassisEventGeneration 11}
2282
2283a108VendorTrapNumber OBJECT-TYPE
2284	SYNTAX		DmiInteger
2285	ACCESS		read-only
2286	STATUS		mandatory
2287	DESCRIPTION	""
2288	::= {eChassisEventGeneration 12}
2289
2290SContainerEventGeneration ::= SEQUENCE {
2291	a109EventType                           	DmiInteger,
2292	a109EventSeverity                       	DmiInteger,
2293	a109IsEventStateBased                   	DmiInteger,
2294	a109EventStateKey                       	DmiInteger,
2295	a109AssociatedGroup                     	DmiDisplaystring,
2296	a109EventSystem                         	DmiInteger,
2297	a109EventSubsystem                      	DmiInteger,
2298	a109EventSolution                       	DmiInteger,
2299	a109InstanceDataPresent                 	DmiInteger,
2300	a109VendorSpecificMessage               	DmiDisplaystring,
2301	a109VendorSpecificData                  	DmiOctetstring,
2302	a109VendorTrapNumber                    	DmiInteger
2303}
2304
2305tContainerEventGeneration OBJECT-TYPE
2306	SYNTAX		SEQUENCE OF SContainerEventGeneration
2307	ACCESS		not-accessible
2308	STATUS		mandatory
2309	DESCRIPTION	""
2310	::= {dmtfGroups 109}
2311
2312eContainerEventGeneration OBJECT-TYPE
2313	SYNTAX		SContainerEventGeneration
2314	ACCESS		not-accessible
2315	STATUS		mandatory
2316	DESCRIPTION	""
2317	INDEX		{DmiComponentIndex, a109AssociatedGroup}
2318	::= {tContainerEventGeneration 1}
2319
2320a109EventType OBJECT-TYPE
2321	SYNTAX		INTEGER {
2322		vSecuritySettingsChange                 	(1),
2323		vPowerSupplyStatusChange                	(2),
2324		vCoolingDeviceStatusChange              	(3),
2325		vPhysicalDeviceStatusChange             	(4),
2326		vLogicalDeviceStatusChange              	(5),
2327		vContainerSecurityBreach                	(6),
2328		vConfigurationError                     	(7)
2329	}
2330	ACCESS		read-only
2331	STATUS		mandatory
2332	DESCRIPTION	"The type of event that has occurred."
2333	::= {eContainerEventGeneration 1}
2334
2335a109EventSeverity OBJECT-TYPE
2336	SYNTAX		INTEGER {
2337		vMonitor                                	(1),
2338		vInformation                            	(2),
2339		vOk                                     	(4),
2340		vNon-critical                           	(8),
2341		vCritical                               	(10),
2342		vNon-recoverable                        	(12)
2343	}
2344	ACCESS		read-only
2345	STATUS		mandatory
2346	DESCRIPTION	"The severity of this event."
2347	::= {eContainerEventGeneration 2}
2348
2349a109IsEventStateBased OBJECT-TYPE
2350	SYNTAX		INTEGER {
2351		vFalse                                  	(0),
2352		vTrue                                   	(1)
2353	}
2354	ACCESS		read-only
2355	STATUS		mandatory
2356	DESCRIPTION	""
2357	::= {eContainerEventGeneration 3}
2358
2359a109EventStateKey OBJECT-TYPE
2360	SYNTAX		DmiInteger
2361	ACCESS		read-only
2362	STATUS		mandatory
2363	DESCRIPTION	""
2364	::= {eContainerEventGeneration 4}
2365
2366a109AssociatedGroup OBJECT-TYPE
2367	SYNTAX		DmiDisplaystring
2368	ACCESS		read-only
2369	STATUS		mandatory
2370	DESCRIPTION	""
2371	::= {eContainerEventGeneration 5}
2372
2373a109EventSystem OBJECT-TYPE
2374	SYNTAX		DmiInteger
2375	ACCESS		read-only
2376	STATUS		mandatory
2377	DESCRIPTION	""
2378	::= {eContainerEventGeneration 6}
2379
2380a109EventSubsystem OBJECT-TYPE
2381	SYNTAX		DmiInteger
2382	ACCESS		read-only
2383	STATUS		mandatory
2384	DESCRIPTION	""
2385	::= {eContainerEventGeneration 7}
2386
2387a109EventSolution OBJECT-TYPE
2388	SYNTAX		INTEGER {
2389		vOther                                  	(1),
2390		vUnknown                                	(2)
2391	}
2392	ACCESS		read-only
2393	STATUS		mandatory
2394	DESCRIPTION	""
2395	::= {eContainerEventGeneration 8}
2396
2397a109InstanceDataPresent OBJECT-TYPE
2398	SYNTAX		INTEGER {
2399		vFalse                                  	(0),
2400		vTrue                                   	(1)
2401	}
2402	ACCESS		read-only
2403	STATUS		mandatory
2404	DESCRIPTION	""
2405	::= {eContainerEventGeneration 9}
2406
2407a109VendorSpecificMessage OBJECT-TYPE
2408	SYNTAX		DmiDisplaystring
2409	ACCESS		read-only
2410	STATUS		mandatory
2411	DESCRIPTION	""
2412	::= {eContainerEventGeneration 10}
2413
2414a109VendorSpecificData OBJECT-TYPE
2415	SYNTAX		DmiOctetstring
2416	ACCESS		read-only
2417	STATUS		mandatory
2418	DESCRIPTION	""
2419	::= {eContainerEventGeneration 11}
2420
2421a109VendorTrapNumber OBJECT-TYPE
2422	SYNTAX		DmiInteger
2423	ACCESS		read-only
2424	STATUS		mandatory
2425	DESCRIPTION	""
2426	::= {eContainerEventGeneration 12}
2427
2428SResetEventGeneration ::= SEQUENCE {
2429	a110EventType                           	DmiInteger,
2430	a110EventSeverity                       	DmiInteger,
2431	a110IsEventStateBased                   	DmiInteger,
2432	a110EventStateKey                       	DmiInteger,
2433	a110AssociatedGroup                     	DmiDisplaystring,
2434	a110EventSystem                         	DmiInteger,
2435	a110EventSubsystem                      	DmiInteger,
2436	a110EventSolution                       	DmiInteger,
2437	a110InstanceDataPresent                 	DmiInteger,
2438	a110VendorSpecificMessage               	DmiDisplaystring,
2439	a110VendorSpecificData                  	DmiOctetstring,
2440	a110VendorTrapNumber                    	DmiInteger
2441}
2442
2443tResetEventGeneration OBJECT-TYPE
2444	SYNTAX		SEQUENCE OF SResetEventGeneration
2445	ACCESS		not-accessible
2446	STATUS		mandatory
2447	DESCRIPTION	""
2448	::= {dmtfGroups 110}
2449
2450eResetEventGeneration OBJECT-TYPE
2451	SYNTAX		SResetEventGeneration
2452	ACCESS		not-accessible
2453	STATUS		mandatory
2454	DESCRIPTION	""
2455	INDEX		{DmiComponentIndex, a110AssociatedGroup}
2456	::= {tResetEventGeneration 1}
2457
2458a110EventType OBJECT-TYPE
2459	SYNTAX		INTEGER {
2460		vSystemUp                               	(1)
2461	}
2462	ACCESS		read-only
2463	STATUS		mandatory
2464	DESCRIPTION	"The type of event that has occurred."
2465	::= {eResetEventGeneration 1}
2466
2467a110EventSeverity OBJECT-TYPE
2468	SYNTAX		INTEGER {
2469		vMonitor                                	(1),
2470		vInformation                            	(2),
2471		vOk                                     	(4),
2472		vNon-critical                           	(8),
2473		vCritical                               	(10),
2474		vNon-recoverable                        	(12)
2475	}
2476	ACCESS		read-only
2477	STATUS		mandatory
2478	DESCRIPTION	"The severity of this event."
2479	::= {eResetEventGeneration 2}
2480
2481a110IsEventStateBased OBJECT-TYPE
2482	SYNTAX		INTEGER {
2483		vFalse                                  	(0),
2484		vTrue                                   	(1)
2485	}
2486	ACCESS		read-only
2487	STATUS		mandatory
2488	DESCRIPTION	""
2489	::= {eResetEventGeneration 3}
2490
2491a110EventStateKey OBJECT-TYPE
2492	SYNTAX		DmiInteger
2493	ACCESS		read-only
2494	STATUS		mandatory
2495	DESCRIPTION	""
2496	::= {eResetEventGeneration 4}
2497
2498a110AssociatedGroup OBJECT-TYPE
2499	SYNTAX		DmiDisplaystring
2500	ACCESS		read-only
2501	STATUS		mandatory
2502	DESCRIPTION	""
2503	::= {eResetEventGeneration 5}
2504
2505a110EventSystem OBJECT-TYPE
2506	SYNTAX		DmiInteger
2507	ACCESS		read-only
2508	STATUS		mandatory
2509	DESCRIPTION	""
2510	::= {eResetEventGeneration 6}
2511
2512a110EventSubsystem OBJECT-TYPE
2513	SYNTAX		DmiInteger
2514	ACCESS		read-only
2515	STATUS		mandatory
2516	DESCRIPTION	""
2517	::= {eResetEventGeneration 7}
2518
2519a110EventSolution OBJECT-TYPE
2520	SYNTAX		INTEGER {
2521		vOther                                  	(1),
2522		vUnknown                                	(2)
2523	}
2524	ACCESS		read-only
2525	STATUS		mandatory
2526	DESCRIPTION	""
2527	::= {eResetEventGeneration 8}
2528
2529a110InstanceDataPresent OBJECT-TYPE
2530	SYNTAX		INTEGER {
2531		vFalse                                  	(0),
2532		vTrue                                   	(1)
2533	}
2534	ACCESS		read-only
2535	STATUS		mandatory
2536	DESCRIPTION	""
2537	::= {eResetEventGeneration 9}
2538
2539a110VendorSpecificMessage OBJECT-TYPE
2540	SYNTAX		DmiDisplaystring
2541	ACCESS		read-only
2542	STATUS		mandatory
2543	DESCRIPTION	""
2544	::= {eResetEventGeneration 10}
2545
2546a110VendorSpecificData OBJECT-TYPE
2547	SYNTAX		DmiOctetstring
2548	ACCESS		read-only
2549	STATUS		mandatory
2550	DESCRIPTION	""
2551	::= {eResetEventGeneration 11}
2552
2553a110VendorTrapNumber OBJECT-TYPE
2554	SYNTAX		DmiInteger
2555	ACCESS		read-only
2556	STATUS		mandatory
2557	DESCRIPTION	""
2558	::= {eResetEventGeneration 12}
2559
2560
2561-- Below are the TRAP definitions for the dell server baseboard
2562
2563tTrapGroup OBJECT-TYPE
2564    SYNTAX        SEQUENCE OF STrapGroup
2565    ACCESS        not-accessible
2566    STATUS        mandatory
2567    DESCRIPTION    "This group defines attributes needed for Trap
2568            definition. This group does not exist in MIF file"
2569    ::= {dmtfGroups 9999}
2570
2571STrapGroup ::= SEQUENCE {
2572    a9999AlertSystem         OCTET STRING,
2573    a9999AlertGroup          OCTET STRING,
2574    a9999AlertMessage        OCTET STRING,
2575    a9999AlertSeverity       DmiInteger,
2576    a9999AlertData           OCTET STRING
2577}
2578
2579eTrapGroup OBJECT-TYPE
2580    SYNTAX        STrapGroup
2581    ACCESS        not-accessible
2582    STATUS        mandatory
2583    DESCRIPTION    ""
2584    INDEX        {DmiComponentIndex}
2585    ::= {tTrapGroup 1}
2586
2587a9999AlertSystem  OBJECT-TYPE
2588    SYNTAX        OCTET STRING
2589    ACCESS        read-only
2590    STATUS        mandatory
2591    DESCRIPTION    "Name of the system generating the alert"
2592    ::= {eTrapGroup 1}
2593
2594a9999AlertGroup   OBJECT-TYPE
2595    SYNTAX        OCTET STRING
2596    ACCESS        read-only
2597    STATUS        mandatory
2598    DESCRIPTION    "DMI group generating the alert"
2599    ::= {eTrapGroup 2}
2600
2601a9999AlertMessage OBJECT-TYPE
2602    SYNTAX        OCTET STRING
2603    ACCESS        read-only
2604    STATUS        mandatory
2605    DESCRIPTION    "Alert message"
2606    ::= {eTrapGroup 3}
2607
2608a9999AlertSeverity OBJECT-TYPE
2609    SYNTAX        DmiInteger
2610    ACCESS        read-only
2611    STATUS        mandatory
2612    DESCRIPTION    "DMI alert severity"
2613    ::= {eTrapGroup 4}
2614
2615a9999AlertData     OBJECT-TYPE
2616    SYNTAX        OCTET STRING
2617    ACCESS        read-only
2618    STATUS        mandatory
2619    DESCRIPTION    "Alert data"
2620    ::= {eTrapGroup 5}
2621
2622dmtfAlert260   TRAP-TYPE
2623    ENTERPRISE baseboard
2624    VARIABLES  { a9999AlertSystem,
2625                 a9999AlertGroup,
2626                 a9999AlertMessage,
2627                 a9999AlertSeverity,
2628                 a9999AlertData}
2629
2630    DESCRIPTION "Temperature sensor violation detected"
2631
2632    --NMS trap annotation
2633
2634    --#TYPE       "DMI BASEBRDD Alert Event"
2635    --#SUMMARY    "Event Data: (%s on %s)"
2636    --#ARGUMENTS  {2, 0}
2637    --#SEVERITY   CRITICAL
2638    --#TIMEINDEX  12
2639    ::= 260
2640
2641dmtfAlert261   TRAP-TYPE
2642    ENTERPRISE baseboard
2643    VARIABLES  { a9999AlertSystem,
2644                 a9999AlertGroup,
2645                 a9999AlertMessage,
2646                 a9999AlertSeverity,
2647                 a9999AlertData}
2648
2649    DESCRIPTION "Temperature sensor reading returned to normal"
2650
2651    --NMS trap annotation
2652
2653    --#TYPE       "DMI BASEBRDD Alert Event"
2654    --#SUMMARY    "Event Data: (%s on %s)"
2655    --#ARGUMENTS  {2, 0}
2656    --#SEVERITY   CRITICAL
2657    --#TIMEINDEX  12
2658    ::= 261
2659
2660
2661dmtfAlert300   TRAP-TYPE
2662    ENTERPRISE baseboard
2663    VARIABLES  { a9999AlertSystem,
2664                 a9999AlertGroup,
2665                 a9999AlertMessage,
2666                 a9999AlertSeverity,
2667                 a9999AlertData}
2668
2669    DESCRIPTION "Temperature sensor warning detected"
2670
2671    --NMS trap annotation
2672
2673    --#TYPE       "DMI BASEBRDD Alert Event"
2674    --#SUMMARY    "Event Data: (%s on %s)"
2675    --#ARGUMENTS  {2, 0}
2676    --#SEVERITY   CRITICAL
2677    --#TIMEINDEX  12
2678    ::= 300
2679
2680dmtfAlert301   TRAP-TYPE
2681    ENTERPRISE baseboard
2682    VARIABLES  { a9999AlertSystem,
2683                 a9999AlertGroup,
2684                 a9999AlertMessage,
2685                 a9999AlertSeverity,
2686                 a9999AlertData}
2687
2688    DESCRIPTION "Temperature sensor warning returned to normal"
2689
2690    --NMS trap annotation
2691
2692    --#TYPE       "DMI BASEBRDD Alert Event"
2693    --#SUMMARY    "Event Data: (%s on %s)"
2694    --#ARGUMENTS  {2, 0}
2695    --#SEVERITY   CRITICAL
2696    --#TIMEINDEX  12
2697    ::= 301
2698
2699dmtfAlert268   TRAP-TYPE
2700    ENTERPRISE baseboard
2701    VARIABLES  { a9999AlertSystem,
2702                 a9999AlertGroup,
2703                 a9999AlertMessage,
2704                 a9999AlertSeverity,
2705                 a9999AlertData}
2706
2707    DESCRIPTION "Fan sensor detected a failure"
2708
2709    --NMS trap annotation
2710
2711    --#TYPE       "DMI BASEBRDD Alert Event"
2712    --#SUMMARY    "Event Data: (%s on %s)"
2713    --#ARGUMENTS  {2, 0}
2714    --#SEVERITY   CRITICAL
2715    --#TIMEINDEX  12
2716    ::= 268
2717
2718dmtfAlert269   TRAP-TYPE
2719    ENTERPRISE baseboard
2720    VARIABLES  { a9999AlertSystem,
2721                 a9999AlertGroup,
2722                 a9999AlertMessage,
2723                 a9999AlertSeverity,
2724                 a9999AlertData}
2725
2726    DESCRIPTION "Fan sensor reading returned to normal"
2727
2728    --NMS trap annotation
2729
2730    --#TYPE       "DMI BASEBRDD Alert Event"
2731    --#SUMMARY    "Event Data: (%s on %s)"
2732    --#ARGUMENTS  {2, 0}
2733    --#SEVERITY   CRITICAL
2734    --#TIMEINDEX  12
2735    ::= 269
2736
2737dmtfAlert304   TRAP-TYPE
2738    ENTERPRISE baseboard
2739    VARIABLES  { a9999AlertSystem,
2740                 a9999AlertGroup,
2741                 a9999AlertMessage,
2742                 a9999AlertSeverity,
2743                 a9999AlertData}
2744
2745    DESCRIPTION "Fan sensor warning detected"
2746
2747    --NMS trap annotation
2748
2749    --#TYPE       "DMI BASEBRDD Alert Event"
2750    --#SUMMARY    "Event Data: (%s on %s)"
2751    --#ARGUMENTS  {2, 0}
2752    --#SEVERITY   CRITICAL
2753    --#TIMEINDEX  12
2754    ::= 304
2755
2756dmtfAlert305   TRAP-TYPE
2757    ENTERPRISE baseboard
2758    VARIABLES  { a9999AlertSystem,
2759                 a9999AlertGroup,
2760                 a9999AlertMessage,
2761                 a9999AlertSeverity,
2762                 a9999AlertData}
2763
2764    DESCRIPTION "Fan sensor warning returned to normal"
2765
2766    --NMS trap annotation
2767
2768    --#TYPE       "DMI BASEBRDD Alert Event"
2769    --#SUMMARY    "Event Data: (%s on %s)"
2770    --#ARGUMENTS  {2, 0}
2771    --#SEVERITY   CRITICAL
2772    --#TIMEINDEX  12
2773    ::= 305
2774
2775dmtfAlert272   TRAP-TYPE
2776    ENTERPRISE baseboard
2777    VARIABLES  { a9999AlertSystem,
2778                 a9999AlertGroup,
2779                 a9999AlertMessage,
2780                 a9999AlertSeverity,
2781                 a9999AlertData}
2782
2783    DESCRIPTION "Voltage sensor detected a failure"
2784
2785    --NMS trap annotation
2786
2787    --#TYPE       "DMI BASEBRDD Alert Event"
2788    --#SUMMARY    "Event Data: (%s on %s)"
2789    --#ARGUMENTS  {2, 0}
2790    --#SEVERITY   CRITICAL
2791    --#TIMEINDEX  12
2792    ::= 272
2793
2794dmtfAlert273   TRAP-TYPE
2795    ENTERPRISE baseboard
2796    VARIABLES  { a9999AlertSystem,
2797                 a9999AlertGroup,
2798                 a9999AlertMessage,
2799                 a9999AlertSeverity,
2800                 a9999AlertData}
2801
2802    DESCRIPTION "Voltage sensor reading returned to normal"
2803
2804    --NMS trap annotation
2805
2806    --#TYPE       "DMI BASEBRDD Alert Event"
2807    --#SUMMARY    "Event Data: (%s on %s)"
2808    --#ARGUMENTS  {2, 0}
2809    --#SEVERITY   CRITICAL
2810    --#TIMEINDEX  12
2811    ::= 273
2812
2813dmtfAlert302   TRAP-TYPE
2814    ENTERPRISE baseboard
2815    VARIABLES  { a9999AlertSystem,
2816                 a9999AlertGroup,
2817                 a9999AlertMessage,
2818                 a9999AlertSeverity,
2819                 a9999AlertData}
2820
2821    DESCRIPTION "Voltage sensor warning detected"
2822
2823    --NMS trap annotation
2824
2825    --#TYPE       "DMI BASEBRDD Alert Event"
2826    --#SUMMARY    "Event Data: (%s on %s)"
2827    --#ARGUMENTS  {2, 0}
2828    --#SEVERITY   CRITICAL
2829    --#TIMEINDEX  12
2830    ::= 302
2831
2832dmtfAlert303   TRAP-TYPE
2833    ENTERPRISE baseboard
2834    VARIABLES  { a9999AlertSystem,
2835                 a9999AlertGroup,
2836                 a9999AlertMessage,
2837                 a9999AlertSeverity,
2838                 a9999AlertData}
2839
2840    DESCRIPTION "Voltage sensor warning returned to normal"
2841
2842    --NMS trap annotation
2843
2844    --#TYPE       "DMI BASEBRDD Alert Event"
2845    --#SUMMARY    "Event Data: (%s on %s)"
2846    --#ARGUMENTS  {2, 0}
2847    --#SEVERITY   CRITICAL
2848    --#TIMEINDEX  12
2849    ::= 303
2850
2851dmtfAlert306   TRAP-TYPE
2852    ENTERPRISE baseboard
2853    VARIABLES  { a9999AlertSystem,
2854                 a9999AlertGroup,
2855                 a9999AlertMessage,
2856                 a9999AlertSeverity,
2857                 a9999AlertData}
2858
2859    DESCRIPTION "Current sensor detected a failure"
2860
2861    --NMS trap annotation
2862
2863    --#TYPE       "DMI BASEBRDD Alert Event"
2864    --#SUMMARY    "Event Data: (%s on %s)"
2865    --#ARGUMENTS  {2, 0}
2866    --#SEVERITY   CRITICAL
2867    --#TIMEINDEX  12
2868    ::= 306
2869
2870dmtfAlert307   TRAP-TYPE
2871    ENTERPRISE baseboard
2872    VARIABLES  { a9999AlertSystem,
2873                 a9999AlertGroup,
2874                 a9999AlertMessage,
2875                 a9999AlertSeverity,
2876                 a9999AlertData}
2877
2878    DESCRIPTION "Current sensor reading returned to normal"
2879
2880    --NMS trap annotation
2881
2882    --#TYPE       "DMI BASEBRDD Alert Event"
2883    --#SUMMARY    "Event Data: (%s on %s)"
2884    --#ARGUMENTS  {2, 0}
2885    --#SEVERITY   CRITICAL
2886    --#TIMEINDEX  12
2887    ::= 307
2888
2889dmtfAlert308   TRAP-TYPE
2890    ENTERPRISE baseboard
2891    VARIABLES  { a9999AlertSystem,
2892                 a9999AlertGroup,
2893                 a9999AlertMessage,
2894                 a9999AlertSeverity,
2895                 a9999AlertData}
2896
2897    DESCRIPTION "Current sensor warning detected"
2898
2899    --NMS trap annotation
2900
2901    --#TYPE       "DMI BASEBRDD Alert Event"
2902    --#SUMMARY    "Event Data: (%s on %s)"
2903    --#ARGUMENTS  {2, 0}
2904    --#SEVERITY   CRITICAL
2905    --#TIMEINDEX  12
2906    ::= 308
2907
2908dmtfAlert309   TRAP-TYPE
2909    ENTERPRISE baseboard
2910    VARIABLES  { a9999AlertSystem,
2911                 a9999AlertGroup,
2912                 a9999AlertMessage,
2913                 a9999AlertSeverity,
2914                 a9999AlertData}
2915
2916    DESCRIPTION "Current sensor warning returned to normal"
2917
2918    --NMS trap annotation
2919
2920    --#TYPE       "DMI BASEBRDD Alert Event"
2921    --#SUMMARY    "Event Data: (%s on %s)"
2922    --#ARGUMENTS  {2, 0}
2923    --#SEVERITY   CRITICAL
2924    --#TIMEINDEX  12
2925    ::= 309
2926
2927dmtfAlert310   TRAP-TYPE
2928    ENTERPRISE baseboard
2929    VARIABLES  { a9999AlertSystem,
2930                 a9999AlertGroup,
2931                 a9999AlertMessage,
2932                 a9999AlertSeverity,
2933                 a9999AlertData}
2934
2935    DESCRIPTION "Power supply lost redundancy detected"
2936
2937    --NMS trap annotation
2938
2939    --#TYPE       "DMI BASEBRDD Alert Event"
2940    --#SUMMARY    "Event Data: (%s on %s)"
2941    --#ARGUMENTS  {2, 0}
2942    --#SEVERITY   CRITICAL
2943    --#TIMEINDEX  12
2944    ::= 310
2945
2946dmtfAlert311   TRAP-TYPE
2947    ENTERPRISE baseboard
2948    VARIABLES  { a9999AlertSystem,
2949                 a9999AlertGroup,
2950                 a9999AlertMessage,
2951                 a9999AlertSeverity,
2952                 a9999AlertData}
2953
2954    DESCRIPTION "Power supply regained redundancy"
2955
2956    --NMS trap annotation
2957
2958    --#TYPE       "DMI BASEBRDD Alert Event"
2959    --#SUMMARY    "Event Data: (%s on %s)"
2960    --#ARGUMENTS  {2, 0}
2961    --#SEVERITY   CRITICAL
2962    --#TIMEINDEX  12
2963    ::= 311
2964
2965dmtfAlert312   TRAP-TYPE
2966    ENTERPRISE baseboard
2967    VARIABLES  { a9999AlertSystem,
2968                 a9999AlertGroup,
2969                 a9999AlertMessage,
2970                 a9999AlertSeverity,
2971                 a9999AlertData}
2972
2973    DESCRIPTION "Power supply degraded redundancy detected"
2974
2975    --NMS trap annotation
2976
2977    --#TYPE       "DMI BASEBRDD Alert Event"
2978    --#SUMMARY    "Event Data: (%s on %s)"
2979    --#ARGUMENTS  {2, 0}
2980    --#SEVERITY   CRITICAL
2981    --#TIMEINDEX  12
2982    ::= 312
2983
2984dmtfAlert313   TRAP-TYPE
2985    ENTERPRISE baseboard
2986    VARIABLES  { a9999AlertSystem,
2987                 a9999AlertGroup,
2988                 a9999AlertMessage,
2989                 a9999AlertSeverity,
2990                 a9999AlertData}
2991
2992    DESCRIPTION "Power supply degraded redundancy returned to normal"
2993
2994    --NMS trap annotation
2995
2996    --#TYPE       "DMI BASEBRDD Alert Event"
2997    --#SUMMARY    "Event Data: (%s on %s)"
2998    --#ARGUMENTS  {2, 0}
2999    --#SEVERITY   CRITICAL
3000    --#TIMEINDEX  12
3001    ::= 313
3002
3003dmtfAlert314   TRAP-TYPE
3004    ENTERPRISE baseboard
3005    VARIABLES  { a9999AlertSystem,
3006                 a9999AlertGroup,
3007                 a9999AlertMessage,
3008                 a9999AlertSeverity,
3009                 a9999AlertData}
3010
3011    DESCRIPTION "Power supply failure detected"
3012
3013    --NMS trap annotation
3014
3015    --#TYPE       "DMI BASEBRDD Alert Event"
3016    --#SUMMARY    "Event Data: (%s on %s)"
3017    --#ARGUMENTS  {2, 0}
3018    --#SEVERITY   CRITICAL
3019    --#TIMEINDEX  12
3020    ::= 314
3021
3022dmtfAlert315   TRAP-TYPE
3023    ENTERPRISE baseboard
3024    VARIABLES  { a9999AlertSystem,
3025                 a9999AlertGroup,
3026                 a9999AlertMessage,
3027                 a9999AlertSeverity,
3028                 a9999AlertData}
3029
3030    DESCRIPTION "Power supply failure returned to normal"
3031
3032    --NMS trap annotation
3033
3034    --#TYPE       "DMI BASEBRDD Alert Event"
3035    --#SUMMARY    "Event Data: (%s on %s)"
3036    --#ARGUMENTS  {2, 0}
3037    --#SEVERITY   CRITICAL
3038    --#TIMEINDEX  12
3039    ::= 315
3040
3041dmtfAlert320   TRAP-TYPE
3042    ENTERPRISE baseboard
3043    VARIABLES  { a9999AlertSystem,
3044                 a9999AlertGroup,
3045                 a9999AlertMessage,
3046                 a9999AlertSeverity,
3047                 a9999AlertData}
3048
3049    DESCRIPTION "Chassis intrusion detected"
3050
3051    --NMS trap annotation
3052
3053    --#TYPE       "DMI BASEBRDD Alert Event"
3054    --#SUMMARY    "Event Data: (%s on %s)"
3055    --#ARGUMENTS  {2, 0}
3056    --#SEVERITY   CRITICAL
3057    --#TIMEINDEX  12
3058    ::= 320
3059
3060dmtfAlert321   TRAP-TYPE
3061    ENTERPRISE baseboard
3062    VARIABLES  { a9999AlertSystem,
3063                 a9999AlertGroup,
3064                 a9999AlertMessage,
3065                 a9999AlertSeverity,
3066                 a9999AlertData}
3067
3068    DESCRIPTION "Chassis intrusion returned to normal"
3069
3070    --NMS trap annotation
3071
3072    --#TYPE       "DMI BASEBRDD Alert Event"
3073    --#SUMMARY    "Event Data: (%s on %s)"
3074    --#ARGUMENTS  {2, 0}
3075    --#SEVERITY   CRITICAL
3076    --#TIMEINDEX  12
3077    ::= 321
3078
3079dmtfAlert330   TRAP-TYPE
3080    ENTERPRISE baseboard
3081    VARIABLES  { a9999AlertSystem,
3082                 a9999AlertGroup,
3083                 a9999AlertMessage,
3084                 a9999AlertSeverity,
3085                 a9999AlertData}
3086
3087    DESCRIPTION "System Up"
3088
3089    --NMS trap annotation
3090
3091    --#TYPE       "DMI BASEBRDD Alert Event"
3092    --#SUMMARY    "Event Data: (%s on %s)"
3093    --#ARGUMENTS  {2, 0}
3094    --#SEVERITY   CRITICAL
3095    --#TIMEINDEX  12
3096    ::= 330
3097
3098dmtfAlert323   TRAP-TYPE
3099    ENTERPRISE baseboard
3100    VARIABLES  { a9999AlertSystem,
3101                 a9999AlertGroup,
3102                 a9999AlertMessage,
3103                 a9999AlertSeverity,
3104                 a9999AlertData}
3105
3106    DESCRIPTION "Memory ECC fault detected"
3107
3108    --NMS trap annotation
3109
3110    --#TYPE       "DMI BASEBRDD Alert Event"
3111    --#SUMMARY    "Event Data: (%s on %s)"
3112    --#ARGUMENTS  {2, 0}
3113    --#SEVERITY   CRITICAL
3114    --#TIMEINDEX  12
3115    ::= 323
3116
3117dmtfAlert325   TRAP-TYPE
3118    ENTERPRISE baseboard
3119    VARIABLES  { a9999AlertSystem,
3120                 a9999AlertGroup,
3121                 a9999AlertMessage,
3122                 a9999AlertSeverity,
3123                 a9999AlertData}
3124
3125    DESCRIPTION "Lost connection to storage system"
3126
3127    --NMS trap annotation
3128
3129    --#TYPE       "DMI BASEBRDD Alert Event"
3130    --#SUMMARY    "Event Data: (%s on %s)"
3131    --#ARGUMENTS  {2, 0}
3132    --#SEVERITY   CRITICAL
3133    --#TIMEINDEX  12
3134    ::= 325
3135
3136dmtfAlert326   TRAP-TYPE
3137    ENTERPRISE baseboard
3138    VARIABLES  { a9999AlertSystem,
3139                 a9999AlertGroup,
3140                 a9999AlertMessage,
3141                 a9999AlertSeverity,
3142                 a9999AlertData}
3143
3144    DESCRIPTION "Established connection to storage system"
3145
3146    --NMS trap annotation
3147
3148    --#TYPE       "DMI BASEBRDD Alert Event"
3149    --#SUMMARY    "Event Data: (%s on %s)"
3150    --#ARGUMENTS  {2, 0}
3151    --#SEVERITY   CRITICAL
3152    --#TIMEINDEX  12
3153    ::= 326
3154
3155dmtfAlert327   TRAP-TYPE
3156    ENTERPRISE baseboard
3157    VARIABLES  { a9999AlertSystem,
3158                 a9999AlertGroup,
3159                 a9999AlertMessage,
3160                 a9999AlertSeverity,
3161                 a9999AlertData}
3162
3163    DESCRIPTION "Reestablished connection to storage system"
3164
3165    --NMS trap annotation
3166
3167    --#TYPE       "DMI BASEBRDD Alert Event"
3168    --#SUMMARY    "Event Data: (%s on %s)"
3169    --#ARGUMENTS  {2, 0}
3170    --#SEVERITY   CRITICAL
3171    --#TIMEINDEX  12
3172    ::= 327
3173END
3174