-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathLIEBERT_GP_PDU.MIB
3657 lines (3321 loc) · 142 KB
/
LIEBERT_GP_PDU.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-PDU-MIB DEFINITIONS ::= BEGIN
IMPORTS
DisplayString
FROM SNMPv2-TC
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
Integer32,
Unsigned32
FROM SNMPv2-SMI
lgpPdu,
liebertPduModuleReg
FROM LIEBERT-GP-REGISTRATION-MIB
;
-- =============================================================================
-- Module Identification and Registration
-- =============================================================================
liebertGlobalProductsPduModule MODULE-IDENTITY
LAST-UPDATED "200807020000Z"
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: Keith Sarbaugh"
DESCRIPTION
"The MIB module used to register Liebert POWER related SNMP OIDs.
Copyright 2008-2008 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 "200807020000Z"
DESCRIPTION
"Initial Version"
::= { liebertPduModuleReg 1 }
-- =============================================================================
-- lgpPdu - Liebert Power Distribution Registrations
-- =============================================================================
-- -----------------------------------------------------------------------------
-- PDU Global Data and Control Information
-- -----------------------------------------------------------------------------
lgpPduGlobalData OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains data and control associated with PDU's controlled
by this agent. Data in this sub-tree will affect the behavior of all
PDU's controlled by this agent."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below."
::= { lgpPdu 5 }
lgpPduEntrySWOverTemperatureProtectionConfig OBJECT-TYPE
SYNTAX INTEGER
{
local(0),
array(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This configures the scope of behavior for the PDU Software Over
Temperature Protection feature.
See lgpPduRcpEntrySwOverTemperatureProtection to enable this feature
and get further information about what actions will be performed.
local (0)
Only receptacles on the PDU with the alarming temperature sensor
will be affected.
array (1)
All receptacles in the PDU array will be affected, regardless of
which PDU the alarming temperature sensor is connected to.
"
::= { lgpPduGlobalData 5 }
lgpPduEntrySWOverTemperatureProtectionDelay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This sets the delay for the PDU Software Over Temperature Protection
feature. This value determines the amount of time to delay, after the
high temperature alarm becomes active, before taking action on the
enabled receptacles. If the high temperature alarm becomes inactive
before the expiration of the delay time, no action will be taken on
the enabled receptacles.
See lgpPduRcpEntrySwOverTemperatureProtection to enable this feature
and get further information about what actions will be performed.
"
::= { lgpPduGlobalData 10 }
-- -----------------------------------------------------------------------------
-- PDU Group Information
-- -----------------------------------------------------------------------------
lgpPduCluster OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains information about PDU clusters. Clusters are
groups of PDU's under a single monitoring or control domain."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below."
::= { lgpPdu 10 }
lgpPduGrpSysStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value represents a bit-field of the various operational
states of the PDUs that are part of the cluster of PDUs
being monitored by this agent.
This value is the bit-wise logical OR of all of the
'lgpPduEntrySysStatus' columns in the 'lgpPduTable'
which represents the combined statuses of all PDUs for this agent.
Note the bit-position is given parenthetically next to the operational
state in the description below. The bit position is big-endian
(least significant digit is the right-most digit). The state is
present in the PDU when the bit is on (value = 1).
The value is a logical OR of all of the following potential states of
each PDU in the cluster.
normalOperation(1)
One or more PDUs in the cluster are operating normally with no
active warnings or alarms.
startUp(2)
One or more PDUs are in the startup state (initializing). Control
and monitoring operations may be inhibited or unavailable
while the PDU is in this state. This state will clear
automatically when the PDU(s) are fully initialized and ready to
accept control and monitoring commands.
unknownNoSupport(4)
The state of one or more PDUs are not known at this time or
there is no support for this piece of information from 1 or more
PDUs in the cluster/group.
normalWithWarning(8)
One or more PDUs are operating normally with one or more active
warnings. Appropriate personnel should investigate the
warning(s) as soon as possible and take appropriate action.
normalWithAlarm(16)
One or more PDUs are operating normally with one or more active
alarms. Appropriate personnel should investigate the alarm(s)
as soon as possible and take appropriate action.
abnormalOperation(32)
One ore more PDUs are operating abnormally. There is a
failure within the system that is unexpected under normal
operating conditions. Appropriate personnel should investigate
the cause as soon as possible. The normal functioning of
the system is likely inhibited.
unknownCommFailure(64)
The state of one or more PDUs are not known due to a communications
failure between the PDU hardware and the communications
module. This state is usually indicative of a hardware
problem.
"
::= { lgpPduCluster 5 }
-- -----------------------------------------------------------------------------
-- Power Distribution (PDU) Table.
-- -----------------------------------------------------------------------------
lgpPduTableCount OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Count"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of PDUs being monitored by this agent. This is the
number of entries in the lgpPduTable."
::= { lgpPdu 19 }
lgpPduTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpPduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of PDU entries.
The table contains zero, one, or many rows, depending upon the number
of PDUs being monitored. The Network Management System (NMS)
cannot create or delete rows in the table. The rows are created by
the agent based upon the number of PDUs being managed.
Each row in the table represents a PDU in the system."
::= { lgpPdu 20 }
lgpPduEntry OBJECT-TYPE
SYNTAX LgpPduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the columns to be populated in the
'lgpPduTable'. Each column represents an attribute of a PDU.
This table is indexed by the PDU identifier that is unique
within the agent.
"
INDEX
{
lgpPduEntryIndex
}
::= { lgpPduTable 1 }
LgpPduEntry ::= SEQUENCE
{
lgpPduEntryIndex Unsigned32,
lgpPduEntryId Unsigned32,
lgpPduEntryUsrLabel DisplayString,
lgpPduEntrySysAssignLabel DisplayString,
lgpPduEntryPositionRelative Unsigned32,
lgpPduEntrySysStatus Unsigned32,
lgpPduEntryUsrTag1 DisplayString,
lgpPduEntryUsrTag2 DisplayString,
lgpPduEntrySerialNumber DisplayString,
lgpPduEntryRbCount Unsigned32,
lgpPduEntrySWOverCurrentProtection INTEGER
}
lgpPduEntryIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index that indicates the row of the 'lgpPduTable'."
::= { lgpPduEntry 1 }
lgpPduEntryId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is an internal index representing a unique identifier for
each PDU represented by this agent. The value is assigned
by the agent."
::= { lgpPduEntry 5 }
lgpPduEntryUsrLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a user assigned label representing the PDU."
::= { lgpPduEntry 10 }
lgpPduEntrySysAssignLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System assigned identifier representing the PDU. The value
is independent of any user assigned label or tag. The exact format
of this label is system dependent and is subject to change,
therefore, it should not be referenced for programmatic use."
::= { lgpPduEntry 15 }
lgpPduEntryPositionRelative OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Count"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a one-based value that indicates the PDU's relative
position within a rack or other enclosing entity."
::= { lgpPduEntry 20 }
lgpPduEntrySysStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This value represents a bit-field of the various operational
states of the PDU. The value is a logical OR of all of the
following potential states of the PDU. Note the bit-position
is given parenthetically next to the operational state in the
description below. The bit position is assumed to be a big-endian
format (least significant digit is the right-most digit). The
state is present in the PDU when the bit is on (value = 1).
normalOperation(1)
The PDU is operating normally with no active warnings or alarms.
startUp(2)
The PDU is in the startup state (initializing). Control
and monitoring operations maybe inhibited or unavailable
while the PDU is in this state. This state will clear
automatically when the PDU(s) are fully initialized and
ready to accept control and monitoring commands.
normalWithWarning(8)
The PDU is operating normally with one or more active
warnings. Appropriate personnel should investigate the
warning(s) as soon as possible and take appropriate action.
normalWithAlarm(16)
The PDU is operating normally with one or more active
alarms. Appropriate personnel should investigate the alarm(s)
as soon as possible and take appropriate action.
abnormalOperation(32)
The PDU is operating abnormally. That is there is some
failure within the system that is unexpected under normal
operating conditions. Appropriate personnel should investigate
the cause as soon as possible. The normal functioning of
the system is likely inhibited.
"
::= { lgpPduEntry 25 }
lgpPduEntryUsrTag1 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a user assigned Tag for the PDU. This value may be
useful for end-user grouping or asset tracking purposes.
The value for this tag does not need to be unique for this
unit or across other units."
::= { lgpPduEntry 35 }
lgpPduEntryUsrTag2 OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is a user assigned Tag for the PDU. This value may be
useful for end-user grouping or asset tracking purposes.
The value for this tag does not need to be unique for this
unit or across other units."
::= { lgpPduEntry 40 }
lgpPduEntrySerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System assigned serial number for this PDU. This number is
assigned at time of manufacture, is globally unique with respect
to all PDU units."
::= { lgpPduEntry 45 }
lgpPduEntryRbCount OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Count"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of receptacle branches (Rb) within this PDU."
::= { lgpPduEntry 50 }
lgpPduEntrySWOverCurrentProtection OBJECT-TYPE
SYNTAX INTEGER
{
disabled(0),
enable(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is the PDU Software Over Current Protection feature which will
prevent unused receptacles from turning on when the
'PDU Over Current Warning' or 'PDU Over Current Alarm' threshold
is violated. Such receptacles shall get locked to prevent any user
from switching them ON. Only device-admin shall have the authorization
to unlock such receptacles.
If the feature is enabled, in case of PDU Over Current Warning or Alarm condition,
following action will be taken on the receptacles:
a. Locked & OFF No change
b. Locked & ON - No change
c. UnLocked & OFF Receptacle shall be locked
d. Unlocked & ON If the receptacle is being used (current>0), no change.
If that outlet is being unused(current=0), turn it off and lock it in that position.
No action will be taken if the feature is disabled.
Note: Only applicable to PDU models where receptacle measurement and control is supported.
Not applicable for PDU models that support only branch monitoring.
disabled
This function is disabled.
enable
This function is enabled."
::= { lgpPduEntry 55 }
-- -----------------------------------------------------------------------------
-- PDU Power Source.
-- -----------------------------------------------------------------------------
lgpPduPowerSource OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains information about PDU power sources."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below."
::= { lgpPdu 30 }
lgpPduPsTableCount OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Count"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of power sources in the lgpPduPsTable."
::= { lgpPduPowerSource 19 }
lgpPduPsTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpPduPsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of the PDU's power source(s).
The table contains zero, one, or more rows, depending
upon the number of PDUs being monitored and the number of
power sources installed for each PDU.
The NMS cannot create or delete rows in the table. The rows are
created by the agent based upon the capabilities of the PDUs
being monitored. Each row in the table represents a PDU's
Power Source."
::= { lgpPduPowerSource 20 }
lgpPduPsEntry OBJECT-TYPE
SYNTAX LgpPduPsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the attributes to be populated in the
various columns of the 'lgpPduPsTable' (Power Source Table).
This table is indexed by both the 'lgpPduEntryIndex' which is
the sole index into the 'lgpPduTable' and the 'lgpPduPsEntryIndex'
which is a unique identifier for the Power Source within a
given PDU. Taken together these two indexes uniquely identify
a Power Source within this agent.
"
INDEX
{
lgpPduEntryIndex,
lgpPduPsEntryIndex
}
::= { lgpPduPsTable 1 }
LgpPduPsEntry ::= SEQUENCE
{
lgpPduPsEntryIndex Unsigned32,
lgpPduPsEntryId Unsigned32,
lgpPduPsEntrySysAssignLabel DisplayString,
lgpPduPsEntryModel DisplayString,
lgpPduPsEntryWiringType INTEGER,
lgpPduPsEntryEpInputRated Unsigned32,
lgpPduPsEntryEcInputRated Unsigned32,
lgpPduPsEntryFreqRated Unsigned32,
lgpPduPsEntryEnergyAccum Unsigned32,
lgpPduPsEntrySerialNum DisplayString,
lgpPduPsEntryFirmwareVersion DisplayString,
lgpPduPsEntryPwrTotal Unsigned32,
lgpPduPsEntryEcNeutral Unsigned32,
lgpPduPsEntryEcNeutralThrshldOvrWarn Unsigned32,
lgpPduPsEntryEcNeutralThrshldOvrAlarm Unsigned32,
lgpPduPsEntryUnbalancedLoadThrshldAlarm Unsigned32,
lgpPduPsEntryApTotal Unsigned32,
lgpPduPsEntryPfTotal Integer32,
lgpPduPsEntryEcResidual Unsigned32,
lgpPduPsEntryEcResidualThrshldOvrAlarm Unsigned32
}
lgpPduPsEntryIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a unique identifier for the Power Source within a
given PDU. This is one of two indexes used to indicate the row of
the 'lgpPduTable'."
::= { lgpPduPsEntry 5 }
lgpPduPsEntryId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a unique entry id representing a given PDU power source
for the PDU."
::= { lgpPduPsEntry 10 }
lgpPduPsEntrySysAssignLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"System assigned identifier for this power source. The value
is independent of any user assigned label or tag. The exact format
of this label is system dependent and is subject to change,
therefore, it should not be referenced for programmatic use."
::= { lgpPduPsEntry 15 }
lgpPduPsEntryModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the model name (identifier) of the power supply."
::= { lgpPduPsEntry 20 }
lgpPduPsEntryWiringType OBJECT-TYPE
SYNTAX INTEGER
{
not-specified(0),
single-phase-3-wire-L1-N-PE(1),
two-phase-3-wire-L1-L2-PE(2),
three-phase-4-wire-L1-L2-L3-PE(3),
three-phase-5-wire-L1-L2-L3-N-PE(4),
two-phase-4-wire-L1-L2-N-PE(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The PDU's power supply physical wiring type.
not-specified
The type has not been specified/configured. The end_user
must configure this object to specify the physical wiring
type.
single-phase-3-wire-L1-N-PE
Single Phase input with 3 wires (Line 1, Neutral and
Protective Earth).
two-phase-3-wire-L1-L2-PE
Two Phase input with 3 wires (Line 1, Line 2, and
Protective Earth).
three-phase-4-wire-L1-L2-L3-PE
Three Phase input with 4 wires (Line 1, Line 2, Line 3,
and Protective Earth).
three-phase-5-wire-L1-L2-L3-N-PE
Three Phase input with 5 wires (Line 1, Line 2, Line 3,
Neutral and Protective Earth).
two-phase-4-wire-L1-L2-N-PE
Two Phase input with 4 wires (Line 1, Line 2, Neutral,
and Protective Earth)."
::= { lgpPduPsEntry 25 }
lgpPduPsEntryEpInputRated OBJECT-TYPE
SYNTAX Unsigned32
UNITS "VoltRMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rated Input Line Voltage for the power source (i.e. this is the
nominal line input voltage; it is NOT a measured voltage).
The value is defined to be the rated line voltage
(either line-to-neutral or line-to-line depending upon the
power source's type)."
::= { lgpPduPsEntry 30 }
lgpPduPsEntryEcInputRated OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Amp-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the rated input line current for the module
(it is NOT the measured current)."
::= { lgpPduPsEntry 35 }
lgpPduPsEntryFreqRated OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rated input line frequency for this power source
(i.e. This is the expected line frequency; it is NOT a
measured frequency; it is typically 50 Hz or 60 Hz)."
::= { lgpPduPsEntry 40 }
lgpPduPsEntryEnergyAccum OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Kilowatt-Hour"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Total accumulated energy, measured at the power source input, since
the last energy reset. Writing a value of 0 (zero) to this
causes the accumulated energy to be reset. Writing a non-zero
value is invalid and shall result in a write error and the
total energy value remains unchanged.
If the energy has not been reset and has not wrapped,
then this is the total energy since installation.
This value persists across boot events."
::= { lgpPduPsEntry 50 }
lgpPduPsEntrySerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is a unique serial number of the power supply. This number
is assigned to the power supply at the time of manufacture."
::= { lgpPduPsEntry 55 }
lgpPduPsEntryFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the version of the firmware installed on the PDU's
power supply."
::= { lgpPduPsEntry 60 }
lgpPduPsEntryPwrTotal OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Watt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total input power for this power supply. This is the sum of the
power for all phases"
::= { lgpPduPsEntry 65 }
lgpPduPsEntryEcNeutral OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Amp-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The neutral current measured at the PDU's power source."
::= { lgpPduPsEntry 70 }
lgpPduPsEntryEcNeutralThrshldOvrWarn OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold at which an over current warning is activated. If the
measured neutral current (lgpPduPsEntryEcNeutral) is above this
percentage of the full scale rated value
(lgpPduPsEntryEcInputRated), an over neutral current warning
(lgpConditionSource1NeutralOverCurrent) is activated."
::= { lgpPduPsEntry 75 }
lgpPduPsEntryEcNeutralThrshldOvrAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold at which an over current alarm is activated. If the
measured neutral current (lgpPduPsEntryEcNeutral) is above this
percentage of the full scale rated value
(lgpPduPsEntryEcInputRated), an over neutral current alarm
(lgpConditionSource1NeutralOverCurrent) is activated."
::= { lgpPduPsEntry 80 }
lgpPduPsEntryUnbalancedLoadThrshldAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The parameter is for setting the maximum acceptable percentage of
'Unbalanced Load' between any two phases. This setting shall
trigger an alarm when the % load between any two phases varies by
a percentage higher than this configurable value. If this value is
0% then the alarm would be deactivated."
::= { lgpPduPsEntry 85 }
lgpPduPsEntryApTotal OBJECT-TYPE
SYNTAX Unsigned32
UNITS "VoltAmp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total Apparent power for this power supply. This is the sum of the
apparent power for all phases"
::= { lgpPduPsEntry 90 }
lgpPduPsEntryPfTotal OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Power Factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total power factor, which is real power/apparent power for all
phases combined. This is the sum of the real power for all phases
divided by the sum of the apparent power for all phases."
::= { lgpPduPsEntry 95 }
lgpPduPsEntryEcResidual OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.001 Amp-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured residual current."
::= { lgpPduPsEntry 100 }
lgpPduPsEntryEcResidualThrshldOvrAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.001 Amp-AC-RMS"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold at which an over current alarm is activated. If the
measured residual current (lgpPduPsEntryEcResidual) is above this
value, an over current alarm is activated. Setting this to 0mA
disables the alarm."
::= { lgpPduPsEntry 105 }
-- -----------------------------------------------------------------------------
-- PDU - Power Source Line/Phase Table.
-- -----------------------------------------------------------------------------
lgpPduPsLineTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpPduPsLineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of PDU's power source line/phase
measurements. The table contains zero, one, or many rows, depending
upon the number of PDU's Power Sources being monitored.
The NMS cannot create or delete rows in the table.
The rows are created by the agent based upon the capabilities of the
managed PDU's power supply(s). Each row in the table represents a
particular phase/line measurement of a power supply for a
given PDU."
::= { lgpPduPowerSource 40 }
lgpPduPsLineEntry OBJECT-TYPE
SYNTAX LgpPduPsLineEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the attributes to be populated in the
various columns of the 'lgpPduPsLineTable'.
The table is index by three indexes which taken together
uniquely identify line/phase information for a given power source
within a PDU. The 'lgpPduEntryIndex' is an index into the
'lgpPduTable'. This identifies the PDU that the power source
is on. The 'lgpPduPsEntryIndex' is an index that together with
the 'lgpPduEntryIndex' uniquely identifies the power source
within the PDU that the row in this table represents. The final
index 'lgpPduPsLineEntryIndex' identifies the particular
line/phase that the measurement applies to within the identified
power source."
INDEX
{
lgpPduEntryIndex,
lgpPduPsEntryIndex,
lgpPduPsLineEntryIndex
}
::= { lgpPduPsLineTable 1 }
LgpPduPsLineEntry ::= SEQUENCE
{
lgpPduPsLineEntryIndex Unsigned32,
lgpPduPsLineEntryId Unsigned32,
lgpPduPsLineEntryLine INTEGER,
lgpPduPsLineEntryEpLNTenths Unsigned32,
lgpPduPsLineEntryEpLN Unsigned32,
lgpPduPsLineEntryEc Unsigned32,
lgpPduPsLineEntryEcHundredths Unsigned32,
lgpPduPsLineEntryEcThrshldUndrAlarm Unsigned32,
lgpPduPsLineEntryEcThrshldOvrWarn Unsigned32,
lgpPduPsLineEntryEcThrshldOvrAlarm Unsigned32,
lgpPduPsLineEntryEcAvailBeforeAlarm Unsigned32,
lgpPduPsLineEntryEcUsedBeforeAlarm Unsigned32,
lgpPduPsLineEntryEpLL Unsigned32,
lgpPduPsLineEntryEpLLTenths Unsigned32,
lgpPduPsLineEntryEcAvailBeforeAlarmHundredths Unsigned32,
lgpPduPsLineEntryPwrLN Unsigned32,
lgpPduPsLineEntryPwrLL Unsigned32,
lgpPduPsLineEntryApLN Unsigned32,
lgpPduPsLineEntryApLL Unsigned32,
lgpPduPsLineEntryPfLN Integer32,
lgpPduPsLineEntryPfLL Integer32
}
lgpPduPsLineEntryIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index that indicates the line/phase of the measurements
in the given row of the 'lgpPduPsLineTable'."
::= { lgpPduPsLineEntry 5 }
lgpPduPsLineEntryId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique identifier (within a PDU) for the PDU's power source.
The object may not be available in non-modular systems."
::= { lgpPduPsLineEntry 10 }
lgpPduPsLineEntryLine OBJECT-TYPE
SYNTAX INTEGER
{
phase1(1),
phase2(2),
phase3(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The line number (phase) that the measurement represents for all
measurements in a given row of the table. Note that this always
matches the lgpPduPsLineEntryIndex of the same row in the table.
The line/phases are as follows:
Line# Description
----- ---------------------------------------------------
1 Line 1-N (A) for Line-to-Neutral measurements
2 Line 2-N (B) for Line-to-Neutral measurements
3 Line 3-N (C) for Line-to-Neutral measurements
1 Line 1-2 (A-B) for Line-to-Line measurements
2 Line 2-3 (B-C) for Line-to-Line measurements
3 Line 3-1 (C-A) for Line-to-Line measurements
"
::= { lgpPduPsLineEntry 15 }
lgpPduPsLineEntryEpLNTenths OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Volts-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alternating Current RMS Line to Neutral Electrical Potential
measurement.
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 19 }
lgpPduPsLineEntryEpLN OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Volts-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alternating Current RMS Line to Neutral Electrical Potential
measurement.
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 20 }
lgpPduPsLineEntryEc OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Amps-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total input line-to-neutral electrical current.
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 21 }
lgpPduPsLineEntryEcHundredths OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.01 Amps-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total input line-to-neutral electrical current.
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 22 }
lgpPduPsLineEntryEcThrshldUndrAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold at which an under current alarm is activated. If
the measured current (lgpPduPsLineEntryEc) is equal to or below
this percentage of the full scale rated value
(lgpPduPsEntryEcInputRated), an under current alarm
is activated."
::= { lgpPduPsLineEntry 35 }
lgpPduPsLineEntryEcThrshldOvrWarn OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold at which an over current warning is activated. If
the measured current (lgpPduPsLineEntryEc) is equal to or over
this percentage of the full scale rated value
(lgpPduPsEntryEcInputRated), an over current warning
is activated."
::= { lgpPduPsLineEntry 36 }
lgpPduPsLineEntryEcThrshldOvrAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The threshold at which an over current alarm is activated. If
the measured current (lgpPduPsLineEntryEc) is equal to or over
this percentage of the full scale rated value
(lgpPduPsEntryEcInputRated), an over current alarm
is activated."
::= { lgpPduPsLineEntry 37 }
lgpPduPsLineEntryEcAvailBeforeAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Amps-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount that the current/amperage may increase from its present
value before an over current alarm occurs."
::= { lgpPduPsLineEntry 38 }
lgpPduPsLineEntryEcUsedBeforeAlarm OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percent of current utilization relative to the over current
alarm threshold."
::= { lgpPduPsLineEntry 39 }
lgpPduPsLineEntryEpLL OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Volts-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line to Line Electrical Potential.
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 60 }
lgpPduPsLineEntryEpLLTenths OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.1 Volts-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Line to Line Electrical Potential.
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 61 }
lgpPduPsLineEntryEcAvailBeforeAlarmHundredths OBJECT-TYPE
SYNTAX Unsigned32
UNITS "0.01 Amps-AC-RMS"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount that the current/amperage may increase from its present
value before an over current alarm occurs."
::= { lgpPduPsLineEntry 62 }
lgpPduPsLineEntryPwrLN OBJECT-TYPE
SYNTAX Unsigned32
UNITS "Watt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The line-to-neutral measurement of the Real Power (Watts).
The line/phase being measured is indicated by the corresponding
lgpPduPsLineEntryLine value of this row in the table."
::= { lgpPduPsLineEntry 63 }
lgpPduPsLineEntryPwrLL OBJECT-TYPE
SYNTAX Unsigned32