summaryrefslogtreecommitdiff
path: root/MIBS/ubiquoss/UBQS-ENVMON-MIB
blob: c3c3a4f3471315e0afbee782d9903df495898f3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
-- *****************************************************************
-- UBQS-ENVMON-MIB:  Ubiquoss Environmental Monitor MIB file
--
-- June 2009 by Hyung Eun Park          
--
-- Copyright (c) 2009 by Ubiquoss, Corp.
-- All rights reserved.    
-- *****************************************************************
--       

UBQS-ENVMON-MIB DEFINITIONS ::= BEGIN

IMPORTS
        MODULE-IDENTITY,
        OBJECT-TYPE,
        NOTIFICATION-TYPE,
        Gauge32,
        Integer32
                FROM SNMPv2-SMI
        TEXTUAL-CONVENTION,
        DisplayString,
        TruthValue
                FROM SNMPv2-TC
        MODULE-COMPLIANCE,
        OBJECT-GROUP,
        NOTIFICATION-GROUP
                FROM SNMPv2-CONF
        ubiMgmtv2
                FROM UBQS-SMI;


ubiEnvMonMIB MODULE-IDENTITY
        LAST-UPDATED    "200906250000Z"
        ORGANIZATION    "Ubiquoss Corp."
        CONTACT-INFO
		"	Ubiquoss
			Customer Service

		 Postal: 24F Milennium B/D,
		 	467-12, Dogok-Dong,
			GangNam-Gu, Seoul 135-270
			Korea

		   Tel: 82-2-2190-3100"          
		DESCRIPTION
        "The UBQS-ENVMON-MIB is used for getting 
        the environment information of the system."
        ::= { ubiMgmtv2 2 }
               
     
-- *****************************************************************
-- Type Convention
-- *****************************************************************
UbiEnvMonState ::= TEXTUAL-CONVENTION
        STATUS  current
        DESCRIPTION
                "Represents the state of a device being monitored.
                 Valid values are:

                 normal(1):         the environment is good, such as low
                                    temperature.

                 warning(2):        the environment is bad, such as temperature
                                    above normal operation range but not too
                                    high.

                 critical(3):       the environment is very bad, such as
                                    temperature much higher than normal
                                    operation limit.

                 shutdown(4):       the environment is the worst, the system
                                    should be shutdown immediately.

                 notPresent(5):     the environmental monitor is not present,
                                    such as temperature sensors do not exist.

                 notFunctioning(6): the environmental monitor does not 
                                    function properly.
                "
        SYNTAX  INTEGER {
                        normal(1),
                        warning(2),
                        critical(3),
                        shutdown(4),
                        notPresent(5),
                        notFunctioning(6)
                }

-- *****************************************************************
-- ubiEnvMonMIB
-- *****************************************************************

ubiEnvMonObjects 				OBJECT IDENTIFIER ::= { ubiEnvMonMIB 1 }
ubiEnvMonMIBNotificationEnables OBJECT IDENTIFIER ::= { ubiEnvMonMIB 2 }
ubiEnvMonMIBNotificationPrefix 	OBJECT IDENTIFIER ::= { ubiEnvMonMIB 3 } 
ubiEnvMonMIBConformance 		OBJECT IDENTIFIER ::= { ubiEnvMonMIB 4 }

                   
                   
