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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
|
--Delta-MIB { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) delta(2254) ups(2) upsv4(4) }
DeltaUPS-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, IpAddress
FROM RFC1155-SMI
DisplayString
FROM RFC1213-MIB
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
delta OBJECT IDENTIFIER ::= { enterprises 2254 }
ups OBJECT IDENTIFIER ::= { delta 2 }
upsv4 OBJECT IDENTIFIER ::= { ups 4 }
dupsIdent OBJECT IDENTIFIER ::= { upsv4 1 }
dupsControl OBJECT IDENTIFIER ::= { upsv4 2 }
dupsConfig OBJECT IDENTIFIER ::= { upsv4 3 }
dupsInput OBJECT IDENTIFIER ::= { upsv4 4 }
dupsOutput OBJECT IDENTIFIER ::= { upsv4 5 }
dupsBypass OBJECT IDENTIFIER ::= { upsv4 6 }
dupsBattery OBJECT IDENTIFIER ::= { upsv4 7 }
dupsTest OBJECT IDENTIFIER ::= { upsv4 8 }
dupsAlarm OBJECT IDENTIFIER ::= { upsv4 9 }
dupsEnvironment OBJECT IDENTIFIER ::= { upsv4 10 }
dupsTraps OBJECT IDENTIFIER ::= { upsv4 20 }
----------------------
-- dups Ident group --
----------------------
dupsIdentManufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..20))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the UPS manufacturer."
::= { dupsIdent 1 }
dupsIdentModel OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UPS Model designation."
::= { dupsIdent 2 }
dupsIdentUPSSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..15))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UPS firmware/software version(s). This variable
may or may not has the same value as
upsIdentAgentSoftwareVersion in some implementations."
::= { dupsIdent 3 }
dupsIdentAgentSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..15))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The UPS agent software version. This variable may or
may not has the same value as
upsIdentUPSSoftwareVersion in some implementations."
::= { dupsIdent 4 }
dupsIdentName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A string identifying the UPS. This object should be
set by the administrator."
::= { dupsIdent 5 }
dupsAttachedDevices OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..63))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A string identifying the devices attached to the
output(s) of the UPS. This object should be set by
the administrator."
::= { dupsIdent 6 }
dupsRatingOutputVA OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the nominal output VA rating."
::= { dupsIdent 7 }
dupsRatingOutputVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the nominal output voltage rating."
::= { dupsIdent 8 }
dupsRatingOutputFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the nominal output frequency rating."
::= { dupsIdent 9 }
dupsRatingInputVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the nominal input voltage rating."
::= { dupsIdent 10 }
dupsRatingInputFrequency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the nominal input frequency rating."
::= { dupsIdent 11 }
dupsRatingBatteryVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the nominal battery voltage rating."
::= { dupsIdent 12 }
dupsLowTransferVoltUpBound OBJECT-TYPE
SYNTAX INTEGER
UNITS "Volt"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum input line voltage upper bound allowed
before the UPS system transfers to battery backup."
::= { dupsIdent 13 }
dupsLowTransferVoltLowBound OBJECT-TYPE
SYNTAX INTEGER
UNITS "Volt"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The minimum input line voltage lower bound allowed
before the UPS system transfers to battery backup."
::= { dupsIdent 14 }
dupsHighTransferVoltUpBound OBJECT-TYPE
SYNTAX INTEGER
UNITS "Volt"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum input line voltage upper bound allowed
before the UPS system transfers to battery backup."
::= { dupsIdent 15 }
dupsHighTransferVoltLowBound OBJECT-TYPE
SYNTAX INTEGER
UNITS "Volt"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The maximum input line voltage lower bound allowed
before the UPS system transfers to battery backup."
::= { dupsIdent 16 }
dupsLowBattTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Minutes, time from low battery to low battery shutdown."
::= { dupsIdent 17 }
dupsOutletRelays OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of outlet relay. If it is 0, the function is not
available for the UPS."
::= { dupsIdent 18 }
dupsType OBJECT-TYPE
SYNTAX INTEGER {
on-line(1),
off-line(2),
line-interactive(3),
3phase(4),
splite-phase(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicate the UPS type."
::= { dupsIdent 19 }
------------------------
-- dups Control group --
------------------------
dupsShutdownType OBJECT-TYPE
SYNTAX INTEGER {
output(1),
system(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"This object determines the nature of the action to be
taken at the time when the countdown of the
upsShutdownAfterDelay and upsRebootWithDuration
objects reaches zero.
Setting this object to output(1) indicates that
shutdown requests should cause only the output of the
UPS to turn off. Setting this object to system(2)
indicates that shutdown requests will cause the entire
UPS system to turn off."
::= { dupsControl 1 }
dupsAutoReboot OBJECT-TYPE
SYNTAX INTEGER {
on(1),
off(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"In backup mode, the UPS may shutdown normally by SDA command,
dry-contact remote shutdown signal or low battery shutdown.
This command is used to determine the unit should restart or
not next time when the power restores"
::= { dupsControl 2 }
dupsShutdownAction OBJECT-TYPE
SYNTAX INTEGER
-- UNITS "Second"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If the value is greater than 0 the UPS performs
shutdown action that defined by ShutdownType after
the seconds. 0, aborted."
::= { dupsControl 3 }
dupsRestartAction OBJECT-TYPE
SYNTAX INTEGER
-- UNITS "Minute"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"UPS will restart after the indicated number of minutes.
-1, aborted."
::= { dupsControl 4 }
dupsSetOutletRelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicate which outlet relay, from 1,2,3... ."
::= { dupsControl 5 }
dupsRelayOffDelay OBJECT-TYPE
SYNTAX INTEGER
-- UNITS "Second"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Turn the relay off after the seconds. The relay was indicated
by SetOutletRelay."
::= { dupsControl 6 }
dupsRelayOnDelay OBJECT-TYPE
SYNTAX INTEGER
-- UNITS "Minute"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Turn the relay on after the seconds. The relay was indicated
by SetOutletRelay."
::= { dupsControl 7 }
--------------------------
-- dups Configure group --
--------------------------
dupsConfigBuzzerAlarm OBJECT-TYPE
SYNTAX INTEGER {
alarm(1),
silence(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"UPS will keep silence but will alarm again when
next power event is occurred"
::= { dupsConfig 1 }
dupsConfigBuzzerState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"If it is disabled then the UPS is always muted."
::= { dupsConfig 2 }
dupsConfigSensitivity OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
reduced(1),
low(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The seneitivity of the UPS to utility line
abnormalities or noises."
::= { dupsConfig 3 }
dupsConfigLowVoltageTransferPoint OBJECT-TYPE
SYNTAX INTEGER
UNITS "Volt"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The minimum input line voltage allowed before the UPS
system transfers to battery backup."
::= { dupsConfig 4 }
dupsConfigHighVoltageTransferPoint OBJECT-TYPE
SYNTAX INTEGER
UNITS "Volt"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The maximum line voltage allowed before the UPS
system transfers to battery backup."
::= { dupsConfig 5 }
dupsConfigShutdownOSDelay OBJECT-TYPE
SYNTAX INTEGER
UNITS "Second"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The operating system shutdown delay time when the
input power fail. -1 will disable this option."
::= { dupsConfig 6 }
dupsConfigUPSBootDelay OBJECT-TYPE
SYNTAX INTEGER
UNITS "Second"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Delay the UPS startup after power restores. The power
quality may not stable when power restores, this
feature let the UPS wait a period of time to startup
the system."
::= { dupsConfig 7 }
dupsConfigExternalBatteryPack OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicate the number of external battery pack."
::= { dupsConfig 8 }
----------------------
-- dups Input group --
----------------------
dupsInputNumLines OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of input lines utilized in this device."
::= { dupsInput 1 }
dupsInputFrequency1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current input line 1 frequency to the UPS
system in 1/10 Hz."
::= { dupsInput 2 }
dupsInputVoltage1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Input line 1 voltage of the UPS system in 1/10 V."
::= { dupsInput 3 }
dupsInputCurrent1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Input line 1 current to the UPS system in 1/10 A."
::= { dupsInput 4 }
dupsInputFrequency2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current input line 2 frequency to the UPS system
in 1/10 Hz."
::= { dupsInput 5 }
dupsInputVoltage2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Input line 2 voltage of the UPS system in 1/10 V."
::= { dupsInput 6 }
dupsInputCurrent2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Input line 2 current to the UPS system in 1/10 A."
::= { dupsInput 7 }
dupsInputFrequency3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current input line 3 frequency to the UPS system
in 1/10 Hz."
::= { dupsInput 8 }
dupsInputVoltage3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Input line 3 voltage of the UPS system in 1/10 V."
::= { dupsInput 9 }
dupsInputCurrent3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Input line 3 current to the UPS system in 1/10 A."
::= { dupsInput 10 }
-----------------------
-- dups Output group --
-----------------------
dupsOutputSource OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
battery(1),
bypass(2),
reducing(3),
boosting(4),
manualBypass(5),
other(6),
none(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The present source of output power. The enumeration
none(7) indicates that there is no source of output
power (and therefore no output power), for example,
the system has opened the output breaker."
::= { dupsOutput 1 }
dupsOutputFrequency OBJECT-TYPE
SYNTAX INTEGER
UNITS "0.1 Hertz"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The present output frequency in 1/10 Hz."
::= { dupsOutput 2 }
dupsOutputNumLines OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of output lines utilized in this device."
::= { dupsOutput 3 }
dupsOutputVoltage1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 1 voltage of the UPS system in 1/10 V."
::= { dupsOutput 4 }
dupsOutputCurrent1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 1 current of the UPS system in 1/10 A."
::= { dupsOutput 5 }
dupsOutputPower1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 1 real power of the UPS system in watts."
::= { dupsOutput 6 }
dupsOutputLoad1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current UPS output line 1 load expressed in percent
of rated capacity."
::= { dupsOutput 7 }
dupsOutputVoltage2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 2 voltage of the UPS system in 1/10 V."
::= { dupsOutput 8 }
dupsOutputCurrent2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 2 current of the UPS system in 1/10 A."
::= { dupsOutput 9 }
dupsOutputPower2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 2 real power of the UPS system in watts."
::= { dupsOutput 10 }
dupsOutputLoad2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current UPS output line 2 load expressed in percent
of rated capacity."
::= { dupsOutput 11 }
dupsOutputVoltage3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 3 voltage of the UPS system in 1/10 V."
::= { dupsOutput 12 }
dupsOutputCurrent3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 3 current of the UPS system in 1/10 A."
::= { dupsOutput 13 }
dupsOutputPower3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Output line 3 real power of the UPS system in watts."
::= { dupsOutput 14 }
dupsOutputLoad3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current UPS output line 3 load expressed in percent
of rated capacity."
::= { dupsOutput 15 }
-----------------------
-- dups Bypass group --
-----------------------
dupsBypassFrequency OBJECT-TYPE
SYNTAX INTEGER
UNITS "0.1 Hertz"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The present bypass frequency in 1/10 Hz."
::= { dupsBypass 1 }
dupsBypassNumLines OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bypass lines utilized in this device."
::= { dupsBypass 2 }
dupsBypassVoltage1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 1 voltage of the UPS system in 1/10 V."
::= { dupsBypass 3 }
dupsBypassCurrent1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 1 current of the UPS system in 1/10 A."
::= { dupsBypass 4 }
dupsBypassPower1 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 1 real power of the UPS system in watts."
::= { dupsBypass 5 }
dupsBypassVoltage2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 2 voltage of the UPS system in 1/10 V."
::= { dupsBypass 6 }
dupsBypassCurrent2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 2 current of the UPS system in 1/10 A."
::= { dupsBypass 7 }
dupsBypassPower2 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 2 real power of the UPS system in watts."
::= { dupsBypass 8 }
dupsBypassVoltage3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 3 voltage of the UPS system in 1/10 V."
::= { dupsBypass 9 }
dupsBypassCurrent3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 3 current of the UPS system in 1/10 A."
::= { dupsBypass 10 }
dupsBypassPower3 OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The bypass line 3 real power of the UPS system in watts."
::= { dupsBypass 11 }
------------------------
-- dups Battery group --
------------------------
dupsBatteryCondiction OBJECT-TYPE
SYNTAX INTEGER {
good(0),
weak(1),
replace(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The indication of the capacity remaining in the UPS
system's batteries when AC normal."
::= { dupsBattery 1 }
dupsBatteryStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
low(1),
depleted(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The indication of the capacity remaining in the UPS
system's batteries when AC failed. A value of ok
indicates that the remaining run-time is greater than
upsConfigLowBattTime. A value of low indicates
that the remaining battery run-time is less than or
equal to upsConfigLowBattTime. A value of
depleted indicates that the UPS will be unable
to sustain the present load when and if the utility
power is lost (including the possibility that the
utility power is currently absent and the UPS is
unable to sustain the output)."
::= { dupsBattery 2 }
dupsBatteryCharge OBJECT-TYPE
SYNTAX INTEGER {
floating(0),
charging(1),
resting(2),
discharging(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { dupsBattery 3 }
dupsSecondsOnBattery OBJECT-TYPE
SYNTAX INTEGER
UNITS "seconds"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"If the unit is on battery power, the elapsed time
since the UPS last switched to battery power, or the
time since the network management subsystem was last
restarted, whichever is less. Zero shall be returned
if the unit is not on battery power."
::= { dupsBattery 4 }
dupsBatteryEstimatedTime OBJECT-TYPE
SYNTAX INTEGER
UNITS "minutes"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Estimated time from backup to low battery shutdown."
::= { dupsBattery 5 }
dupsBatteryVoltage OBJECT-TYPE
SYNTAX INTEGER
UNITS "0.1 Volt DC"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The magnitude of the present battery voltage
in 1/10 V."
::= { dupsBattery 6 }
dupsBatteryCurrent OBJECT-TYPE
SYNTAX INTEGER
UNITS "0.1 Amp DC"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The present battery current in 1/10 A."
::= { dupsBattery 7 }
dupsBatteryCapacity OBJECT-TYPE
SYNTAX INTEGER (0..100)
UNITS "percent"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An estimate of the battery charge remaining expressed
as a percent of full charge."
::= { dupsBattery 8 }
dupsTemperature OBJECT-TYPE
SYNTAX INTEGER
UNITS "degrees Centigrade"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ambient temperature at or near the UPS Battery
casing."
::= { dupsBattery 9 }
dupsLastReplaceDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last battery replacement date. The format is YYYYMMDD."
::= { dupsBattery 10 }
dupsNextReplaceDate OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..8))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The next battery replacement date. The format is YYYYMMDD."
::= { dupsBattery 11 }
-------------------
-- dups Test group
-------------------
dupsTestType OBJECT-TYPE
SYNTAX INTEGER {
abort(0),
generalTest(1),
batteryTest(2),
testFor10sec(3),
testUntilBattlow(4)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Perform the UPS Test procedure."
::= { dupsTest 1 }
dupsTestResultsSummary OBJECT-TYPE
SYNTAX INTEGER {
noTestsInitiated(0),
donePass(1),
inProgress(2),
generalTestFail(3),
batteryTestFail(4),
deepBatteryTestFail(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The results of the current or last UPS diagnostics
test performed. The values for donePass(1),
generalTestFail(3), and batteryTestFail(4) indicate that the
test completed either successfully, with a warning, or
with an error, respectively.Tests which have not yet
concluded are indicated by inProgress(2). The value
noTestsInitiated(0) indicates that no previous test
results are available."
::= { dupsTest 2 }
dupsTestResultsDetail OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Additional information about upsTestResultsSummary.
If no additional information available, a zero length
string is returned."
::= { dupsTest 3 }
-----------------------
-- dups Alarm group --
-----------------------
dupsAlarmDisconnect OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS disconnect?"
::= { dupsAlarm 1 }
dupsAlarmPowerFail OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the input power fail?"
::= { dupsAlarm 2 }
dupsAlarmBatteryLow OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Are the UPS batteries low?"
::= { dupsAlarm 3 }
dupsAlarmLoadWarning OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS load percent over the load warning value?"
::= { dupsAlarm 4 }
dupsAlarmLoadSeverity OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS load percent over the load severity value?"
::= { dupsAlarm 5 }
dupsAlarmLoadOnBypass OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS load on bypass?"
::= { dupsAlarm 6 }
dupsAlarmUPSFault OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS general fail?"
::= { dupsAlarm 7 }
dupsAlarmBatteryGroundFault OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS battery ground fault?"
::= { dupsAlarm 8 }
dupsAlarmTestInProgress OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS test in progress?"
::= { dupsAlarm 9 }
dupsAlarmBatteryTestFail OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS test fail?"
::= { dupsAlarm 10 }
dupsAlarmFuseFailure OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS fuse failure?"
::= { dupsAlarm 11 }
dupsAlarmOutputOverload OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS output overload?"
::= { dupsAlarm 12 }
dupsAlarmOutputOverCurrent OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS output overcurrent?"
::= { dupsAlarm 13 }
dupsAlarmInverterAbnormal OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS inverter abnormal?"
::= { dupsAlarm 14 }
dupsAlarmRectifierAbnormal OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS rectifier abnormal?"
::= { dupsAlarm 15 }
dupsAlarmReserveAbnormal OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS reserve abnormal?"
::= { dupsAlarm 16 }
dupsAlarmLoadOnReserve OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS load on reserve?"
::= { dupsAlarm 17 }
dupsAlarmOverTemperature OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS over heat?"
::= { dupsAlarm 18 }
dupsAlarmOutputBad OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is the UPS output abnormal?"
::= { dupsAlarm 19 }
dupsAlarmBypassBad OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is the UPS bypass bad?"
::= { dupsAlarm 20 }
dupsAlarmUPSOff OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Is the UPS in standby mode?"
::= { dupsAlarm 21 }
dupsAlarmChargerFail OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS charger fail?"
::= { dupsAlarm 22 }
dupsAlarmFanFail OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the UPS fan fail?"
::= { dupsAlarm 23 }
dupsAlarmEconomicMode OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether the UPS is in the economic mode."
::= { dupsAlarm 24 }
dupsAlarmOutputOff OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether the UPS output is turned off or not."
::= { dupsAlarm 25 }
dupsAlarmSmartShutdown OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether the Smart Shutdown is in progress."
::= { dupsAlarm 26 }
dupsAlarmEmergencyPowerOff OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"UPS emergency power off."
::= { dupsAlarm 27 }
dupsAlarmUPSShutdown OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"UPS shutdown."
::= { dupsAlarm 28 }
-----------------------
-- dups Environment group --
-----------------------
dupsEnvTemperature OBJECT-TYPE
SYNTAX INTEGER
UNITS "degrees Centigrade"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The ambient environmental temperature."
::= { dupsEnvironment 1 }
dupsEnvHumidity OBJECT-TYPE
SYNTAX INTEGER
UNITS "percentage"
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The environmental humidity."
::= { dupsEnvironment 2 }
dupsEnvSetTemperatureLimit OBJECT-TYPE
SYNTAX INTEGER
UNITS "degrees Centigrade"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Alarm dupsAlarmOverTemperature on when the environmental
temperature over the value."
::= { dupsEnvironment 3 }
dupsEnvSetHumidityLimit OBJECT-TYPE
SYNTAX INTEGER
UNITS "percentage"
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Alarm dupsAlarmOverHumidity on when the environmental
humidity over the value."
::= { dupsEnvironment 4 }
dupsEnvSetEnvRelay1 OBJECT-TYPE
SYNTAX INTEGER{
normalOpen(0),
normalClose(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 5 }
dupsEnvSetEnvRelay2 OBJECT-TYPE
SYNTAX INTEGER{
normalOpen(0),
normalClose(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 6 }
dupsEnvSetEnvRelay3 OBJECT-TYPE
SYNTAX INTEGER{
normalOpen(0),
normalClose(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 7 }
dupsEnvSetEnvRelay4 OBJECT-TYPE
SYNTAX INTEGER{
normalOpen(0),
normalClose(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 8 }
dupsAlarmOverEnvTemperature OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the environment over temperature?"
::= { dupsEnvironment 9 }
dupsAlarmOverEnvHumidity OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Does the environment over humidity?"
::= { dupsEnvironment 10 }
dupsAlarmEnvRelay1 OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 11 }
dupsAlarmEnvRelay2 OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 12 }
dupsAlarmEnvRelay3 OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 13 }
dupsAlarmEnvRelay4 OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
""
::= { dupsEnvironment 14 }
-----------------------
-- dups Trap group --
-----------------------
dupsCommunicationLost TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: Communication with the UPS failed."
::= 1
dupsCommunicationEstablished TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Communication with the UPS reestablished."
::= 2
dupsPowerFail TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"WARNING: Power failed! The UPS is operating on battery power."
::= 3
dupsPowerRestored TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Power restored! The utility power restored."
::= 4
dupsLowBattery TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS batteries are low and will soon be exhausted."
::= 5
dupsReturnFromLowBattery TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS has returned from a low battery condition."
::= 6
dupsLoadWarning TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Loading percent of the UPS over the Load Warning value."
::= 7
dupsNoLongerLoadWarning TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Returnd from Load Warning condition."
::= 8
dupsLoadSeverity TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"Warning: Loading percent of the UPS over the Load Severity value."
::= 9
dupsNoLongerLoadSeverity TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Returned from Load Severity condition."
::= 10
dupsLoadOnBypass TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS loads on bypass."
::= 11
dupsNoLongerLoadOnBypass TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS is not on bypass mode."
::= 12
dupsUPSFault TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: A general fault caused in the UPS."
::= 13
dupsReturnFromUPSFault TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS is returned from general fault."
::= 14
dupsBatteryGroundFault TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS battery ground fault."
::= 15
dupsNoLongerBatteryFault TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS recovered from battery ground fault."
::= 16
dupsTestInProgress TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS test in progress."
::= 17
dupsBatteryTestFail TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS test fail."
::= 18
dupsFuseFailure TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS fuse failed."
::= 19
dupsFuseRecovered TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS fuse recovered."
::= 20
dupsOutputOverload TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS overload!."
::= 21
dupsNoLongerOverload TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Recovered from UPS overload."
::= 22
dupsOutputOverCurrent TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS output overcurrent."
::= 23
dupsNoLongerOutputOverCurrent TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Recovered from UPS overcurrent."
::= 24
dupsInverterAbnormal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS inverter abnormal."
::= 25
dupsInverterRecovered TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Recovered from UPS inverter abnormal."
::= 26
dupsRectifierAbnormal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS rectifier abnormal."
::= 27
dupsRectifierRecovered TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS recovered from rectifier abnormal."
::= 28
dupsReserveAbnormal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS rectifier abnormal."
::= 29
dupsReserveRecovered TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS rectifier abnormal."
::= 30
dupsLoadOnReserve TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: The UPS load on reserve."
::= 31
dupsNoLongerLoadOnReserve TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS no longer load on reserve."
::= 32
dupsEnvOverTemperature TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"WARNING: The environment overtemperature."
::= 33
dupsNoLongerEnvOverTemperature TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment recovered from overtemperature."
::= 34
dupsEnvOverHumidity TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"WARNING: The environment overhumidity."
::= 35
dupsNoLongerEnvOverHumidity TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment recovered from overhumidity."
::= 36
dupsEnvRelay1Alarm TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay1 is not in normal state."
::= 37
dupsEnvRelay1Normal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay1 is in normal state."
::= 38
dupsEnvRelay2Alarm TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay2 is not in normal state."
::= 39
dupsEnvRelay2Normal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay2 is in normal state."
::= 40
dupsEnvRelay3Alarm TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay3 is not in normal state."
::= 41
dupsEnvRelay3Normal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay3 is in normal state."
::= 42
dupsEnvRelay4Alarm TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay4 is not in normal state."
::= 43
dupsEnvRelay4Normal TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The environment relay4 is in normal state."
::= 44
dupsSmartShutdown TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: Smart Shutdown is initiated."
::= 45
dupsCancelShutdown TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: Cancel UPS Shutdown."
::= 46
dupsTestCompleted TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: This trap is sent upon completion of a UPS diagnostic test."
::= 47
dupsEPOON TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: This trap is sent when emergency power off is on."
::= 48
dupsEPOOFF TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: This trap is sent when UPS recover from emergency power off."
::= 49
dupsOverTemperature TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"SEVER: This trap is sent when the UPS is over heat."
::= 50
dupsNormalTemperature TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: This trap is sent when UPS recover from over heat."
::= 51
dupsBattReplace TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"WARNING: The battery needs to be replaced."
::= 52
dupsReturnFromBattReplace TRAP-TYPE
ENTERPRISE dupsTraps
DESCRIPTION
"INFORMATION: The UPS recovered from battery replacement."
::= 53
END
|