-
Notifications
You must be signed in to change notification settings - Fork 14
/
LIEBERT_GP_FLEXIBLE_COND.MIB
6653 lines (5607 loc) · 213 KB
/
LIEBERT_GP_FLEXIBLE_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-FLEXIBLE-CONDITIONS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY
FROM SNMPv2-SMI
liebertFlexibleConditionsModuleReg
FROM LIEBERT-GP-REGISTRATION-MIB
lgpFlexConditions
FROM LIEBERT-GP-CONDITIONS-MIB
;
-- =============================================================================
-- Module Identification and Registration
-- =============================================================================
liebertGlobalProductsFlexibleConditionsModule MODULE-IDENTITY
LAST-UPDATED "202001170000Z"
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"
DESCRIPTION
"The MIB module used to register Liebert SNMP OIDs.
Copyright 2000-2020 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 "202001170000Z"
DESCRIPTION
"Compiled From GDD Version: 8178.1"
::= { liebertFlexibleConditionsModuleReg 1 }
-- =============================================================================
-- lgpFlexConditions - Liebert Conditions Registrations
-- =============================================================================
lgpFlexConditionsWellKnown OBJECT IDENTIFIER
-- STATUS current
-- DESCRIPTION
-- "Liebert well known conditions are defined by OIDs that
-- reside in this sub-tree."
::= { lgpFlexConditions 1 }
-- =============================================================================
-- lgpFlexConditionsWellKnown - Liebert "well-known" Conditions
-- =============================================================================
lgpCondId4122SystemInputPowerProblem OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The input is not qualified to provide power to the system."
::= { lgpFlexConditionsWellKnown 4122 }
lgpCondId4132BypassOverloadPhaseA OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An overload exists on output phase A while operating on the bypass."
::= { lgpFlexConditionsWellKnown 4132 }
lgpCondId4133BypassOverloadPhaseB OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An overload exists on output phase B while operating on the bypass."
::= { lgpFlexConditionsWellKnown 4133 }
lgpCondId4134BypassOverloadPhaseC OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An overload exists on output phase C while operating on the bypass."
::= { lgpFlexConditionsWellKnown 4134 }
lgpCondId4135BypassNotAvailable OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A problem associated with the bypass has been detected."
::= { lgpFlexConditionsWellKnown 4135 }
lgpCondId4137BypassAutoRetransferPrimed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Automatic retransfer from bypass to inverter is possible."
::= { lgpFlexConditionsWellKnown 4137 }
lgpCondId4138BypassAutoRetransferFailed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"After performing a recoverable transfer to bypass, an attempt to
auto retransfer from bypass to inverter failed."
::= { lgpFlexConditionsWellKnown 4138 }
lgpCondId4139BypassExcessAutoRetransfers OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The number of auto retransfers, from bypass to inverter, has
exceeded the maximum for a specified time interval."
::= { lgpFlexConditionsWellKnown 4139 }
lgpCondId4140BypassRestartInhibitExternal OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Restart of the bypass is inhibited by the state of an external
signal."
::= { lgpFlexConditionsWellKnown 4140 }
lgpCondId4141BypassBreakerClosed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The bypass breaker is closed."
::= { lgpFlexConditionsWellKnown 4141 }
lgpCondId4142BypassStaticSwitchOverload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Bypass off due to static switch overload."
::= { lgpFlexConditionsWellKnown 4142 }
lgpCondId4143BypassStaticSwitchUnavailable OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The static bypass is unavailable to support the critical load."
::= { lgpFlexConditionsWellKnown 4143 }
lgpCondId4144BypassExcessivePulseParallel OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has performed too many pulse parallel operations within
a specified time interval."
::= { lgpFlexConditionsWellKnown 4144 }
lgpCondId4145BypassAutoTransferFailed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"An automatic transfer to static bypass failed."
::= { lgpFlexConditionsWellKnown 4145 }
lgpCondId4146SystemInputPhsRotationError OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The power conductors on the input line are not wired to the UPS in
the sequence preferred for the rectifier (A-B-C)."
::= { lgpFlexConditionsWellKnown 4146 }
lgpCondId4147SystemInputCurrentLimit OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The RMS input current has reached the input current limit
threshold."
::= { lgpFlexConditionsWellKnown 4147 }
lgpCondId4162BatteryLow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The calculated battery time remaining has reached the low battery
threshold."
::= { lgpFlexConditionsWellKnown 4162 }
lgpCondId4163OutputOffEndofDischarge OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Output turned off due to battery reaching end-of-discharge."
::= { lgpFlexConditionsWellKnown 4163 }
lgpCondId4164BatteryChargingError OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The battery is not charging properly."
::= { lgpFlexConditionsWellKnown 4164 }
lgpCondId4165BatteryChargingReducedExtrnl OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Using a reduced battery charging algorithm due to an external
signal."
::= { lgpFlexConditionsWellKnown 4165 }
lgpCondId4166BatteryCapacityLow OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery capacity is low."
::= { lgpFlexConditionsWellKnown 4166 }
lgpCondId4167OutputOff OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Output is off."
::= { lgpFlexConditionsWellKnown 4167 }
lgpCondId4168BatteryDischarging OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The battery is discharging."
::= { lgpFlexConditionsWellKnown 4168 }
lgpCondId4169BatteryTemperatureImbalance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Excessive temperature differences between battery sensors detected."
::= { lgpFlexConditionsWellKnown 4169 }
lgpCondId4170BatteryEqualize OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The rectifier output voltage is increased to equalize the battery
voltage level."
::= { lgpFlexConditionsWellKnown 4170 }
lgpCondId4171BatteryManualTestInProgress OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Manual battery test is in progress."
::= { lgpFlexConditionsWellKnown 4171 }
lgpCondId4172BatteryAutoTestInProgress OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Automatic battery test is in progress."
::= { lgpFlexConditionsWellKnown 4172 }
lgpCondId4173MainBatteryDisconnectOpen OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Main battery disconnect is open."
::= { lgpFlexConditionsWellKnown 4173 }
lgpCondId4174BatteryTemperatureSensorFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A battery temperature sensor fault has been detected."
::= { lgpFlexConditionsWellKnown 4174 }
lgpCondId4175BypassFrequencyError OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The bypass frequency is outside the inverter synchronization
limits."
::= { lgpFlexConditionsWellKnown 4175 }
lgpCondId4176BatteryCircuitBreaker1Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 1 is open."
::= { lgpFlexConditionsWellKnown 4176 }
lgpCondId4177BatteryBreaker1OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 1 failed to open."
::= { lgpFlexConditionsWellKnown 4177 }
lgpCondId4178BatteryBreaker1CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 1 failed to close."
::= { lgpFlexConditionsWellKnown 4178 }
lgpCondId4179BatteryCircuitBreaker2Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 2 is open."
::= { lgpFlexConditionsWellKnown 4179 }
lgpCondId4180BatteryBreaker2OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 2 failed to open."
::= { lgpFlexConditionsWellKnown 4180 }
lgpCondId4181BatteryBreaker2CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 2 failed to close."
::= { lgpFlexConditionsWellKnown 4181 }
lgpCondId4182BatteryCircuitBreaker3Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 3 is open."
::= { lgpFlexConditionsWellKnown 4182 }
lgpCondId4183BatteryBreaker3OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 3 failed to open."
::= { lgpFlexConditionsWellKnown 4183 }
lgpCondId4184BatteryBreaker3CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 3 failed to close."
::= { lgpFlexConditionsWellKnown 4184 }
lgpCondId4185BatteryCircuitBreaker4Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 4 is open."
::= { lgpFlexConditionsWellKnown 4185 }
lgpCondId4186BatteryBreaker4OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 4 failed to open."
::= { lgpFlexConditionsWellKnown 4186 }
lgpCondId4187BatteryBreaker4CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 4 failed to close."
::= { lgpFlexConditionsWellKnown 4187 }
lgpCondId4188BatteryCircuitBreaker5Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 5 is open."
::= { lgpFlexConditionsWellKnown 4188 }
lgpCondId4189BatteryBreaker5OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 5 failed to open."
::= { lgpFlexConditionsWellKnown 4189 }
lgpCondId4190BatteryBreaker5CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 5 failed to close."
::= { lgpFlexConditionsWellKnown 4190 }
lgpCondId4191BatteryCircuitBreaker6Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 6 is open."
::= { lgpFlexConditionsWellKnown 4191 }
lgpCondId4192BatteryBreaker6OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 6 failed to open."
::= { lgpFlexConditionsWellKnown 4192 }
lgpCondId4193BatteryBreaker6CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 6 failed to close."
::= { lgpFlexConditionsWellKnown 4193 }
lgpCondId4194BatteryCircuitBreaker7Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 7 is open."
::= { lgpFlexConditionsWellKnown 4194 }
lgpCondId4195BatteryBreaker7OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 7 failed to open."
::= { lgpFlexConditionsWellKnown 4195 }
lgpCondId4196BatteryBreaker7CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 7 failed to close."
::= { lgpFlexConditionsWellKnown 4196 }
lgpCondId4197BatteryCircuitBreaker8Open OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 8 is open."
::= { lgpFlexConditionsWellKnown 4197 }
lgpCondId4198BatteryBreaker8OpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 8 failed to open."
::= { lgpFlexConditionsWellKnown 4198 }
lgpCondId4199BatteryBreaker8CloseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery circuit breaker 8 failed to close."
::= { lgpFlexConditionsWellKnown 4199 }
lgpCondId4200BatteryChargingInhibited OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery charging is inhibited due to an external inhibit signal."
::= { lgpFlexConditionsWellKnown 4200 }
lgpCondId4213SystemShutdownEPO OBJECT-IDENTITY
STATUS current
DESCRIPTION
"System shutdown due to Emergency Power Off (EPO)."
::= { lgpFlexConditionsWellKnown 4213 }
lgpCondId4214SystemShutdownREPO OBJECT-IDENTITY
STATUS current
DESCRIPTION
"System shutdown due to Remote Emergency Power Off (REPO)."
::= { lgpFlexConditionsWellKnown 4214 }
lgpCondId4215SystemOutputOff OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system output is off."
::= { lgpFlexConditionsWellKnown 4215 }
lgpCondId4216BypassBackfeedDetected OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system detected a voltage on the bypass when none was expected."
::= { lgpFlexConditionsWellKnown 4216 }
lgpCondId4217BypassManualXfrInhibited OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Manual transfer from inverter to bypass is inhibited - bypass not
qualified."
::= { lgpFlexConditionsWellKnown 4217 }
lgpCondId4218BypassManualRexfrInhibited OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Manual transfer from bypass to inverter is inhibited - inverter
output not qualified."
::= { lgpFlexConditionsWellKnown 4218 }
lgpCondId4219BatteryOverTemperature OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A battery temperature sensor is reporting a value above a
threshold."
::= { lgpFlexConditionsWellKnown 4219 }
lgpCondId4220BatteryExternalMonitor1 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"External battery monitor 1 - battery maintenance required."
::= { lgpFlexConditionsWellKnown 4220 }
lgpCondId4221BatteryExternalMonitor2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"External battery monitor 2 - battery maintenance required."
::= { lgpFlexConditionsWellKnown 4221 }
lgpCondId4222BatteryGroundFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery system ground fault amperage exceeds the threshold."
::= { lgpFlexConditionsWellKnown 4222 }
lgpCondId4229EmergencyPowerOffLatched OBJECT-IDENTITY
STATUS current
DESCRIPTION
"System output is off - 'Emergency Power Off (EPO) - latched'
requires manual reset."
::= { lgpFlexConditionsWellKnown 4229 }
lgpCondId4230SystemOutputLowPowerFactor OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system output power factor is low, resulting in reduced output
capacity."
::= { lgpFlexConditionsWellKnown 4230 }
lgpCondId4231OutputCurrentExceedsThreshold OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Output current for one or more phases exceeds a threshold."
::= { lgpFlexConditionsWellKnown 4231 }
lgpCondId4233InverterFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter failure - inverter output is off."
::= { lgpFlexConditionsWellKnown 4233 }
lgpCondId4234InverterOverloadPhaseA OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter is operating with an overload on phase A."
::= { lgpFlexConditionsWellKnown 4234 }
lgpCondId4235InverterOverloadPhaseB OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter is operating with an overload on phase B."
::= { lgpFlexConditionsWellKnown 4235 }
lgpCondId4236InverterOverloadPhaseC OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter is operating with an overload on phase C."
::= { lgpFlexConditionsWellKnown 4236 }
lgpCondId4237InverterInhibitExternal OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Restart of the inverter is inhibited by an external signal."
::= { lgpFlexConditionsWellKnown 4237 }
lgpCondId4238InverterOutBreakerOpenFail OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter output breaker failed to open."
::= { lgpFlexConditionsWellKnown 4238 }
lgpCondId4239InverterOutBreakerCloseFail OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter output breaker failed to close."
::= { lgpFlexConditionsWellKnown 4239 }
lgpCondId4270InputContact01 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 1."
::= { lgpFlexConditionsWellKnown 4270 }
lgpCondId4271InputContact02 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 2."
::= { lgpFlexConditionsWellKnown 4271 }
lgpCondId4272InputContact03 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 3."
::= { lgpFlexConditionsWellKnown 4272 }
lgpCondId4273InputContact04 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 4."
::= { lgpFlexConditionsWellKnown 4273 }
lgpCondId4274InputContact05 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 5."
::= { lgpFlexConditionsWellKnown 4274 }
lgpCondId4275InputContact06 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 6."
::= { lgpFlexConditionsWellKnown 4275 }
lgpCondId4276InputContact07 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 7."
::= { lgpFlexConditionsWellKnown 4276 }
lgpCondId4277InputContact08 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 8."
::= { lgpFlexConditionsWellKnown 4277 }
lgpCondId4278InputContact09 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 9."
::= { lgpFlexConditionsWellKnown 4278 }
lgpCondId4279InputContact10 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 10."
::= { lgpFlexConditionsWellKnown 4279 }
lgpCondId4280InputContact11 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 11."
::= { lgpFlexConditionsWellKnown 4280 }
lgpCondId4281InputContact12 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 12."
::= { lgpFlexConditionsWellKnown 4281 }
lgpCondId4282InputContact13 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 13."
::= { lgpFlexConditionsWellKnown 4282 }
lgpCondId4283InputContact14 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 14."
::= { lgpFlexConditionsWellKnown 4283 }
lgpCondId4284InputContact15 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 15."
::= { lgpFlexConditionsWellKnown 4284 }
lgpCondId4285InputContact16 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The external input contact 16."
::= { lgpFlexConditionsWellKnown 4285 }
lgpCondId4286OutputAmpOverUserLimitPhsA OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The phase A output has exceeded the user amperage threshold."
::= { lgpFlexConditionsWellKnown 4286 }
lgpCondId4287OutputAmpOverUserLimitPhsB OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The phase B output has exceeded the user amperage threshold."
::= { lgpFlexConditionsWellKnown 4287 }
lgpCondId4288OutputAmpOverUserLimitPhsC OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The phase C output has exceeded the user amperage threshold."
::= { lgpFlexConditionsWellKnown 4288 }
lgpCondId4289InverterTransferInhibitExt OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Transfer of critical bus source to inverter is inhibited by an
external signal."
::= { lgpFlexConditionsWellKnown 4289 }
lgpCondId4290InverterShutdownOverload OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inverter has shutdown due to a sustained overload."
::= { lgpFlexConditionsWellKnown 4290 }
lgpCondId4294InletAirOverTemperature OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The inlet air exceeds the maximum temperature threshold."
::= { lgpFlexConditionsWellKnown 4294 }
lgpCondId4295RectifierFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Rectifier failure - rectifier is off."
::= { lgpFlexConditionsWellKnown 4295 }
lgpCondId4296RectifierOperationInhibitExt OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The operation of the rectifier is inhibited by an external signal."
::= { lgpFlexConditionsWellKnown 4296 }
lgpCondId4297UPSOutputonInverter OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output power is supplied by the inverter."
::= { lgpFlexConditionsWellKnown 4297 }
lgpCondId4298UPSOutputonBypass OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output power is supplied by the bypass."
::= { lgpFlexConditionsWellKnown 4298 }
lgpCondId4299OutputLoadonMaintBypass OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The output power is supplied by the maintenance bypass."
::= { lgpFlexConditionsWellKnown 4299 }
lgpCondId4300InternalCommunicationsFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The control has detected a communication failure of a component on
the internal communication bus."
::= { lgpFlexConditionsWellKnown 4300 }
lgpCondId4308DCBusGroundFaultPositive OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A ground fault has been detected on the positive DC Bus link."
::= { lgpFlexConditionsWellKnown 4308 }
lgpCondId4309DCBusGroundFaultNegative OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A ground fault has been detected on the negative DC Bus link."
::= { lgpFlexConditionsWellKnown 4309 }
lgpCondId4310EquipmentOverTemperature OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Equipment over temperature summary event."
::= { lgpFlexConditionsWellKnown 4310 }
lgpCondId4311SystemFanFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"System fan failure - one or more fans have failed."
::= { lgpFlexConditionsWellKnown 4311 }
lgpCondId4313PasswordChanged OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Password changed."
::= { lgpFlexConditionsWellKnown 4313 }
lgpCondId4314PowerSupplyFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Power supply failure."
::= { lgpFlexConditionsWellKnown 4314 }
lgpCondId4315OnGenerator OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A generator is supplying the power to the system."
::= { lgpFlexConditionsWellKnown 4315 }
lgpCondId4316AutoRestartInProgress OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Auto restart is in progress."
::= { lgpFlexConditionsWellKnown 4316 }
lgpCondId4317AutoRestartInhibitedExt OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Auto restart inhibited due to an external signal."
::= { lgpFlexConditionsWellKnown 4317 }
lgpCondId4320InitiatedTransfertoBypass OBJECT-IDENTITY
STATUS current
DESCRIPTION
"User initiated manual transfer to bypass."
::= { lgpFlexConditionsWellKnown 4320 }
lgpCondId4321InitiatedTransfertoInverter OBJECT-IDENTITY
STATUS current
DESCRIPTION
"User initiated manual transfer to inverter."
::= { lgpFlexConditionsWellKnown 4321 }
lgpCondId4322BatteryTestPassed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery test passed."
::= { lgpFlexConditionsWellKnown 4322 }
lgpCondId4323BatteryTestFailed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery test failed."
::= { lgpFlexConditionsWellKnown 4323 }
lgpCondId4324BatteryTestManuallyStopped OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The battery test was manually stopped prior to completion."
::= { lgpFlexConditionsWellKnown 4324 }
lgpCondId4325BackfeedBreakerOpen OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The backfeed breaker is in the open position."
::= { lgpFlexConditionsWellKnown 4325 }
lgpCondId4341VelocityAuthenticationFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Notification of a message rejected by Velocity due to an
authentication failure."
::= { lgpFlexConditionsWellKnown 4341 }
lgpCondId4360ReceptacleOverCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a receptacle over current condition."
::= { lgpFlexConditionsWellKnown 4360 }
lgpCondId4361ReceptacleUnderCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a receptacle under current condition."
::= { lgpFlexConditionsWellKnown 4361 }
lgpCondId4382SystemInputCurrentImbalance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"System Input Currents are Imbalanced."
::= { lgpFlexConditionsWellKnown 4382 }
lgpCondId4383BypassStaticSwitchOffExtrnl OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Bypass static switch is off due to the state of an external signal."
::= { lgpFlexConditionsWellKnown 4383 }
lgpCondId4384BatteryEoDDisconnect OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Battery disconnect due to end-of-discharge."
::= { lgpFlexConditionsWellKnown 4384 }
lgpCondId4389SystemOutputFault OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A fault has been detected in the system output."
::= { lgpFlexConditionsWellKnown 4389 }
lgpCondId4390InverterOffExternal OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Inverter is off (operation is inhibited) due to external signal
state."
::= { lgpFlexConditionsWellKnown 4390 }
lgpCondId4391InverterStaticSwitchSCRShort OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a short across one or more inverter static
switch Silicon Controlled Rectifiers (SCR)."
::= { lgpFlexConditionsWellKnown 4391 }
lgpCondId4392TemperatureSensorError OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more temperature sensors cannot provide a valid temperature
reading (i.e. sensor failure, wiring failure, sense circuit
failure, etc)."
::= { lgpFlexConditionsWellKnown 4392 }
lgpCondId4406BranchOverCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition."
::= { lgpFlexConditionsWellKnown 4406 }
lgpCondId4407BranchUnderCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition."
::= { lgpFlexConditionsWellKnown 4407 }
lgpCondId4416BranchOverCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition."
::= { lgpFlexConditionsWellKnown 4416 }
lgpCondId4417BranchUnderCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition."
::= { lgpFlexConditionsWellKnown 4417 }
lgpCondId4421BranchFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more conditions indicate a Branch Receptacle Module failure
, service is required."
::= { lgpFlexConditionsWellKnown 4421 }
lgpCondId4436PDUOverCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition."
::= { lgpFlexConditionsWellKnown 4436 }
lgpCondId4437PDUUnderCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition."
::= { lgpFlexConditionsWellKnown 4437 }
lgpCondId4438SystemInternalTemperatureRise OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Excessive temperature rise internal to the system (i.e. difference
between the output versus input temperature is too large)."
::= { lgpFlexConditionsWellKnown 4438 }
lgpCondId4439AutomaticRestartFailed OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Automatic restart failed."
::= { lgpFlexConditionsWellKnown 4439 }
lgpCondId4440FuseFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"A summary event indicating one or more fuse failures."
::= { lgpFlexConditionsWellKnown 4440 }
lgpCondId4441SystemControllerError OBJECT-IDENTITY
STATUS current
DESCRIPTION
"System controller internal error."
::= { lgpFlexConditionsWellKnown 4441 }
lgpCondId4442SystemBreakersOpenFailure OBJECT-IDENTITY
STATUS current
DESCRIPTION
"One or more breakers in the system failed to open."
::= { lgpFlexConditionsWellKnown 4442 }
lgpCondId4448PDUOverCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition."
::= { lgpFlexConditionsWellKnown 4448 }
lgpCondId4449PDUUnderCurrent OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition."
::= { lgpFlexConditionsWellKnown 4449 }
lgpCondId4468PDUOverCurrentL1 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition on line 1."
::= { lgpFlexConditionsWellKnown 4468 }
lgpCondId4469PDUOverCurrentL2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition on line 2."
::= { lgpFlexConditionsWellKnown 4469 }
lgpCondId4470PDUOverCurrentL3 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module over current condition on line 3."
::= { lgpFlexConditionsWellKnown 4470 }
lgpCondId4471PDUUnderCurrentL1 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition on line 1."
::= { lgpFlexConditionsWellKnown 4471 }
lgpCondId4472PDUUnderCurrentL2 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition on line 2."
::= { lgpFlexConditionsWellKnown 4472 }
lgpCondId4473PDUUnderCurrentL3 OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The system has detected a module under current condition on line 3."
::= { lgpFlexConditionsWellKnown 4473 }
lgpCondId4492ReceptaclePowerStateOn OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The receptacle power state changed to the ON state."
::= { lgpFlexConditionsWellKnown 4492 }
lgpCondId4493ReceptaclePowerStateOff OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The receptacle power state changed to the OFF state."
::= { lgpFlexConditionsWellKnown 4493 }
lgpCondId4494BranchBreakerOpen OBJECT-IDENTITY
STATUS current
DESCRIPTION
"The Branch Receptacle Module's input breaker is open."
::= { lgpFlexConditionsWellKnown 4494 }
lgpCondId4495DeviceConfigurationChange OBJECT-IDENTITY
STATUS current
DESCRIPTION