-- *****************************************************************
-- ubiEnvMonTemperatureTable
-- *****************************************************************

	ubiEnvMonTemperatureTable OBJECT-TYPE
        SYNTAX     SEQUENCE OF UbiEnvMonTemperatureEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "The table of ambient temperature status maintained by the
                environmental monitor."
        ::= { ubiEnvMonObjects 1 }

	ubiEnvMonTemperatureEntry OBJECT-TYPE
        SYNTAX     UbiEnvMonTemperatureEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "An entry in the ambient temperature status table, representing
                the status of the associated testpoint maintained by the
                environmental monitor."
        INDEX      { ubiEnvMonTemperatureIndex }
        ::= { ubiEnvMonTemperatureTable 1 }

	UbiEnvMonTemperatureEntry ::=
        SEQUENCE {
                ubiEnvMonTemperatureIndex       		Integer32,
                ubiEnvMonTemperatureDescr       		DisplayString,
                ubiEnvMonTemperatureValue       		Gauge32,
                ubiEnvMonTemperatureHighThreshold     	Integer32,       
                ubiEnvMonTemperatureLowThreshold      	Integer32,
         --       ubiEnvMonTemperatureLastShutdown    	Integer32,
                ubiEnvMonTemperatureState             	UbiEnvMonState
        }


	ubiEnvMonTemperatureIndex OBJECT-TYPE
        SYNTAX     Integer32
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "Unique index for the testpoint being instrumented.
                This index is for SNMP purposes only, and has no
                intrinsic meaning."
        ::= { ubiEnvMonTemperatureEntry 1 }

	ubiEnvMonTemperatureDescr OBJECT-TYPE
        SYNTAX     DisplayString (SIZE (0..255))
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "Textual description of the testpoint 
                 being instrumented."
        ::= { ubiEnvMonTemperatureEntry 2 }

	ubiEnvMonTemperatureValue OBJECT-TYPE
        SYNTAX     Gauge32
        UNITS      "degrees Celsius"
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The current measurement of the testpoint 
                 being instrumented."
        ::= { ubiEnvMonTemperatureEntry 3 }

	ubiEnvMonTemperatureHighThreshold OBJECT-TYPE
        SYNTAX     Integer32
        UNITS      "degrees Celsius"
        MAX-ACCESS read-write
        STATUS     current
        DESCRIPTION
                "A high threshold for the temperature. 
                 If a particular value isn't set, this object 
                 displays the default value."
        ::= { ubiEnvMonTemperatureEntry 4 }
   
	ubiEnvMonTemperatureLowThreshold OBJECT-TYPE
        SYNTAX     Integer32
        UNITS      "degrees Celsius"
        MAX-ACCESS read-write
        STATUS     current
        DESCRIPTION
                "A low threshold for the temperature.
                If a particular value isn't set, this object 
                displays the default value."
        ::= { ubiEnvMonTemperatureEntry 5 }
   
--	ubiEnvMonTemperatureLastShutdown OBJECT-TYPE
 --       SYNTAX     Integer32
 --       UNITS      "degrees Celsius"
 --      MAX-ACCESS read-only
 --       STATUS     current
 --       DESCRIPTION
 --               "The value of the associated instance of the object
 --               ubiEnvMonTemperatureStatusValue at the time an emergency
 --               shutdown of the managed device was last initiated. "
 --       ::= { ubiEnvMonTemperatureEntry 5 }

	ubiEnvMonTemperatureState OBJECT-TYPE
        SYNTAX     UbiEnvMonState
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The current state of the testpoint being instrumented.              
                 Represents the temperature state of a device being monitored.
                 Valid values are:

                 normal(1):         the environment is good, such as low
                                    temperature.

                 warning(2):        the environment is bad, such as temperature
                                    above normal operation range but not too
                                    high.

                 critical(3):       the environment is very bad, such as
                                    temperature much higher than normal
                                    operation limit.

                 notPresent(5):     the environmental monitor is not present,
                                    such as temperature sensors do not exist.
               "
        ::= { ubiEnvMonTemperatureEntry 6 }

   
-- *****************************************************************
-- ubiEnvMonFanTable
-- ****************************************************************

	ubiEnvMonFanTable OBJECT-TYPE
        SYNTAX     SEQUENCE OF UbiEnvMonFanEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "The table of fan status maintained by the environmental
                monitor."
        ::= { ubiEnvMonObjects 2 }

	ubiEnvMonFanEntry OBJECT-TYPE
        SYNTAX     UbiEnvMonFanEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "An entry in the fan status table, representing the status of
                the associated fan maintained by the environmental monitor."
        INDEX   { ubiEnvMonFanIndex }
        ::= { ubiEnvMonFanTable 1 }

	UbiEnvMonFanEntry ::=
        SEQUENCE {
                ubiEnvMonFanIndex       		Integer32,
                ubiEnvMonFanDescr       		DisplayString,
                ubiEnvMonFanState             	UbiEnvMonState
        }

	ubiEnvMonFanIndex OBJECT-TYPE
        SYNTAX     Integer32
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "Unique index for the fan being instrumented.
                This index is for SNMP purposes only, and has no
                intrinsic meaning."
        ::= { ubiEnvMonFanEntry 1 }

	ubiEnvMonFanDescr OBJECT-TYPE
        SYNTAX     DisplayString (SIZE (0..255))
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "Textual description of the fan being instrumented."
        ::= { ubiEnvMonFanEntry 2 }

	ubiEnvMonFanState OBJECT-TYPE
        SYNTAX     UbiEnvMonState
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The current state of the fan being instrumented.
                 Represents the fan state of a device being monitored.
                 Valid values are:

                 normal(1):         the environment is good, such as low
                                    temperature.         
                                    
                 notPresent(5):     the environmental monitor is not present,
                                    such as temperature sensors do not exist.  
                                     
                 notFunctioning(6): the environmental monitor does not 
                                    function properly.
               "

        ::= { ubiEnvMonFanEntry 3 }



