-
Notifications
You must be signed in to change notification settings - Fork 14
/
LIEBERT_GP_COND.MIB
4816 lines (4124 loc) · 176 KB
/
LIEBERT_GP_COND.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-CONDITIONS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
Gauge32,
TimeTicks,
Unsigned32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
lgpConditions,
liebertConditionsModuleReg
FROM LIEBERT-GP-REGISTRATION-MIB
;
-- =============================================================================
-- Module Identification and Registration
-- =============================================================================
liebertGlobalProductsConditionsModule MODULE-IDENTITY
LAST-UPDATED "201302120000Z"
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-2008,2013 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 "201302120000Z"
DESCRIPTION
"Added Surge Protection Device to lgpConditionCondenserTVSSFailure
DESCRIPTION"
REVISION "200811170000Z"
DESCRIPTION
"Added support for NXL unit."
REVISION "200807020000Z"
DESCRIPTION
"o Expanded condtions table with new columns with a set of richer
alarm/condition properties.
o Added additional reference columns to conditions table to allow the
same alarm to be active on multiple instances of an item.
"
REVISION "200801100000Z"
DESCRIPTION
"Modified contact email address and added lgpNetworkName object."
REVISION "200705290000Z"
DESCRIPTION
"Added support for XDF Unit."
REVISION "200608150000Z"
DESCRIPTION
"Added support for HP release and a condition for firmware corrupt."
REVISION "200602220000Z"
DESCRIPTION
"Added support for Liebert DS Unit."
::= { liebertConditionsModuleReg 1 }
-- =============================================================================
-- lgpConditions - Liebert Conditions Registrations
-- =============================================================================
lgpConditionsWellKnown OBJECT IDENTIFIER
-- STATUS current
-- DESCRIPTION
-- "Liebert well known conditions are defined by OIDs that reside
-- in this sub-tree."
::= { lgpConditions 1 }
lgpConditionsPresent OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present number of conditions (rows) in the lgpConditionsTable."
::= { lgpConditions 2 }
lgpConditionsTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpConditionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of condition table entries. The table contains zero, one,
or many rows at any moment, depending upon the number of conditions
in effect. The number of rows in the table is given by
(lgpConditionsPresent). The table is initially empty at agent startup.
The agent creates a row in the table each time a condition is detected
and deletes that row subject to the following rules:
Rows are removed from the table based on the following rules:
1. If a condition does not require acknowledgement
(see 'lgpConditionAckReq') the condition is removed as soon as
the issue clears (see 'lgpConditionCurrentState').
2. If a condition requires acknowledgement (see 'lgpConditionAckReq')
the condition is removed as soon as the issue clears
(see 'lgpConditionCurrentState') AND the condition is acknowledged
(see 'lgpConditionAcknowledged').
3. If the columns 'lgpConditionCurrentState' and
'lgpConditionAcknowledged' are not present for the condition
then the condition will be removed as soon as the issue causing
the condition clears.
The agent creates the first row with lgpConditionId equal to 1,
and increments the value of 'lgpConditionId' each time a new row is
created, wrapping to the first free value greater than or equal to 1
when the maximum value of lgpConditionId would otherwise be exceeded.
The number of rows in the table at any given time is reflected by
the value of 'lgpConditionsPresent'.
"
::= { lgpConditions 3 }
lgpConditionEntry OBJECT-TYPE
SYNTAX LgpConditionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the contents of the rows for the table
'lgpConditionsTable'. A row in this table cannot be created
or deleted by SNMP operations on columns of the table."
INDEX { lgpConditionId }
::= { lgpConditionsTable 1 }
LgpConditionEntry ::= SEQUENCE {
lgpConditionId Unsigned32,
lgpConditionDescr OBJECT IDENTIFIER,
lgpConditionTime TimeTicks,
lgpConditionTableRef OBJECT IDENTIFIER,
lgpConditionTableRowRef OBJECT IDENTIFIER,
lgpConditionType INTEGER,
lgpConditionCurrentState INTEGER,
lgpConditionSeverity INTEGER,
lgpConditionAcknowledged INTEGER,
lgpConditionAckReq INTEGER
}
lgpConditionId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique identifier for a condition. This value must remain
constant between agent initializations. This OID is used as
an index to identify a row in the table 'lgpConditionsTable'."
::= { lgpConditionEntry 1 }
lgpConditionDescr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to a condition description object. The object
referenced should not be accessible, but rather be used to provide
a unique description."
::= { lgpConditionEntry 2 }
lgpConditionTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of sysUpTime when the condition occurred (became active)."
::= { lgpConditionEntry 3 }
lgpConditionTableRef OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object will be included as a varbind in some
rows of the table. It is a reference to a table object in
the MIB. The value of this object will be the OID of a table
that the object that the condition applies to is defined.
The table row corresponding to this object will also contain
a varbind 'lgpConditionTableRowRef' that will specify which
instance (row) in the referenced table the object is defined in.
Example:
TABLE ROW:
lgpConditionId 5
lgpConditionDescr lgpConditionRcpBranchBreakerOpen
lgpConditionTime 393884848
lgpConditionTableRef lgpPduRbTable
lgpConditionTableRowRef lgpPduRbEntryId.1.4
lgpConditionType alarm
lgpConditionCurrentState active
lgpConditionSeverity major
lgpConditionAcknowledged acknowledged
lgpConditionAckReq required
In the above example the breaker opened for a Receptacle branch.
The specific receptacle branch is specified by the additional
varbind (lgpEventParmTableRowRef). In this case the notification
is for the 4th receptacle branch on the 1st PDU in the cluster.
"
::= { lgpConditionEntry 5 }
lgpConditionTableRowRef OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a reference to the (cell) in the table specified by the
companion varbind (lgpConditionTableRef) in this condition.
The row in the table where this cell exists represents the object
that this condition applies to.
Example:
TABLE ROW:
lgpConditionId 5
lgpConditionDescr lgpConditionRcpBranchBreakerOpen
lgpConditionTime 393884848
lgpConditionTableRef lgpPduRbTable
lgpConditionTableRowRef lgpPduRbEntryId.1.4
lgpConditionType
lgpConditionCurrentState active
lgpConditionSeverity major
lgpConditionAcknowledged acknowledged
lgpConditionAckReq required
The table containing the definition of the receptacle branch
(lgpPduRbTable) is given by the varbind (lgpConditionTableRef)
The specific receptacle branch (instance) is specified by the
varbind (lgpConditionTableRowRef). In this case the condition
is for the 4th receptacle branch on the 1st PDU in the PDU cluster.
If one wanted to retrieve the serial number for this
receptacle branch the OID would be: lgpPduRbEntrySerialNum.1.4.
"
::= { lgpConditionEntry 6 }
lgpConditionType OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
message(2),
warning(4),
alarm(6),
fault(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of condition in this row in the table."
::= { lgpConditionEntry 10 }
lgpConditionCurrentState OBJECT-TYPE
SYNTAX INTEGER
{
active(1),
inactive(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indication of the current state of the event. If the state
is 'active' then the condition currently exists. If the
state is 'inactive' then the condition no longer exists (i.e.
the situation causing the condition has cleared or been
resolved). The behavior of some devices is to remove
the condition from this table when the condition clears.
The behavior of other devices is to leave the condition
entry in the table until the condition is acknowledged (
see lgpConditionAcknowledged and lgpConditionAckReq)."
::= { lgpConditionEntry 12 }
lgpConditionSeverity OBJECT-TYPE
SYNTAX INTEGER
{
not-applicable(0),
minor(3),
major(6),
critical(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This represents the relative severity of the condition."
::= { lgpConditionEntry 14 }
lgpConditionAcknowledged OBJECT-TYPE
SYNTAX INTEGER
{
notAcknowledged(1),
acknowledged(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This indicates if the condition has been acknowledged.
If the value is 'notAcknowledged' then the condition has
not been acknowledged. If the value is 'acknowledged'
then the condition has been acknowledged. Writing a value
of 'acknowledged' to this object acknowledges the condition
and the value will be changed to 'acknowledged'.
If the current state of the condition is 'active'
(see lgpConditionCurrentState) the condition will, for all
devices remain in the table regardless of the state of the
'lgpConditionAcknowledged' object.
If the 'lgpConditionAckReq' is 'notRequired' or this column
does not exist for the row then this object has no affect on
the duration the condition stays in the lgpConditionsTable.
If the 'lgpConditionAckReq' is 'required' then the condition
will remain in the condition table until both the
'lgpConditionCurrentState' is 'inactive' AND
'lgpConditionAcknowledged' is 'acknowledged'.
"
::= { lgpConditionEntry 18 }
lgpConditionAckReq OBJECT-TYPE
SYNTAX INTEGER
{
required(1),
notRequired(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This indicates if the corresponding condition does or does not
require user acknowledgement. Conditions that require
user acknowledgement will have a value of 'required'. Those
conditions that do not require user acknowledgement will have
a value of 'notRequired' or in some devices the column may
not be present at all.
If a condition requires acknowledgement it will remain in the
table until both the 'lgpConditionCurrentState' and
'lgpConditionAcknowledged' are 'inactive' and 'acknowledged'
respectively (see lgpConditionAcknowledged).
If a condition does not require acknowledgement it will
be removed from the table as soon as its
'lgpConditionCurrentState' is 'inactive'.
"
::= { lgpConditionEntry 19 }
-- =============================================================================
-- lgpConditionControl - Condition Control Group
-- =============================================================================
lgpConditionControl OBJECT IDENTIFIER
-- STATUS current
-- DESCRIPTION
-- "Items under this sub-tree allow the user to control actions
-- associated with conditions."
::= { lgpConditions 4 }
lgpConditionControlEventReset OBJECT-TYPE
SYNTAX INTEGER
{
noAction(1),
resetAll(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Event Reset Command. This command will reset all of the
device's events. On some units, when an event is activated, a
'set' field is also marked and maintained even when the event has
become inactive. The 'set' field is only cleared when the user
clears it and the event is no longer active. This item will clear
the 'set' field for all events that are not active."
::= { lgpConditionControl 1 }
lgpConditionControlEventAck OBJECT-TYPE
SYNTAX INTEGER
{
noAction(1),
ackAll(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Event Acknowledge Command. This command will acknowledge all of the
device's events."
::= { lgpConditionControl 2 }
lgpConditionControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpConditionControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of condition control table entries. The table contains zero, one,
or many rows at any moment, depending upon the number of conditions that
are controllable by the unit. This table does not necessarily contain all
conditions supported by the unit. This table only contains conditions that
are end-user modifiable."
::= { lgpConditionControl 20 }
lgpConditionControlEntry OBJECT-TYPE
SYNTAX LgpConditionControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the contents of the rows for the table
'lgpConditionControlTable'. A row in this table cannot be created
or deleted by user initiated SNMP operations on columns of the table."
INDEX { lgpConditionControlIndex }
::= { lgpConditionControlTable 1 }
LgpConditionControlEntry ::= SEQUENCE {
lgpConditionControlIndex Unsigned32,
lgpConditionControlDescr OBJECT IDENTIFIER,
lgpConditionControlEnableStatus INTEGER,
lgpConditionControlType INTEGER,
lgpConditionControlEnableCapability INTEGER
}
lgpConditionControlIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index indicating the nth element of the table."
::= { lgpConditionControlEntry 1 }
lgpConditionControlDescr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to an Object Identifier (OID) representing a unique
condition. The referenced OID is used solely for identification
purposes.
The object identifier referenced here will be the same object
identifier referenced in the lgpConditionsTable (column:
lgpConditionDescr) when the condition is activated."
::= { lgpConditionControlEntry 2 }
lgpConditionControlEnableStatus OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value in this column determines if the device is currently
capable of generating this event. If the value is 'enabled' then
the event will be generated if the condition indicated by
lgpConditionControlDescr becomes active. If the value is
'disabled' the device will never generate the event. This value is
stored on the managed device.
Some devices do not allow write access to some entries in this
column. The 'lgpConditionControlEnableCapability' column indicates
whether this entry can be written."
::= { lgpConditionControlEntry 3 }
lgpConditionControlType OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
message(2),
warning(4),
alarm(6),
fault(8)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 'type' assigned or configured for this condition. The value
assigned to the condition here is displayed in the
lgpConditionsTable (column: lgpConditionType). For some units this
is user configurable. This value is stored on the managed device."
::= { lgpConditionControlEntry 4 }
lgpConditionControlEnableCapability OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
readonly(1),
readwrite(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Some devices do not allow write access to some entries in the
'lgpConditionControlEnableStatus' column. This column indicates
whether the 'lgpConditionControlEnableStatus' entry for this row
can be written."
::= { lgpConditionControlEntry 5 }
lgpConditionDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ASCII text description for the condition."
::= { lgpConditions 5 }
lgpNetworkName OBJECT-TYPE
SYNTAX DisplayString (SIZE (255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The network name in a node.domain.com like format. This object is
intended to be used as a varbind object by other notifications that
have a context of a network address. As an example the
lgpAgentDnsLookupFailure trap which describes a network name that
is failing or has failed to be resolved from a Domain Name Service (DNS)
lookup.
Refer to RFC 952 for further information."
::= { lgpConditions 6 }
-- =============================================================================
-- lgpConditions - Additional Liebert Conditions Registrations
-- =============================================================================
lgpFlexConditions OBJECT IDENTIFIER
-- STATUS current
-- DESCRIPTION
-- "Liebert well known Flexible conditions are defined by OIDs that reside
-- in this sub-tree. These OIDs can be found in the
-- LIEBERT-GP-FLEXIBLE-CONDITIONS-MIB which is located in the file
-- LIEBERT_GP_FLEXIBLE_COND.MIB."
::= { lgpConditions 7 }
-- =============================================================================
-- lgpConditionsWellKnown - Liebert "well-known" conditions
-- =============================================================================
lgpConditionHighTemperature OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The temperature has exceeded the high temperature threshold."
::= { lgpConditionsWellKnown 1 }
lgpConditionLowTemperature OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The temperature is below the low temperature threshold."
::= { lgpConditionsWellKnown 2 }
lgpConditionHighHumidity OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The humidity has exceeded the high humidity threshold."
::= { lgpConditionsWellKnown 3 }
lgpConditionLowHumidity OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The humidity is below the low humidity threshold."
::= { lgpConditionsWellKnown 4 }
lgpConditionLossOfAirflow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a loss of air flow."
::= { lgpConditionsWellKnown 5 }
lgpConditionLossOfAirflow1 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a loss of air flow at sensor 1."
::= { lgpConditionLossOfAirflow 1 }
lgpConditionLossOfAirflow2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a loss of air flow at sensor 2."
::= { lgpConditionLossOfAirflow 2 }
lgpConditionLossOfAirflowBlower1 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a loss of air flow from blower 1."
::= { lgpConditionLossOfAirflow 3 }
lgpConditionLossOfAirflowAllBlowers OBJECT-IDENTITY
STATUS current
DESCRIPTION
"No air flow through the unit due to failure of all blowers."
::= { lgpConditionLossOfAirflow 4 }
lgpConditionChangeFilter OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a condition indicating the air filter
should be changed."
::= { lgpConditionsWellKnown 6 }
lgpConditionCompressorHighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This system has detected an excessive head pressure condition."
::= { lgpConditionsWellKnown 7 }
lgpConditionCompressor1HighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 1."
::= { lgpConditionCompressorHighHeadPressure 1 }
lgpConditionCompressor1AHighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 1A."
::= { lgpConditionCompressor1HighHeadPressure 1 }
lgpConditionCompressor1BHighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 1B."
::= { lgpConditionCompressor1HighHeadPressure 2 }
lgpConditionCompressor2HighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 2."
::= { lgpConditionCompressorHighHeadPressure 2 }
lgpConditionCompressor2AHighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 2A."
::= { lgpConditionCompressor2HighHeadPressure 1 }
lgpConditionCompressor2BHighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 2B."
::= { lgpConditionCompressor2HighHeadPressure 2 }
lgpConditionCompressor3HighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 3."
::= { lgpConditionCompressorHighHeadPressure 3 }
lgpConditionCompressor4HighHeadPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected excessive head pressure in compressor 4."
::= { lgpConditionCompressorHighHeadPressure 4 }
lgpConditionCompressorOverload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This system has detected a compressor overload condition."
::= { lgpConditionsWellKnown 8 }
lgpConditionCompressor1Overload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected an overload condition on compressor 1."
::= { lgpConditionCompressorOverload 1 }
lgpConditionCompressor2Overload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected an overload condition on compressor 2."
::= { lgpConditionCompressorOverload 2 }
lgpConditionCompressor3Overload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected an overload condition on compressor 3."
::= { lgpConditionCompressorOverload 3 }
lgpConditionCompressor4Overload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected an overload condition on compressor 4."
::= { lgpConditionCompressorOverload 4 }
lgpConditionCompressorShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A compressor has exceeded the maximum number of starts in a
minimum time period."
::= { lgpConditionsWellKnown 9 }
lgpConditionCompressor1ShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 1.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressorShortCycle 1 }
lgpConditionCompressor1AShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 1A.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressor1ShortCycle 1 }
lgpConditionCompressor1BShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 1B.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressor1ShortCycle 2 }
lgpConditionCompressor2ShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 2.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressorShortCycle 2 }
lgpConditionCompressor2AShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 2A.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressor2ShortCycle 1 }
lgpConditionCompressor2BShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 2B.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressor2ShortCycle 2 }
lgpConditionCompressor3ShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 3.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressorShortCycle 3 }
lgpConditionCompressor4ShortCycle OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short cycle event on compressor 4.
The compressor has exceeded the maximum number of starts for
specified amount of time."
::= { lgpConditionCompressorShortCycle 4 }
lgpConditionCompressorLowSuctionPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The pressure at a compressor inlet has dropped below the
minimum setting."
::= { lgpConditionsWellKnown 10 }
lgpConditionCompressor1LowSuctionPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The pressure at compressor 1 inlet has dropped below the
minimum setting."
::= { lgpConditionCompressorLowSuctionPressure 1 }
lgpConditionCompressor2LowSuctionPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The pressure at compressor 2 inlet has dropped below the
minimum setting."
::= { lgpConditionCompressorLowSuctionPressure 2 }
lgpConditionCompressor3LowSuctionPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The pressure at compressor 3 inlet has dropped below the
minimum setting."
::= { lgpConditionCompressorLowSuctionPressure 3 }
lgpConditionCompressor4LowSuctionPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The pressure at compressor 4 inlet has dropped below the
minimum setting."
::= { lgpConditionCompressorLowSuctionPressure 4 }
lgpConditionMainFanOverLoad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a main fan overload condition."
::= { lgpConditionsWellKnown 11 }
lgpConditionManualOverride OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a manual override condition."
::= { lgpConditionsWellKnown 12 }
lgpConditionStandbyGlycoolPumpOn OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The standby Glycol or Glycool pump is activated."
::= { lgpConditionsWellKnown 13 }
lgpConditionWaterUnderFloor OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Moisture has been detected under the floor."
::= { lgpConditionsWellKnown 14 }
lgpConditionHumidifierProblem OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a humidifier problem."
::= { lgpConditionsWellKnown 15 }
lgpConditionLowWaterInHumidifier OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a low water condition in the humidifier
reservoir."
::= { lgpConditionsWellKnown 16 }
lgpConditionSmokeDetected OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected smoke."
::= { lgpConditionsWellKnown 17 }
lgpConditionLowWaterFlow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a low water flow rate condition."
::= { lgpConditionsWellKnown 18 }
lgpConditionLostPower OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has lost power before being switched off using the
controls. This condition is activated when power is restored."
::= { lgpConditionsWellKnown 19 }
lgpGeneralFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A fault condition has been detected that is not identified
in the well known list."
::= { lgpConditionsWellKnown 20 }
lgpConditionLocalAlarm OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This system has detected a local, or customer, alarm condition."
::= { lgpConditionsWellKnown 21 }
lgpConditionLocalAlarm1 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 1 is active."
::= { lgpConditionLocalAlarm 1 }
lgpConditionLocalAlarm2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 2 is active."
::= { lgpConditionLocalAlarm 2 }
lgpConditionLocalAlarm3 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 3 is active."
::= { lgpConditionLocalAlarm 3 }
lgpConditionLocalAlarm4 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 4 is active."
::= { lgpConditionLocalAlarm 4 }
lgpConditionLocalAlarm5 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 5 is active."
::= { lgpConditionLocalAlarm 5 }
lgpConditionLocalAlarm6 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 6 is active."
::= { lgpConditionLocalAlarm 6 }
lgpConditionLocalAlarm7 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 7 is active."
::= { lgpConditionLocalAlarm 7 }
lgpConditionLocalAlarm8 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected that customer alarm condition 8 is active."
::= { lgpConditionLocalAlarm 8 }
lgpConditionStandbyUnitOn OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected the standby unit is operating."
::= { lgpConditionsWellKnown 22 }
lgpConditionCompressorLowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This system has detected a low head compressor condition."
::= { lgpConditionsWellKnown 23 }
lgpConditionCompressor1LowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected low pressure in compressor 1."
::= { lgpConditionCompressorLowPressure 1 }
lgpConditionTandemCompressorCircuit1LowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected low pressure in tandem compressor circuit 1."
::= { lgpConditionCompressor1LowPressure 1 }
lgpConditionCompressor2LowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected low pressure in compressor 2."
::= { lgpConditionCompressorLowPressure 2 }
lgpConditionTandemCompressorCircuit2LowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected low pressure in tandem compressor circuit 2."
::= { lgpConditionCompressor2LowPressure 1 }
lgpConditionCompressor3LowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected low pressure in compressor 3."
::= { lgpConditionCompressorLowPressure 3 }
lgpConditionCompressor4LowPressure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected low pressure in compressor 4."
::= { lgpConditionCompressorLowPressure 4 }
lgpConditionHighWaterInPan OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a high water condition in the condenser pan."
::= { lgpConditionsWellKnown 24 }
lgpConditionFaultySensor OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a faulty temperature/humidity sensor."
::= { lgpConditionsWellKnown 25 }
lgpConditionServiceCooling OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The Cooling system requires scheduled maintenance."
::= { lgpConditionsWellKnown 26 }
lgpConditionServiceHumidifier OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The Humidifier requires scheduled maintenance."
::= { lgpConditionsWellKnown 27 }
lgpConditionSystemControlBatteryLow OBJECT-IDENTITY
STATUS current