-
Notifications
You must be signed in to change notification settings - Fork 0
/
Xups.mib
2055 lines (1814 loc) · 70.6 KB
/
Xups.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
XUPS-MIB DEFINITIONS ::= BEGIN
-- File XUPS.MIB
-- Defines XUPS-MIB (Powerware's proprietary PowerMIB)
-- XUPS-MIB { iso org(3) dod(6) internet(1) private(4)
-- enterprises(1) powerware(534) }
-- Title XUPS MIB - POWERMIB
-- Date January 19, 1993
-- Copyright 1992-98 by Exide Electronics
-- Copyright 1999+ by Powerware Corporation
-- May not be used without permission from Powerware Corporation
-- Revised February 25, 1993
-- Revised June 21, 1993
-- Revised (Variable types of ) August 5, 1993
-- Revised August 16, 1993 - added units of measure
-- Added Event History to Alarm Group and get/set time/date.
-- Cleanup for final release. 9/3/93
-- Release Version 0.91 9/17/93
-- Release Version 1.00 11/16/93
-- Changes for Release Version 2.00 9/7/94
-- 1) Renamed UPS-MIB to XUPS-MIB and all names from upsVariable
-- to xupsVariable to avoid conflicts with RFC 1628 Standard UPS MIB names
-- 2) Renamed all traps from upsName to xupstName to avoid conflicts with
-- similar alarm names
-- 3) Added well known alarms and traps:
-- BreakerOpen, AlarmEntryAdded, AlarmEntryRemoved
-- 4) Deprecated xupsControlOutputOnTrapDelay
-- 5) Added xupsTrapControl group
-- 6) enumerated the value startTest for xupsTestBattery
-- 7) Defined oid values to use for sysObjectId
-- Changes for Release Version 2.10 11/1/94
-- 1) Corrected type of xupsAlarms, xupsAlarmNumEvents (Gauge)
-- 2) Defined three trap sources, which differ in their descriptions
-- of trap variables (none, Defined, defined plus Port N Interface vars)
-- 3) Clarified AlarmEvent order and numbering
-- Changes for Release Version 2.11 3/30/95
-- 1) Removed references to version 2.00 MIB files
-- 2) Added range declarations for appropriate objects
-- 3) Added Object IDs for new products
-- Changes for Release Version 2.20 8/29/96
-- 1) Corrected upper Integer range from 2147483648 to 2147483647
-- 2) Added xupsEnvironment group and its objects and alarm xupsAmbientTempBad
-- 3) Added xupsBatteryAbmStatus to monitor Advanced Battery Management status
-- 4) Added well-known alarms from RFC 1628 which weren't previously supported:
-- xupsAlarmBatteryBad, xupsOutputOffAsRequested, xupsDiagnosticTestFailed,
-- xupsCommunicationsLost, xupsUpsShutdownPending, xupsAlarmTestInProgress
-- 5) Added Defined and PortN (but not Basic) type traps for above alarms
-- 6) Added xupsControlToBypassDelay to allow Go To Bypass command.
-- Changes for Release Version 2.21 5/19/99
-- Renaming from Exide Electronics to Powerware Corporation
-- Changes for Release Version 3.00 3-Apr-02 Connectivity Systems Group,
-- Power Systems Division, Invensys
-- 1) Rolled in Receptacle Control extensions from separate file
-- 2) Added Topology group objects
-- 3) Added new var xupsOutputSource, which extends upsOutputSource
-- 4) Added new var xupsAlarmEventMsg to replace the other deprecated xAEEntry vars
-- Changes for Release Version 3.01 15-Aug-02 Connectivity Systems Group,
-- Powerware, Power Systems Division, Invensys
-- 1) Added new vars xupsConfigLow- and -HighOutputVoltageLimit.
-- Changes for Release Version 3.02 06-Oct-02 Connectivity Systems Group,
-- Powerware, Power Systems Division, Invensys
-- To support the ConnectUPS Web/SNMP card's ability to monitor an external contact,
-- the following traps were added:
-- 1) Added new trap xupstdContactAlarmActive in xupsTrapDefined
-- 2) Added new trap xupstdContactAlarmInactive in xupsTrapDefined
--
-- These are added to support the ConnectUPS Web/SNMP card's ability to monitor
-- a single contact closure (firmware and custom cable required)
-- Changes for Release Version 3.03 05-Feb-03 Connectivity Systems Group,
-- Powerware, Invensys Energy Systems
-- 1) To support the ability to monitor additional external contacts,
-- the var lists of the xupstdContactActiveNotice and
-- xupstdContactInactiveNotice traps were modified.
-- 2) Added new var xupsInputSource
-- 3) Added new vars xupsLoadShedSecsWithRestart and xupsRecepShedSecsWithRestart to
-- provide guaranteed correct load shedding behavior to the management software.
-- 4) Added vars to the Environmental group: xupsEnvAmbientHumidity,
-- xupsEnvRemoteTemp, and xupsEnvRemoteHumidity.
-- 5) Added xupsEnvNumContacts and the Environmental Contact Sensing Table,
-- xupsContactSenseTable.
-- 6) Updated Tech Support telephone numbers listed below.
-- Changes for Release Version 3.04 30-Apr-03 Connectivity Systems Group,
-- Powerware, Invensys Energy Systems
-- 1) Added new Well-Known Alarm and traps for xupsLossOfRedundancy,
-- xupsAlarmTempBad, xupsAlarmChargerFailed, xupsAlarmFanFailure,
-- xupsAlarmFuseFailure, xupsPowerSwitchBad, xupsModuleFailure,
-- xupsOnAlternatePowerSource, xupsAltPowerNotAvailable, xupsNoticeCondition
-- 2) Added new vars for Min/Max limits for Remote Temp & Humidity
-- 3) Added new W-K Alarms and traps for Min/Max limits for Remote Temp & Humidity
-- Changes for Release Version 3.10 10-Dec-03 Connectivity Systems Group, Powerware
-- 1) Moved the Deprecated trap types ("Basic" and "Port" types)
-- to a separate file, XUPS_Obsolete.MIB
-- 2) Added more support for UPSs with secondary power sources:
-- New objects xupsDualInputStatus and xupsSecondaryInputWatch
-- New alarms xupsOnAlternatePowerSource and xupsAltPowerNotAvailable
-- New traps xupstdOnAlternatePowerSource and xupstdAltPowerNotAvailable
-- 3) Added new objects xupsBatteryLastReplacedDate and xupsConfigInstallDate
-- 4) Enhanced the xupsTest group:
-- Renamed object xupsTestBattery to xupsTestStart
-- Added new xupsTestStart values noTestStarted (2), testSystem (3),
-- testSecondarySource (4), flashLightsTest (5), and cancelTest (6)
-- Added new objects xupsLastGeneralTest and xupsLastGeneralTestResult
-- Added new trap xupstdDiagnosticTestPassed
-- 5) Added support for a Heartbeat status trap with object
-- xupsHeartbeatMinsInterval and trap xupstdHeartbeat
-- Changes for Release Version 3.11 17-Mar-04 Connectivity Systems Group, Powerware
-- 1) Added alarms and traps for RFC1628-like AlarmOutputBad and AlarmAwaitingPower.
-- 2) Inserted one more xupsMaxTrapLevel: minor(4) and changed allTraps from (4) to (5)
-- Changes for Release Version 3.12 13-May-04 Software and Connectivity Products, Powerware
-- 1) Added new enumeration for xupsOutputSource of maintenanceBypass(11)
-- 2) Added new alarm and trap for OnMaintenanceBypass
-- Changes for Release Version 3.13 21-May-04 Software and Connectivity Products, Powerware
-- 1) Added new traps xupstdCommEstablished and xupstdAgentDown.
-- 2) Fixed syntax of xupsTrapMessage and xupsAlarmID for SMIv2 checks by making them read-only.
--
-- Customer Support: contact Tech Support at
--
-- Single-Phase Products: 800-356-5737 (US) or 608-565-2100
--
-- 3-Phase Products: 800-843-9433 (US) or 919-871-1800
--
IMPORTS
enterprises, TimeTicks, Gauge, Counter
FROM RFC1155-SMI
DisplayString, ifIndex, ifDescr
FROM RFC1213-MIB
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
-- Note that .534. was originally assigned to Exide Electronics
-- before it was renamed to Powerware.
powerware OBJECT IDENTIFIER ::= {enterprises 534}
xups OBJECT IDENTIFIER ::= {powerware 1}
xupsIdent OBJECT IDENTIFIER ::= { xups 1 }
xupsBattery OBJECT IDENTIFIER ::= { xups 2 }
xupsInput OBJECT IDENTIFIER ::= { xups 3 }
xupsOutput OBJECT IDENTIFIER ::= { xups 4 }
xupsBypass OBJECT IDENTIFIER ::= { xups 5 }
xupsEnvironment OBJECT IDENTIFIER ::= { xups 6 }
xupsAlarm OBJECT IDENTIFIER ::= { xups 7 }
xupsTest OBJECT IDENTIFIER ::= { xups 8 }
xupsControl OBJECT IDENTIFIER ::= { xups 9 }
xupsConfig OBJECT IDENTIFIER ::= { xups 10 }
xupsTrapControl OBJECT IDENTIFIER ::= { xups 11 }
xupsRecep OBJECT IDENTIFIER ::= { xups 12 }
xupsTopology OBJECT IDENTIFIER ::= { xups 13 }
--
-- The following Object Identifiers are used to distinguish Powerware's
-- SNMP agents:
xupsObjectId OBJECT IDENTIFIER ::= {powerware 2}
powerwareEthernetSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 1}
powerwareNetworkSnmpAdapterEther OBJECT IDENTIFIER ::= {xupsObjectId 2}
powerwareNetworkSnmpAdapterToken OBJECT IDENTIFIER ::= {xupsObjectId 3}
onlinetDaemon OBJECT IDENTIFIER ::= {xupsObjectId 4}
connectUPSAdapterEthernet OBJECT IDENTIFIER ::= {xupsObjectId 5}
powerwareNetworkDigitalIOEther OBJECT IDENTIFIER ::= {xupsObjectId 6}
connectUPSAdapterTokenRing OBJECT IDENTIFIER ::= {xupsObjectId 7}
simpleSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 8}
powerwareEliSnmpAdapter OBJECT IDENTIFIER ::= {xupsObjectId 9}
--
-- xupsIdent group:
--
xupsIdentManufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UPS Manufacturer Name (e.g. Powerware Corporation)."
::= { xupsIdent 1}
xupsIdentModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UPS Model (e.g. Powerware Plus Model 18)."
::= {xupsIdent 2}
xupsIdentSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The firmware revision level(s) of the UPS microcontroller(s)."
::= {xupsIdent 3}
xupsIdentOemCode OBJECT-TYPE
SYNTAX INTEGER (0..255)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A binary code indicating who the UPS was manufactured or labeled for.
0 or 255 indicates Powerware itself."
::= {xupsIdent 4}
--
-- xupsBattery group:
--
xupsBatTimeRemaining OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS seconds
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Battery run time in seconds before UPS turns off due
to low battery."
::= { xupsBattery 1}
xupsBatVoltage OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS Volts DC
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Battery voltage as reported by the UPS meters."
::= {xupsBattery 2}
xupsBatCurrent OBJECT-TYPE
SYNTAX INTEGER (-2147483648..2147483647) -- UNITS Amp DC
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Battery Current as reported by the UPS metering.
Current is positive when discharging, negative
when recharging the battery."
::= {xupsBattery 3}
xupsBatCapacity OBJECT-TYPE
SYNTAX INTEGER (0..100) -- UNITS percent
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Battery percent charge."
::= { xupsBattery 4}
xupsBatteryAbmStatus OBJECT-TYPE
SYNTAX INTEGER {
batteryCharging(1),
batteryDischarging(2),
batteryFloating(3),
batteryResting(4),
unknown(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Gives the status of the Advanced Battery Management;
batteryFloating(3) status means that the charger is temporarily
charging the battery to its float voltage; batteryResting(4) is the
state when the battery is fully charged and none of the other actions
(charging/discharging/floating) is being done."
::= { xupsBattery 5}
xupsBatteryLastReplacedDate OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The date when the Batteries in this UPS were last replaced. Should be
the same as xupsConfigInstallDate initially. Free text format, so the
preferred local date format may be used (MM/DD/YYYY, DD-Mon-YYYY, etc)."
::= { xupsBattery 6}
--
-- xupsInput group:
--
xupsInputFrequency OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS 0.1 Hertz
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The utility line frequency in tenths of Hz."
::= {xupsInput 1}
xupsInputLineBads OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the Input was out of tolerance
in voltage or frequency."
::= {xupsInput 2}
xupsInputNumPhases OBJECT-TYPE
SYNTAX INTEGER (0..6)
ACCESS read-only
STATUS mandatory
::= {xupsInput 3}
xupsInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsInputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The Aggregate Object with number of entries equal to
NumPhases and including the xupsInput group."
::= {xupsInput 4}
xupsInputEntry OBJECT-TYPE
SYNTAX XupsInputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The input table entry containing the current,
voltage, etc."
INDEX { xupsInputPhase }
::= { xupsInputTable 1 }
XupsInputEntry ::= SEQUENCE {
xupsInputPhase
INTEGER,
xupsInputVoltage
INTEGER,
xupsInputCurrent
INTEGER,
xupsInputWatts
INTEGER
}
xupsInputPhase OBJECT-TYPE
SYNTAX INTEGER (0..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of the phase. Serves as index for input table."
::= {xupsInputEntry 1}
xupsInputVoltage OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS RMS Volts
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured input voltage from the UPS meters in volts."
::= {xupsInputEntry 2}
xupsInputCurrent OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS RMS Amp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured input current from the UPS meters in amps."
::= {xupsInputEntry 3}
xupsInputWatts OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS Watts
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured input real power in watts."
::= {xupsInputEntry 4}
xupsInputSource OBJECT-TYPE
SYNTAX INTEGER {
other(1),
none(2), -- For example, Utility failure
primaryUtility(3), -- Normal utility feed to the UPS
bypassFeed(4), -- Bypass utility, separate from primaryUtility
secondaryUtility(5), -- Secondary utility feed (on a dual AC input UPS)
generator(6), -- Power provided by a generator
flywheel(7), -- Power provided by a flywheel (not necessarily AC)
fuelcell(8) -- Power provided by fuel cell(s) (not necessarily AC)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The present external source of input power. The enumeration
none(2) indicates that there is no external source of
power, for example, the UPS is On Battery (an internal source).
The bypassFeed(4) can only be used when the Bypass source is known
to be a separate utility feed than the primaryUtility(3)."
::= { xupsInput 5 }
xupsDualInputStatus OBJECT-TYPE
SYNTAX INTEGER {
bothSourcesBad(1), -- Both primary and secondary power sources are unavailable
primarySourceGood(2), -- Only the Normal (utility) feed to the UPS is available
secondarySourceGood(3), -- Only the Secondary power feed is available
bothSourcesGood(4) -- Both primary and secondary power sources are available
}
ACCESS read-only
STATUS mandatory -- For dual-feed UPSs
DESCRIPTION
"The present status of the sources of input power in a dual source UPS.
The enumeration primarySourceGood(2) indicates that the primary source
of power is present and within 'normal' ranges for voltage and
frequency, but the secondary source is either not present or not in an
acceptable range.
The enumeration bothSourcesGood(4) indicates that both sources are present
and within their respective 'normal' ranges;
bothSourcesBad(1) indicates that neither source is present, or, if present,
is not within acceptable ranges.
This object will only be implemented for UPSs with two sources of input
power, e.g., redundant AC feeds or a separate Bypass or Generator source.
The secondary source will not be an AC power source in all cases."
::= { xupsInput 6 }
xupsSecondaryInputWatch OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
ACCESS read-write
STATUS mandatory -- For dual-feed UPSs
DESCRIPTION
"This object enables(2) or disables(1) the alarms and traps related to the
availability and use of the secondary input of a dual-input UPS
(i.e., OnAlternatePowerSource and AltPowerNotAvailable).
To avoid nuisance alarms and traps, this object should be set to
disabled(1) when the UPS is not wired to a secondary source of power.
This object will only be implemented for UPSs with two sources of input
power, i.e., redundant AC feeds or a separate Bypass or Generator source."
::= { xupsInput 7 }
--
-- xupsOutput group:
--
xupsOutputLoad OBJECT-TYPE
SYNTAX INTEGER (0..200)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UPS output load in percent of rated capacity."
::= {xupsOutput 1}
xupsOutputFrequency OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS 0.1 Hertz
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured UPS output frequency in tenths of Hz."
::= {xupsOutput 2}
xupsOutputNumPhases OBJECT-TYPE
SYNTAX INTEGER (0..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of metered output phases, serves as the table
index."
::= {xupsOutput 3}
xupsOutputTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsOutputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Aggregate Object with number of entries equal to NumPhases
and including the xupsOutput group."
::= {xupsOutput 4}
xupsOutputEntry OBJECT-TYPE
SYNTAX XupsOutputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Output Table Entry containing voltage, current, etc."
INDEX { xupsOutputPhase }
::= {xupsOutputTable 1}
XupsOutputEntry ::= SEQUENCE {
xupsOutputPhase
INTEGER,
xupsOutputVoltage
INTEGER,
xupsOutputCurrent
INTEGER,
xupsOutputWatts
INTEGER
}
xupsOutputPhase OBJECT-TYPE
SYNTAX INTEGER (0..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number {1..3} of the output phase."
::= {xupsOutputEntry 1}
xupsOutputVoltage OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS RMS Volts
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured output voltage from the UPS metering in volts."
::= {xupsOutputEntry 2}
xupsOutputCurrent OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS RMS Amp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured UPS output current in amps."
::= {xupsOutputEntry 3}
xupsOutputWatts OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS Watts
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured real output power in watts."
::= {xupsOutputEntry 4}
xupsOutputSource OBJECT-TYPE
SYNTAX INTEGER {
other(1),
none(2),
normal(3), -- normal, single UPS module output
bypass(4),
battery(5),
booster(6), -- Single or Double Boost, line-interactive UPSs only
reducer(7), -- Buck, line-interactive UPSs only
parallelCapacity(8), -- normal enhanced by Parallel for Capacity operation
parallelRedundant(9), -- normal enhanced by Redundant Parallel operation
highEfficiencyMode(10), -- normal enhanced by High Efficiency mode
maintenanceBypass(11) -- On Maintenance/Manual Bypass mode
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The present source of output power. The enumeration
none(2) indicates that there is no source of output
power (and therefore no output power), for example,
the system has opened the output breaker."
::= { xupsOutput 5 }
--
-- xupsBypass group:
--
xupsBypassFrequency OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS 0.1 Hertz
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass frequency in tenths of Hz."
::= {xupsBypass 1}
xupsBypassNumPhases OBJECT-TYPE
SYNTAX INTEGER (0..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of lines in the UPS bypass table."
::= {xupsBypass 2}
xupsBypassTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsBypassEntry
ACCESS not-accessible
STATUS mandatory
::= {xupsBypass 3}
xupsBypassEntry OBJECT-TYPE
SYNTAX XupsBypassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Entry in the XUPS bypass table."
INDEX { xupsBypassPhase }
::= {xupsBypassTable 1}
XupsBypassEntry ::= SEQUENCE {
xupsBypassPhase
INTEGER,
xupsBypassVoltage
INTEGER
}
xupsBypassPhase OBJECT-TYPE
SYNTAX INTEGER (0..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Bypass Phase, index for the table."
::= {xupsBypassEntry 1}
xupsBypassVoltage OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS RMS Volts
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured UPS bypass voltage in volts."
::= {xupsBypassEntry 2}
--
-- xupsEnvironment group:
--
xupsEnvAmbientTemp OBJECT-TYPE
SYNTAX INTEGER (-100..200) -- UNITS Degrees Centigrade
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The reading of the ambient temperature in the vicinity of the
UPS or SNMP agent."
::= { xupsEnvironment 1 }
xupsEnvAmbientLowerLimit OBJECT-TYPE
SYNTAX INTEGER (-100..200) -- UNITS Degrees Centigrade
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Lower Limit of the ambient temperature; if xupsEnvAmbientTemp
falls below this value, the xupsAmbientTempBad alarm will occur."
::= { xupsEnvironment 2 }
xupsEnvAmbientUpperLimit OBJECT-TYPE
SYNTAX INTEGER (-100..200) -- UNITS Degrees Centigrade
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Upper Limit of the ambient temperature; if xupsEnvAmbientTemp
rises above this value, the xupsAmbientTempBad alarm will occur.
This value should be greater than xupsEnvAmbientLowerLimit."
::= { xupsEnvironment 3 }
xupsEnvAmbientHumidity OBJECT-TYPE
SYNTAX INTEGER (0..100) -- UNITS %
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The reading of the ambient humidity in the vicinity of the
UPS or SNMP agent."
::= { xupsEnvironment 4 }
xupsEnvRemoteTemp OBJECT-TYPE
SYNTAX INTEGER (-100..200) -- UNITS Degrees Centigrade
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The reading of a remote temperature sensor connected to the
UPS or SNMP agent."
::= { xupsEnvironment 5 }
xupsEnvRemoteHumidity OBJECT-TYPE
SYNTAX INTEGER (0..100) -- UNITS %
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The reading of a remote humidity sensor connected to the
UPS or SNMP agent."
::= { xupsEnvironment 6 }
--
-- The Environmental Contact Sensing Table
-- Contains the table for monitoring all contacts (digital
-- inputs).
--
xupsEnvNumContacts OBJECT-TYPE
SYNTAX INTEGER (1..1024)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Contacts in the xupsContactSenseTable.
This object indicates the number of rows in the
xupsContactSenseTable."
::= { xupsEnvironment 7 }
xupsContactSenseTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsContactsTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of Contact Sensing table entries.
The number of entries is given by the value of
xupsEnvNumContacts."
::= { xupsEnvironment 8 }
xupsContactsTableEntry OBJECT-TYPE
SYNTAX XupsContactsTableEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry containing information applicable
to a particular Contact input."
INDEX { xupsContactIndex }
::= { xupsContactSenseTable 1 }
XupsContactsTableEntry ::=
SEQUENCE {
xupsContactIndex
INTEGER,
xupsContactType
INTEGER,
xupsContactState
INTEGER,
xupsContactDescr
DisplayString
}
xupsContactIndex OBJECT-TYPE
SYNTAX INTEGER (1..1024)
ACCESS read-only -- actually not-accessible
STATUS mandatory
DESCRIPTION
"The Contact identifier; identical to the Contact Number.
This object is not-accessible to MIB browsers, but had to be changed to
read-only to satisfy SMIv2 syntax checkers since it is included in traps."
::= { xupsContactsTableEntry 1 }
xupsContactType OBJECT-TYPE
SYNTAX INTEGER {
normallyOpen(1), -- or Input Normally High
normallyClosed(2), -- or Input Normally Low
anyChange(3), -- No normal Open/Closed state
notUsed(4) -- Contact not in service
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The normal state for this contact. The 'other'
state is the Active state for generating the xupstdContactActiveNotice
trap. If anyChange(3) is selected, then this trap is sent
any time the contact changes to either Open or Closed.
No traps are sent if the Contact is set to notUsed(4).
In many cases, the configuration for Contacts may be done by other
means, so this object may be read-only."
::= { xupsContactsTableEntry 2 }
xupsContactState OBJECT-TYPE
SYNTAX INTEGER {
open(1),
closed(2),
openWithNotice(3),
closedWithNotice(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current state of the Contact input;
the value is based on the open/closed input state
and the setting for xupsContactType.
When entering the openWithNotice(3) and closedWithNotice(4)
states, no entries added to the xupsAlarmTable, but
the xupstdContactActiveNotice trap is sent."
::= { xupsContactsTableEntry 3 }
xupsContactDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A label identifying the Contact. This object should be
set by the administrator."
::= { xupsContactsTableEntry 4 }
xupsEnvRemoteTempLowerLimit OBJECT-TYPE
SYNTAX INTEGER (-100..200) -- UNITS Degrees Centigrade
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Lower Limit of the remote temperature; if xupsEnvRemoteTemp
falls below this value, the xupsRemoteTempBad alarm will occur."
::= { xupsEnvironment 9 }
xupsEnvRemoteTempUpperLimit OBJECT-TYPE
SYNTAX INTEGER (-100..200) -- UNITS Degrees Centigrade
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Upper Limit of the remote temperature; if xupsEnvRemoteTemp
rises above this value, the xupsRemoteTempBad alarm will occur.
This value should be greater than xupsEnvRemoteTempLowerLimit."
::= { xupsEnvironment 10 }
xupsEnvRemoteHumidityLowerLimit OBJECT-TYPE
SYNTAX INTEGER (0..100) -- UNITS %
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Lower Limit of the remote humidity reading; if xupsEnvRemoteHumidity
falls below this value, the xupsRemoteHumidityBad alarm will occur."
::= { xupsEnvironment 11 }
xupsEnvRemoteHumidityUpperLimit OBJECT-TYPE
SYNTAX INTEGER (0..100) -- UNITS %
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Upper Limit of the remote humidity reading; if xupsEnvRemoteHumidity
rises above this value, the xupsRemoteHumidityBad alarm will occur.
This value should be greater than xupsEnvRemoteHumidityLowerLimit."
::= { xupsEnvironment 12 }
--
-- xupsAlarm group:
--
xupsAlarms OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current number of alarm conditions."
::= {xupsAlarm 1}
xupsAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsAlarmEntry
ACCESS not-accessible
STATUS mandatory
::= {xupsAlarm 2}
xupsAlarmEntry OBJECT-TYPE
SYNTAX XupsAlarmEntry
ACCESS not-accessible
STATUS mandatory
INDEX { xupsAlarmID }
::= {xupsAlarmTable 1}
XupsAlarmEntry ::= SEQUENCE {
xupsAlarmID
INTEGER,
xupsAlarmDescr
OBJECT IDENTIFIER,
xupsAlarmTime
TimeTicks
}
xupsAlarmID OBJECT-TYPE
SYNTAX INTEGER (1..2147483647)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique identifier for an alarm condition."
::= {xupsAlarmEntry 1}
xupsAlarmDescr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A reference to an alarm description object. The object
referenced should not be accessible, but rather be used to
provide a unique description of the alarm condition."
::= {xupsAlarmEntry 2}
xupsAlarmTime OBJECT-TYPE
SYNTAX TimeTicks
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The value of the MIB-II variable sysUpTime when the alarm
condition occurred."
::= {xupsAlarmEntry 3}
--
-- Well known alarm conditions.
--
xupsOnBattery OBJECT IDENTIFIER ::= {xupsAlarm 3}
xupsLowBattery OBJECT IDENTIFIER ::= {xupsAlarm 4}
xupsUtilityPowerRestored OBJECT IDENTIFIER ::= {xupsAlarm 5}
xupsReturnFromLowBattery OBJECT IDENTIFIER ::= {xupsAlarm 6}
xupsOutputOverload OBJECT IDENTIFIER ::= {xupsAlarm 7}
xupsInternalFailure OBJECT IDENTIFIER ::= {xupsAlarm 8}
xupsBatteryDischarged OBJECT IDENTIFIER ::= {xupsAlarm 9}
xupsInverterFailure OBJECT IDENTIFIER ::= {xupsAlarm 10}
xupsOnBypass OBJECT IDENTIFIER ::= {xupsAlarm 11}
xupsBypassNotAvailable OBJECT IDENTIFIER ::= {xupsAlarm 12}
xupsOutputOff OBJECT IDENTIFIER ::= {xupsAlarm 13}
xupsInputFailure OBJECT IDENTIFIER ::= {xupsAlarm 14}
xupsBuildingAlarm OBJECT IDENTIFIER ::= {xupsAlarm 15}
xupsShutdownImminent OBJECT IDENTIFIER ::= {xupsAlarm 16}
xupsOnInverter OBJECT IDENTIFIER ::= {xupsAlarm 17}
xupsAlarmNumEvents OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of entries in the UPS event history queue."
::= { xupsAlarm 18 }
xupsAlarmEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsAlarmEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A table of the UPS internal event history queue."
::= { xupsAlarm 19 }
xupsAlarmEventEntry OBJECT-TYPE
SYNTAX XupsAlarmEventEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"One of the entries in the UPS event history queue."
INDEX { xupsAlarmEventID }
::= { xupsAlarmEventTable 1 }
-- The first 4 vars in the xAEEntry have been deprecated, since they resulted in
-- a flood of difficult to interpret data. They have been replaced by the single
-- entry, xupsAlarmEventMsg, which gives a human-readable description of the event.
XupsAlarmEventEntry ::= SEQUENCE {
xupsAlarmEventID
INTEGER,
xupsAlarmEventDateAndTime
DisplayString,
xupsAlarmEventKind
INTEGER,
xupsAlarmEventDescr
INTEGER,
xupsAlarmEventMsg
DisplayString
}
xupsAlarmEventID OBJECT-TYPE
SYNTAX INTEGER (1..400)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A unique number that reflects the order in which the event
occurred. The oldest event in the queue will be number 1.
Subsequent events will be numbered 2, 3, 4, etc."
::= { xupsAlarmEventEntry 1 }
xupsAlarmEventDateAndTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22))
ACCESS read-only
STATUS deprecated
DESCRIPTION
"The time and date that an event occurred as recorded in the UPS
internal event queue. This string will reflect the time and
date as set in the UPS itself and will not be referenced to
sysUpTime. The format is MM/DD/YYYY:HH:MM:SS. Time is 24 hour standard."
::= { xupsAlarmEventEntry 2 }
xupsAlarmEventKind OBJECT-TYPE
SYNTAX INTEGER {
occurred (1),
cleared (2),
unknown (3)
}
ACCESS read-only
STATUS deprecated
DESCRIPTION
"Enumerated value that tells whether the event is an
occurrence of an alarm condition or a clearing of an
alarm condition."
::= { xupsAlarmEventEntry 3 }
xupsAlarmEventDescr OBJECT-TYPE
SYNTAX INTEGER (0..2147483647)
ACCESS read-only
STATUS deprecated
DESCRIPTION
"A description of the event stored in the UPS event queue.
This description will be a sixteen bit integer value
representing one of the defined alarms in the Powerware Binary
Computer Mode communication specification; for example,
a value of 0 represents the 'Inverter AC Over Voltage'
alarm (byte 1, bit 0 in the BCM Alarm Map)."
::= { xupsAlarmEventEntry 4 }
xupsAlarmEventMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text string describing each entry in the Event Log. The format of this
text message is free (not fixed) for the operator to read; good contents
would be a time & date stamp, the event type, and a description of the event."