-- *****************************************************************
-- ubiEnvMonSupplyTable
-- ****************************************************************

	ubiEnvMonSupplyTable OBJECT-TYPE
        SYNTAX     SEQUENCE OF UbiEnvMonSupplyEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "The table of power supply status maintained by the
                environmental monitor card."
        ::= { ubiEnvMonObjects 3 }

	ubiEnvMonSupplyEntry OBJECT-TYPE
        SYNTAX     UbiEnvMonSupplyEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "An entry in the power supply status table, representing the
                status of the associated power supply maintained by the
                environmental monitor card."
        INDEX   { ubiEnvMonSupplyIndex }
        ::= { ubiEnvMonSupplyTable 1  }

	UbiEnvMonSupplyEntry ::=
        SEQUENCE {
                ubiEnvMonSupplyIndex    		Integer32,
                ubiEnvMonSupplyDescr    		DisplayString,
                ubiEnvMonSupplyState          	UbiEnvMonState,
                ubiEnvMonSupplySource         	INTEGER,
                ubiEnvMonExternalAlarmAc        INTEGER,
                ubiEnvMonExternalAlarmUnit      INTEGER
         }

	ubiEnvMonSupplyIndex OBJECT-TYPE
        SYNTAX     Integer32
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "Unique index for the power supply being instrumented.
                This index is for SNMP purposes only, and has no
                intrinsic meaning."
        ::= { ubiEnvMonSupplyEntry 1 }

	ubiEnvMonSupplyDescr OBJECT-TYPE
        SYNTAX     DisplayString (SIZE (0..255))
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "Textual description of the power supply 
                being instrumented."
        ::= { ubiEnvMonSupplyEntry 2 }

	ubiEnvMonSupplyState OBJECT-TYPE
        SYNTAX     UbiEnvMonState
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The current state of the power supply 
                 being instrumented.  
                 Represents the power state of a device being monitored.
                 Valid values are:

                 normal(1):         the environment is good, such as low
                                    temperature.         
                                    
                 notPresent(5):     the environmental monitor is not present,
                                    such as temperature sensors do not exist.  
                                     
                 notFunctioning(6): the environmental monitor does not 
                                    function properly.
                "
        ::= { ubiEnvMonSupplyEntry 3 }

	ubiEnvMonSupplySource OBJECT-TYPE
        SYNTAX INTEGER {           
        				none(0),
                        ac(1),
                        dc(2)
        }
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The power supply source.
                 ac      - AC power supply
                 dc      - DC power supply"
        ::= { ubiEnvMonSupplyEntry 4 }  
        
    ubiEnvMonExternalAlarmAc OBJECT-TYPE
        SYNTAX INTEGER {
					normal(1),
					fail(2)
		}        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The power supply convertor AC.
                 nomal (1)       
                 fail  (2)"      
        ::= { ubiEnvMonSupplyEntry 5 }

	ubiEnvMonExternalAlarmUnit OBJECT-TYPE
        SYNTAX INTEGER {
					normal(1),
					fail(2)
		}
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The power supply convertor unit.
                 nomal (1)       
                 fail  (2)"      
        ::= { ubiEnvMonSupplyEntry 6 }

    
