-
Notifications
You must be signed in to change notification settings - Fork 14
/
LIEBERT_GP_ENV.MIB
3257 lines (2905 loc) · 108 KB
/
LIEBERT_GP_ENV.MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LIEBERT-GP-ENVIRONMENTAL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
Unsigned32,
Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
lgpEnvironmental,
liebertEnvironmentalModuleReg
FROM LIEBERT-GP-REGISTRATION-MIB
;
-- =============================================================================
-- Module Identification and Registration
-- =============================================================================
liebertGlobalProductsEnvironmentalModule MODULE-IDENTITY
LAST-UPDATED "201507210000Z"
ORGANIZATION "Liebert Corporation"
CONTACT-INFO
"Contact: Technical Support
Postal:
Liebert Corporation
1050 Dearborn Drive
P.O. Box 29186
Columbus OH, 43229
US
Tel: +1 (800) 222-5877
E-mail: liebert.monitoring@vertivco.com
Web: www.vertivco.com
Author: Gregory M. Hoge"
DESCRIPTION
"The MIB module used to register Liebert SNMP OIDs.
Copyright 2000-2015 Liebert Corporation. All rights reserved.
Reproduction of this document is authorized on the condition
that the forgoing copyright notice is included.
This Specification is supplied 'AS IS' and Liebert Corporation
makes no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
REVISION "200811170000Z"
DESCRIPTION
"Added support for NXL unit."
REVISION "200807020000Z"
DESCRIPTION
"SMIv2 changes (INTEGER to Integer32.
Corrected spelling errors."
REVISION "200801100000Z"
DESCRIPTION
"Modified contact email address."
REVISION "200705290000Z"
DESCRIPTION
"Added support for XDF Unit."
REVISION "200608150000Z"
DESCRIPTION
"Added support for HP release."
REVISION "200602220000Z"
DESCRIPTION
"Added support for Liebert DS Unit."
::= { liebertEnvironmentalModuleReg 1 }
-- =============================================================================
-- lgpEnvironmental - Liebert Environmental Registrations
-- =============================================================================
lgpEnvTemperature OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert temperature object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
Temperature Group."
::= { lgpEnvironmental 1 }
lgpEnvHumidity OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert humidity object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
Humidity Group."
::= { lgpEnvironmental 2 }
lgpEnvState OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental state object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
State Group."
::= { lgpEnvironmental 3 }
lgpEnvConfig OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental configuration
object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
Configuration Group."
::= { lgpEnvironmental 4 }
lgpEnvControl OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental control
object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
Control Group."
::= { lgpEnvironmental 5 }
lgpEnvStatistics OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental statistic
object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
Statistics Group."
::= { lgpEnvironmental 6 }
lgpEnvPoints OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental point
object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
point Group."
::= { lgpEnvironmental 7 }
lgpEnvUnits OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental unit
object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
units Group."
::= { lgpEnvironmental 8 }
lgpEnvRemoteSensors OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert environmental remote
sensor object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Environmental
Remote Sensor Group."
::= { lgpEnvironmental 9 }
-- =============================================================================
-- lgpEnvTemperature - Liebert Environmental Temperature Group
-- =============================================================================
lgpEnvTemperatureWellKnown OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Liebert well known temperature objects are identified by OIDs that
reside in this sub-tree."
::= { lgpEnvTemperature 1 }
lgpEnvTemperatureFahrenheit OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains OIDs that are used to control and monitor
temperature using the Fahrenheit temperature scale."
REFERENCE
"The registrations for the objects in this sub-tree are defined below
in the sub-section titled Liebert Environmental Fahrenheit Temperature
Group."
::= { lgpEnvTemperature 2 }
lgpEnvTemperatureCelsius OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains OIDs that are used to control and monitor
temperature using the Celsius temperature scale."
REFERENCE
"The registrations for the objects in this sub-tree are defined below
in the sub-section titled Liebert Environmental Celsius Temperature
Group."
::= { lgpEnvTemperature 3 }
lgpEnvTemperatureControlMode OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to a temperature description object. The object
referenced should not be accessible, but rather be used to provide
a unique description of the temperature object that is used for
control."
::= { lgpEnvTemperature 4 }
-- =============================================================================
-- lgpEnvHumidity - Liebert Environmental Humidity Group
-- =============================================================================
lgpEnvHumidityWellKnown OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Liebert well known humidity objects are defined by OIDs that reside
in this sub-tree."
::= { lgpEnvHumidity 1 }
lgpEnvHumidityRelative OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains OIDs that are used to control and monitor
relative humidity."
REFERENCE
"The registrations for the objects in this sub-tree are defined below
in the sub-section titled Liebert Environmental Relative Humidity
Group."
::= { lgpEnvHumidity 2 }
-- =============================================================================
-- lgpEnvState - Liebert Environmental State Group
-- =============================================================================
lgpEnvStateSystem OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
standby(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the system."
::= { lgpEnvState 1 }
lgpEnvStateCooling OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the cooling subsystem."
::= { lgpEnvState 2 }
lgpEnvStateHeating OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the heating subsystem."
::= { lgpEnvState 3 }
lgpEnvStateHumidifying OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the humidifier subsystem."
::= { lgpEnvState 4 }
lgpEnvStateDehumidifying OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the dehumidifier subsystem"
::= { lgpEnvState 5 }
lgpEnvStateEconoCycle OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the Econ-o-cycle subsystem."
::= { lgpEnvState 6 }
lgpEnvStateFan OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the system fan."
::= { lgpEnvState 7 }
lgpEnvStateGeneralAlarmOutput OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the general alarm output. This indicates if
an alarm is active in the system."
::= { lgpEnvState 8 }
lgpEnvStateCoolingCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the cooling capacity presently in use."
::= { lgpEnvState 9 }
lgpEnvStateHeatingCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the heating capacity presently in use."
::= { lgpEnvState 10 }
lgpEnvStateAudibleAlarm OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the audible alarm output."
::= { lgpEnvState 11 }
lgpEnvStateCoolingUnits OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains OIDs that are used to indicate the status
of cooling units."
::= { lgpEnvState 12 }
lgpEnvStateCoolingUnit1 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of cooling unit 1."
::= { lgpEnvStateCoolingUnits 2 }
lgpEnvStateCoolingUnit2 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of cooling unit 2."
::= { lgpEnvStateCoolingUnits 3 }
lgpEnvStateCoolingUnit3 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of cooling unit 3."
::= { lgpEnvStateCoolingUnits 4 }
lgpEnvStateCoolingUnit4 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of cooling unit 4."
::= { lgpEnvStateCoolingUnits 5 }
lgpEnvStateHeatingUnits OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains OIDs that are used to indicate the status
of heating units."
::= { lgpEnvState 13 }
lgpEnvStateHeatingUnit1 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of heating unit 1."
::= { lgpEnvStateHeatingUnits 2 }
lgpEnvStateHeatingUnit2 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of heating unit 2."
::= { lgpEnvStateHeatingUnits 3 }
lgpEnvStateHeatingUnit3 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of heating unit 3."
::= { lgpEnvStateHeatingUnits 4 }
lgpEnvStateHeatingUnit4 OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of heating unit 4."
::= { lgpEnvStateHeatingUnits 5 }
lgpEnvStateOperatingReason OBJECT-TYPE
SYNTAX INTEGER
{
none(1),
localUser(2),
alarm(3),
schedule(4),
remoteUser(5),
externalDevice(6),
localDisplay(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason for the current operating state of the system."
::= { lgpEnvState 14 }
lgpEnvStateOperatingMode OBJECT-TYPE
SYNTAX INTEGER
{
auto(1),
manual(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present operating mode of the system."
::= { lgpEnvState 15 }
lgpEnvStateFanCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the fan capacity presently in use."
::= { lgpEnvState 16 }
lgpEnvStateFreeCoolingCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the free cooling capacity presently in use."
::= { lgpEnvState 17 }
lgpEnvStateDehumidifyingCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the dehumidifying capacity presently in use."
::= { lgpEnvState 18 }
lgpEnvStateHumidifyingCapacity OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the humidifying capacity presently in use."
::= { lgpEnvState 19 }
lgpEnvStateFreeCooling OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
start(3),
unavailable(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the system free cooling process of heat
exchange. When 'off', free cooling is not in use. When 'on'
free cooling is in use. When 'start', free cooling is preparing
to turn on. When 'unavailable', the state information is
unavailable."
::= { lgpEnvState 20 }
lgpEnvStateElectricHeater OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the electric heaters."
::= { lgpEnvState 21 }
lgpEnvStateHotWater OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of hot water system."
::= { lgpEnvState 22 }
lgpEnvStateOperatingEfficiency OBJECT-TYPE
SYNTAX Unsigned32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio of cooling energy provided to the amount of total energy
being used."
::= { lgpEnvState 23 }
lgpEnvComponentStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpEnvComponentStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of the units components that have
a state associated with them.
The table contains zero, one, or more rows, depending
upon the number of components associated with the unit.
The NMS cannot create or delete rows in the table. The rows are
created by the agent based upon the capabilities of the units
being monitored."
::= { lgpEnvState 50 }
lgpEnvComponentStateEntry OBJECT-TYPE
SYNTAX LgpEnvComponentStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the attributes to be populated in the
various columns of the 'lgpEnvComponentStateTable'."
INDEX
{
lgpEnvComponentStateIndex
}
::= { lgpEnvComponentStateTable 1 }
LgpEnvComponentStateEntry ::= SEQUENCE
{
lgpEnvComponentStateIndex Unsigned32,
lgpEnvComponentStateDescr OBJECT IDENTIFIER,
lgpEnvComponentState INTEGER
}
lgpEnvComponentStateIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index indicating the nth element of the table."
::= { lgpEnvComponentStateEntry 1 }
lgpEnvComponentStateDescr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to a component description object. The object
referenced should not be accessible, but rather be used
to provide a unique description of the component being
described in the row of the table."
::= { lgpEnvComponentStateEntry 2 }
lgpEnvComponentState OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"not-specified
The state of the component is unknown.
on
The component is on.
off
The component is off."
::= { lgpEnvComponentStateEntry 3 }
lgpEnvValveTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpEnvValveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of the unit valves that have
information associated with them.
The table contains zero, one, or more rows, depending
upon the number of valves associated with the unit.
The NMS cannot create or delete rows in the table. The rows are
created by the agent based upon the capabilities of the units
being monitored."
::= { lgpEnvState 70 }
lgpEnvValveEntry OBJECT-TYPE
SYNTAX LgpEnvValveEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the attributes to be populated in the
various columns of the 'lgpEnvValveTable'."
INDEX
{
lgpEnvValveIndex
}
::= { lgpEnvValveTable 1 }
LgpEnvValveEntry ::= SEQUENCE
{
lgpEnvValveIndex Unsigned32,
lgpEnvValveDescr OBJECT IDENTIFIER,
lgpEnvValveState INTEGER,
lgpEnvValvePositionTenths Unsigned32
}
lgpEnvValveIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index indicating the nth element of the table."
::= { lgpEnvValveEntry 1 }
lgpEnvValveDescr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to a valve description object. The object
referenced should not be accessible, but rather be used
to provide a unique description of the valve being
described in the row of the table."
::= { lgpEnvValveEntry 2 }
lgpEnvValveState OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
open(1),
closed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"not-specified
The state of the component is unknown.
open
The valve is open.
off
The valve is closed."
::= { lgpEnvValveEntry 3 }
lgpEnvValvePositionTenths OBJECT-TYPE
SYNTAX Unsigned32
UNITS ".1 percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This gives a value describing the position of the valve."
::= { lgpEnvValveEntry 20 }
-- =============================================================================
-- lgpEnvConfig - Liebert Environmental Configuration Group
-- =============================================================================
lgpEnvConfigReheatLockout OBJECT-TYPE
SYNTAX INTEGER
{
lockedOut(1),
notLockedOut(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If locked-out the reheats will not operate even if controller calls
for its operation."
::= { lgpEnvConfig 1 }
lgpEnvConfigHumLockout OBJECT-TYPE
SYNTAX INTEGER
{
lockedOut(1),
notLockedOut(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If locked-out the humidifier will not operate even if controller
calls for its operation."
::= { lgpEnvConfig 2 }
lgpEnvConfigRestartDelay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When utility power is disrupted, this is the delay interval to wait
before restarting the system after the utility power is restored.
A Restart Delay of zero denotes a manual restart, the unit will NOT
automatically restart."
::= { lgpEnvConfig 4 }
lgpEnvConfigRemoteShutdown OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When in the disabled state, the remote shutdown feature should
be locked out. The enabled state is self-describing."
::= { lgpEnvConfig 7 }
lgpEnvConfigCoolingServiceInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "hours"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time, in hours, between scheduled maintenance
of the cooling system. When the cooling service timer reaches
this value an lgpConditionServiceCooling will be activated.
Once service has been completed the cooling service timer
should be reset to 0."
::= { lgpEnvConfig 8 }
lgpEnvConfigHumidifierServiceInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "hours"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time, in hours, between scheduled maintenance
of the humidifier. When the humidifier service timer reaches
this value an lgpConditionServiceHumidifier will be activated.
Once service has been completed humidifier service timer
should be reset to 0."
::= { lgpEnvConfig 9 }
lgpEnvConfigFilterServiceInterval OBJECT-TYPE
SYNTAX Unsigned32
UNITS "hours"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The amount of time, in hours, between scheduled maintenance
of the system filter. When the filter service timer reaches this
value an lgpConditionChangeFilter will be activated. Once service
has been completed the filter service timer should be reset to 0."
::= { lgpEnvConfig 10 }
lgpEnvConfigSleepModeDeadbandRangeDegC OBJECT-TYPE
SYNTAX Integer32
UNITS ".1 degrees Celsius"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The allowable deviation above and below the temperature set point used
to create a no control region, a dead-band, where heating and
cooling control are disabled. This dead-band is applied only
when the system's sleep mode function is in operation."
::= { lgpEnvConfig 11 }
lgpEnvConfigSleepModeDeadbandRangeDegF OBJECT-TYPE
SYNTAX Integer32
UNITS ".1 degrees Fahrenheit"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The allowable deviation above and below the temperature set point used
to create a no control region, a dead-band, where heating and
cooling control are disabled. This dead-band is applied only
when the system's sleep mode function is in operation."
::= { lgpEnvConfig 12 }
lgpEnvConfigSupplyTempLowLimitDegF OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees Fahrenheit"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum allowable supply temperature."
::= { lgpEnvConfig 13 }
lgpEnvConfigSupplyTempLowLimitDegC OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees Celsius"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum allowable supply temperature."
::= { lgpEnvConfig 14 }
lgpEnvConfigTemperatureIntegTime OBJECT-TYPE
SYNTAX Integer32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value used as the integration factor in the proportional
integral derivative (PID) temperature calculation."
::= { lgpEnvConfig 15 }
lgpEnvConfigLocalTemperatureUnit OBJECT-TYPE
SYNTAX INTEGER
{
degC(1),
degF(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local temperature unit of the system."
::= { lgpEnvConfig 16 }
lgpEnvConfigSleepMode OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2),
auto(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The configured mode of the device's sleep function. If 'enabled',
the device will sleep, or not operate, for each 'lgpEnvSleepDay' that
is enabled and also during the periods defined in the
'lgpEnvSleepTimeTable' each day. If 'disabled', the device will
operate continually and not sleep at all. If 'auto', the device will
sleep, or not operate, for each 'lgpEnvSleepDay' that is enabled and
also during the periods defined in the 'lgpEnvSleepTimeTable' each
day unless the environmental conditions fall outside the desired
operation ranges."
::= { lgpEnvConfig 17 }
lgpEnvConfigHumidityIntegTime OBJECT-TYPE
SYNTAX Integer32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value used as the integration factor in the proportional
integral derivative (PID) humidity calculation."
::= { lgpEnvConfig 18 }
lgpEnvConfigFreecoolingDeltaDegF OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees Fahrenheit"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum temperature differential between the control
temperature measurement and the coolant required to utilize
free-cooling."
::= { lgpEnvConfig 19 }
lgpEnvConfigFreecoolingDeltaDegC OBJECT-TYPE
SYNTAX Integer32
UNITS "degrees Celsius"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The minimum temperature differential between the control
temperature measurement and the coolant required to utilize
free-cooling."
::= { lgpEnvConfig 20 }
lgpEnvConfigSupplyTempLowLimit OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The system configuration parameter to enable or disable the supply
air low temperature limit."
::= { lgpEnvConfig 21 }
lgpEnvConfigSensorEventsStandard OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The system configuration parameter to enable or disable the standard
sensor events."
::= { lgpEnvConfig 22 }
lgpEnvConfigSensorEvents1 OBJECT-TYPE
SYNTAX INTEGER
{
disabled(1),
enabled(2)
}