-- *****************************************************************
-- ubiEnvMonSupplyChannelTable
-- ****************************************************************

	ubiEnvMonSupplyChannelTable OBJECT-TYPE
        SYNTAX     SEQUENCE OF UbiEnvMonSupplyChannelEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "The table represents the extension status 
                for DC power supply."
        ::= { ubiEnvMonObjects 4 }

	ubiEnvMonSupplyChannelEntry OBJECT-TYPE
        SYNTAX     UbiEnvMonSupplyChannelEntry
        MAX-ACCESS not-accessible
        STATUS     current
        DESCRIPTION
                "An entry in this table, representing the extended status of 
                the associated DC power supply maintained by 
                the environmental monitor card."
        INDEX   { ubiEnvMonSupplyIndex, ubiEnvMonSupplyChannelType }
        ::= { ubiEnvMonSupplyChannelTable 1  }

	UbiEnvMonSupplyChannelEntry ::=
        SEQUENCE {
                ubiEnvMonSupplyChannelType  			INTEGER,
                ubiEnvMonSupplyChannelState      		UbiEnvMonState
        }

	ubiEnvMonSupplyChannelType OBJECT-TYPE
        SYNTAX     INTEGER
        {
        	dc_48v_a(1),
        	dc_48v_b(2)
    	}  
    	MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "Unique index for the DC power supply channel."
        ::= { ubiEnvMonSupplyChannelEntry 1 }


	ubiEnvMonSupplyChannelState OBJECT-TYPE
        SYNTAX     UbiEnvMonState
        MAX-ACCESS read-only
        STATUS     current
        DESCRIPTION
                "The current state of the DC power supply channel 
                being instrumented.
                Represents the power state of a device being monitored.
                 Valid values are:

                 normal(1):         the environment is good, such as low
                                    temperature.         
                                    
                 notPresent(5):     the environmental monitor is not present,
                                    such as temperature sensors do not exist.  
                                     
                 notFunctioning(6): the environmental monitor does not 
                                    function properly.
                "
        ::= { ubiEnvMonSupplyChannelEntry 2 }




-- *****************************************************************
-- ubiEnvMonMIBNotificationEnables
-- ****************************************************************   
	ubiEnvMonEnableTempStatusChange OBJECT-TYPE
        SYNTAX      TruthValue
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
               "This variable  indicates  whether  the  system
                produces the ubiEnvMonTempStatusChangeNotif.
                A false value prevents temperature notifications 
                from being sent by  this entity."
        DEFVAL { false }
        ::= { ubiEnvMonMIBNotificationEnables 1 }

	ubiEnvMonEnableFanStatusChange OBJECT-TYPE
        SYNTAX      TruthValue
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
               "This variable  indicates  whether  the  system
                produces the ubiEnvMonFanStatusChangeNotif.
                A false value prevents fan notifications 
                from being sent by  this entity."
        DEFVAL { false }
        ::= { ubiEnvMonMIBNotificationEnables 2 }

	ubiEnvMonEnableSupplyStatusChange OBJECT-TYPE
        SYNTAX      TruthValue
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
               "This variable  indicates  whether  the  system
                produces the ubiEnvMonSuppStatusChangeNotif. 
                A false value prevents redundant supply notifications
                from being generated by this system."
        DEFVAL { false }
        ::= { ubiEnvMonMIBNotificationEnables 3 }

	ubiEnvMonEnableSupplyChannelStatusChange OBJECT-TYPE
        SYNTAX      TruthValue
        MAX-ACCESS  read-write
        STATUS      current
        DESCRIPTION
               "This variable  indicates  whether  the  system
                produces the ubiEnvMonSuppExtStatusChangeNotif. 
                A false value prevents redundant supply notifications
                from being generated by this system."
        DEFVAL { false }
        ::= { ubiEnvMonMIBNotificationEnables 4 }

-- *****************************************************************
-- ubiEnvMonMIBNotificationPrefix
-- ****************************************************************   
 

-- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications
-- that are backward compatible with SNMPv1 Traps.   
ubiEnvMonMIBNotifications OBJECT IDENTIFIER ::= { ubiEnvMonMIBNotificationPrefix 0 }

 
	ubiEnvMonTempStatusChange NOTIFICATION-TYPE
        OBJECTS {
                ubiEnvMonTemperatureDescr,
                ubiEnvMonTemperatureValue,
                ubiEnvMonTemperatureState
                }
        STATUS  current
        DESCRIPTION
                "A ubiEnvMonTempStatusChangeNotif is sent if there 
                 is change in the state of a device being monitored
                 by ubiEnvMonTemperatureState."
        ::= { ubiEnvMonMIBNotifications 1 }

	ubiEnvMonFanStatusChange NOTIFICATION-TYPE
        OBJECTS {
                ubiEnvMonFanDescr,
                ubiEnvMonFanState
                }
        STATUS  current
        DESCRIPTION
                "A ubiEnvMonFanStatusChangeNotif is sent if there 
                 is change in the state of a device being monitored
                 by ubiEnvMonFanState."
        ::= { ubiEnvMonMIBNotifications 2 }

	ubiEnvMonSupplyStatusChange NOTIFICATION-TYPE
        OBJECTS {
                ubiEnvMonSupplyDescr,
                ubiEnvMonSupplyState
                }
        STATUS  current
        DESCRIPTION
                "A ubiEnvMonSupplyStatChangeNotif is sent if there 
                 is change in the state of a device being monitored
                 by ubiEnvMonSupplyState."
        ::= { ubiEnvMonMIBNotifications 3 }
 
	ubiEnvMonSupplyChannelStatusChange NOTIFICATION-TYPE
        OBJECTS {
                ubiEnvMonSupplyDescr,   
                ubiEnvMonSupplyChannelType,
                ubiEnvMonSupplyChannelState
                }
        STATUS  current
        DESCRIPTION
                "A ubiEnvMonSuppExtStatusChangeNotif is sent if there 
                 is change in the state of a device being monitored
                 by ubiEnvMonSupplyExtChannelStatus."
        ::= { ubiEnvMonMIBNotifications 4 }
 
 
-- *****************************************************************
-- ubiEnvMonMIBConformance
-- ****************************************************************  
 
-- conformance information
ubiEnvMonMIBCompliances OBJECT IDENTIFIER ::= { ubiEnvMonMIBConformance 1 }
ubiEnvMonMIBGroups      OBJECT IDENTIFIER ::= { ubiEnvMonMIBConformance 2 }


-- compliance statements

	ubiEnvMonMIBCompliance MODULE-COMPLIANCE
        STATUS  current
        DESCRIPTION
                "The compliance statement for entities which implement
                the Ubiquoss Environmental Monitor MIB."
        MODULE  -- this module
                MANDATORY-GROUPS { 
                		ubiEnvMonMIBGroup,
                		ubiEnvMonMIBNotifGroup
                }   
        GROUP ubiEnvMonMIBGroup
        DESCRIPTION
          	"The ubiEnvMonMIBGroup is applicable for implementations which
 			need to get the system environment information."           

        GROUP ubiEnvMonMIBNotifGroup
        DESCRIPTION
          	"The ubiEnvMonMIBNotifGroup must be
 			implemented for system environment that have notification."       
        ::= { ubiEnvMonMIBCompliances 1 }

-- units of conformance

	ubiEnvMonMIBGroup OBJECT-GROUP
        OBJECTS {
                ubiEnvMonTemperatureDescr,
                ubiEnvMonTemperatureValue,
                ubiEnvMonTemperatureHighThreshold,    
                ubiEnvMonTemperatureLowThreshold,
                ubiEnvMonTemperatureLastShutdown,
                ubiEnvMonTemperatureState,

                ubiEnvMonFanDescr,
                ubiEnvMonFanState,

                ubiEnvMonSupplyDescr,
                ubiEnvMonSupplyState,
                ubiEnvMonSupplySource,    
                
                ubiEnvMonSupplyExtChannel,
                ubiEnvMonSupplyExtChannelState,

                ubiEnvMonEnableTempStatusChangeNotif,
                ubiEnvMonEnableFanStatusChangeNotif,
                ubiEnvMonEnableSuppStatusChangeNotif,
                ubiEnvMonEnableSuppExtStatusChangeNotif

        }
        STATUS  current
        DESCRIPTION
                "A collection of objects providing environmental 
                monitoring capability to a ubi chassis."
        ::= { ubiEnvMonMIBGroups 1 }

	ubiEnvMonMIBNotifGroup NOTIFICATION-GROUP
        NOTIFICATIONS  {
                 ubiEnvMonTempStatusChangeNotif,
                 ubiEnvMonFanStatusChangeNotif,
                 ubiEnvMonSuppStatusChangeNotif,
                 ubiEnvMonSuppExtStatusChangeNotif
        }
        STATUS current
        DESCRIPTION
                "A notification group providing notification
                 for environmental monitoring. "
        ::= { ubiEnvMonMIBGroups 2 }    
        
END