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
|
DELL-SNMP-UPS-MIB DEFINITIONS ::= BEGIN
-- Title: UPS MIB
-- Date: August 8th, 2013
-- Author: Eaton - R&D Communication
-- Release: 01.04.0002
-- NMC Firmware compatibility: 01.18.000x
IMPORTS
enterprises
FROM RFC1155-SMI
TimeStamp, DisplayString
FROM SNMPv2-TC
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215;
----
-- Path to the root
----
dell OBJECT IDENTIFIER ::= { enterprises 674 }
upsdell OBJECT IDENTIFIER ::= { dell 10902 }
hardware OBJECT IDENTIFIER ::= { upsdell 2 }
-- Groups of the MIB
productID OBJECT IDENTIFIER ::= { hardware 100 }
productStatus OBJECT IDENTIFIER ::= { hardware 110 }
physical OBJECT IDENTIFIER ::= { hardware 120 }
logical OBJECT IDENTIFIER ::= { hardware 130 }
traps OBJECT IDENTIFIER ::= { hardware 140 }
-- Groups of the Physical group
physicalIdent OBJECT IDENTIFIER ::= { physical 1 }
physicalOutput OBJECT IDENTIFIER ::= { physical 2 }
physicalRectifier OBJECT IDENTIFIER ::= { physical 3 }
physicalUPS OBJECT IDENTIFIER ::= { physical 4 }
physicalBattery OBJECT IDENTIFIER ::= { physical 5 }
physicalLoadSegment OBJECT IDENTIFIER ::= { physical 6 }
physicalEnvironment OBJECT IDENTIFIER ::= { physical 7 }
----
-- Definition of object types
----
--------------------------
-- the productID group --
--------------------------
productIDDisplayName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Name of this product for display purposes."
::= { productID 1 }
productIDDescription OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A short description of this product."
::= { productID 2 }
productIDVendor OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the product manufacturer."
::= { productID 3 }
productIDVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version of this product."
::= { productID 4 }
productIDBuildNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The software build number of the product populating the MIB."
::= { productID 5 }
productIDURL OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The URL of the web-based application to manage this device, should the device provide one."
::= { productID 6 }
productIDDeviceNetworkName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Operating system specific computer name if product SNMP service is hosted."
::= { productID 7 }
--------------------------
-- the productStatus group --
--------------------------
productStatusGlobalStatus OBJECT-TYPE
SYNTAX INTEGER {
other(1),
unknown(2),
ok(3),
non-critical(4),
critical(5),
non-recoverable(6)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current status of the product.
This is a rollup for the entire product including any
monitored devices. The status is intended to give
initiative to an SNMP monitor to get further data when
this status is abnormal."
::= { productStatus 1 }
productStatusLastGlobalStatus OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The status before the current status which induced an initiative
to issue a global status change trap."
::= { productStatus 2 }
productStatusTimeStamp OBJECT-TYPE
SYNTAX TimeStamp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The last time that the SNMP table geometries changed and/or
attribute data was significantly updated. This is to be used by
management applications to trigger a refresh of data acquired
from the MIB."
::= { productStatus 3 }
productStatusGetTimeOut OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS optional
DESCRIPTION
"Suggested time out value in milliseconds for how long the SNMP getter
should wait while attempting to poll the product SNMP service."
::= { productStatus 4 }
productStatusRefreshRate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS optional
DESCRIPTION
"Rate in seconds at which the SNMP service cached data is being updated."
::= { productStatus 5 }
productStatusGeneratingTrapFlag OBJECT-TYPE
SYNTAX INTEGER {
true(1),
false(2),
disabled(3)
}
ACCESS read-only
STATUS optional
DESCRIPTION
"Indicates if this SNMP sub-agent is capable of and/or is generating SNMP Traps.
This variable can take the following values:
1 True, this service is capable of sending traps and is the originator of SNMP
traps generated for the devices represented in this MIB and is currently generating traps.
2 False, this service not capable of sending traps and is not the originator of
any SNMP traps generated for the devices represented in this MIB.
3 Disabled, this service is capable of sending traps and is the originator of SNMP
traps for the devices represented in this MIB, but traps are currently disabled."
::= { productStatus 6 }
--------------------------
-- the Physical group --
--------------------------
-- physicalIdent group
physicalIdentFamilyName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"UPS Family name."
::= { physicalIdent 1 }
physicalIdentSerialNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"UPS Serial number."
::= { physicalIdent 2 }
physicalIdentConverterType OBJECT-TYPE
SYNTAX INTEGER {
lineInteractive(1),
onLine(2),
onLineUnitaryParallel(3),
onLineParallelWithNS(4),
onLineHotStandbyRedundancy(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"UPS type."
::= { physicalIdent 3 }
physicalIdentReferenceNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Technical Reference of UPS firmware."
::= { physicalIdent 4 }
-- physicalOutput group
physicalOutputInstantHeadroom OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This is the present amount of watt capacity remaining before overload."
::= { physicalOutput 1 }
physicalOutputPeakHeadroom OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Statistical value holding the lowest value that Instantaneous Headroom
Watts was ever set too since the last time this statistic was reset."
::= { physicalOutput 2 }
physicalOutputPeakHeadroomTimestamp OBJECT-TYPE
SYNTAX TimeStamp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time and date stamp of the last time the Peak Headroom Watts value was updated."
::= { physicalOutput 3 }
physicalOutputPeakConsumption OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Statistical value of the maximum RMS Watts the UPS has seen since
the last time this statistic was reset."
::= { physicalOutput 4 }
physicalOutputPeakConsumptionTimestamp OBJECT-TYPE
SYNTAX TimeStamp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time and date stamp of the last time the Peak Consumption Watts value was updated."
::= { physicalOutput 5 }
physicalOutputPresentConsumption OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Derived by averaging the watt second consumption over the past hour.
Use an array of 60 words to store the average watt seconds consumed over
the last minute then after you have a full hours worth of data in the 60
word array, average those values to get your Present KWH Consumption meter.
Then every minute after that update the oldest value in the array, average
again and update the meter.
Value is 0 until the minimum 1 hour of data has been accumulated."
::= { physicalOutput 6 }
physicalOutputCumulativeConsumption OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"64 bit meter value that is derived by reading the Present KWH Consumption meter
once per hour and adding it to the last value of this meter. Value accumulates
until it is reset from the LCD or via the SHUT protocol or the meter rolls over."
::= { physicalOutput 7 }
physicalOutputCumulativeConsumptionTimestamp OBJECT-TYPE
SYNTAX TimeStamp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Time and date stamp of last time this meter value was reset."
::= { physicalOutput 8 }
physicalOutputVA OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Output VA."
::= { physicalOutput 9 }
-- physicalRectifier group
physicalRectifierPosVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DC bus positive voltage."
::= { physicalRectifier 1 }
physicalRectifierNegVoltage OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"DC bus negative voltage."
::= { physicalRectifier 2 }
-- physicalUPS group
physicalUPSDateTime OBJECT-TYPE
SYNTAX TimeStamp
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Real Time Clock with Date and Time."
::= { physicalUPS 1 }
physicalUPSAlarmsStatus OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"List of traps that are in active mode. This list is coded in ASCI format
and each trap number is separated by a coma (ex: 1,5,23,77). Only odd traps
are listed."
::= { physicalUPS 2 }
physicalUPSRuntimeToShutdown OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until UPS will receive a ShutdownAfterDelay command.
2147483647 if no countdown is in effect."
::= { physicalUPS 3 }
physicalUPSOutpoutSwitchable OBJECT-TYPE
SYNTAX INTEGER {
switchable(1),
notSwitchable(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Parameter to enable or not remote UPS commands coming from all communication ports."
::= { physicalUPS 4 }
-- physicalBattery group
physicalBatteryABMStatus OBJECT-TYPE
SYNTAX INTEGER {
abmCharging(1),
abmDischarging(2),
abmFloating(3),
abmResting(4),
abmOff(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Advanced Battery Monitoring satus."
::= { physicalBattery 1 }
physicalBatteryTestStatus OBJECT-TYPE
SYNTAX INTEGER {
donePassed(1),
doneWarning(2),
doneError(3),
aborted(4),
inProgress(5),
noTestIniated(6),
testScheduled(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Battery test satus."
::= { physicalBattery 2 }
physicalBatterySecondsRemaining OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Battery remaining time calculated by the autonometer."
::= { physicalBattery 3 }
-- physicalLoadSegment group
physicalLoadSegment1ShutdownAfterDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until load segment 1 will switch off.
-1 if no shutdown countdown is in effect."
::= { physicalLoadSegment 1 }
physicalLoadSegment1StartupAfterDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until load segment 1 will switch on.
-1 if no startup countdown is in effect."
::= { physicalLoadSegment 2 }
physicalLoadSegment2ShutdownAfterDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until load segment 2 will switch off.
-1 if no shutdown countdown is in effect."
::= { physicalLoadSegment 3 }
physicalLoadSegment2StartupAfterDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until load segment 2 will switch on.
-1 if no startup countdown is in effect."
::= { physicalLoadSegment 4 }
physicalLoadSegment1RuntimeToShutdown OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until load segment 1 will receive a
ShutdownAfterDelay command. 2147483647 if no countdown is in effect."
::= { physicalLoadSegment 5 }
physicalLoadSegment2RuntimeToShutdown OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Number of seconds remaining until load segment 2 will receive a
ShutdownAfterDelay command. 2147483647 if no countdown is in effect."
::= { physicalLoadSegment 6 }
-- physicalEnvironment group
physicalEnvironmentSensorPresent OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Informations, if there is Environment Measurement Probe connected."
::= { physicalEnvironment 1 }
physicalEnvironmentSensorName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..59))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"User name of EMP."
::= { physicalEnvironment 2 }
physicalEnvironmentValues OBJECT IDENTIFIER ::= { physicalEnvironment 3 }
physicalEnvironmentValuesTemperatureUnit OBJECT-TYPE
SYNTAX INTEGER {
celsius(1),
fahrenheit(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Temperature unit setting."
::= { physicalEnvironmentValues 1 }
physicalEnvironmentValuesTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current temperature value in 0.1 degree Celsius."
::= { physicalEnvironmentValues 2 }
physicalEnvironmentValuesHumidity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current humidity value in 0.1 percents."
::= { physicalEnvironmentValues 3 }
physicalEnvironmentValuesTemperatureLow OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Temperature low threshhold in units of degree Celsius."
::= { physicalEnvironmentValues 4 }
physicalEnvironmentValuesTemperatureHigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Temperature high threshhold in units of degree Celsius."
::= { physicalEnvironmentValues 5 }
physicalEnvironmentValuesTemperatureHysteresis OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Temperature hysteresis in units of degree Celsius."
::= { physicalEnvironmentValues 6 }
physicalEnvironmentValueshHumidityLow OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Humidity low threshhold in percents."
::= { physicalEnvironmentValues 7 }
physicalEnvironmentValuesHumidityHigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Humidity high threshhold in percents."
::= { physicalEnvironmentValues 8 }
physicalEnvironmentValuesHumidityHysteresis OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Humidity hysteresis in percents."
::= { physicalEnvironmentValues 9 }
physicalEnvironmentInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF PhysicalEnvironmentInputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The table containins dry contact inputs information."
::= { physicalEnvironment 4 }
physicalEnvironmentInputEntry OBJECT-TYPE
SYNTAX PhysicalEnvironmentInputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The description of an entry in the table."
INDEX { physicalEnvironmentInputIndex }
::= { physicalEnvironmentInputTable 1 }
PhysicalEnvironmentInputEntry ::= SEQUENCE { -- ASN.1 type definition
physicalEnvironmentInputIndex INTEGER,
physicalEnvironmentInputName DisplayString,
physicalEnvironmentInputState INTEGER,
physicalEnvironmentInputOpenedState DisplayString,
physicalEnvironmentInputClosedState DisplayString
}
physicalEnvironmentInputIndex OBJECT-TYPE
SYNTAX INTEGER (0..1)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The input index, ranging from 1 to 2."
::= { physicalEnvironmentInputEntry 1 }
physicalEnvironmentInputName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..27))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The input user-friendly name."
::= { physicalEnvironmentInputEntry 2 }
physicalEnvironmentInputState OBJECT-TYPE
SYNTAX INTEGER {
opened(1),
closed(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current state of input."
::= { physicalEnvironmentInputEntry 3 }
physicalEnvironmentInputOpenedState OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..21))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The input opened state user-friendly name."
::= { physicalEnvironmentInputEntry 4 }
physicalEnvironmentInputClosedState OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..21))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The input closed state user-friendly name."
::= { physicalEnvironmentInputEntry 5 }
--------------------------
-- the Logical group --
--------------------------
--------------------------
-- the Traps group --
--------------------------
-- This group defines objects and traps, so that for each trap, simple
-- get request on related objects (one or many) allow to confirm actual
-- status of the trap.
-- TRAPS NOTIFICATIONS
trapInverterOverVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter AC over voltage."
--#SEVERITY WARNING
--#SUMMARY "The Inverter AC Voltage has exceeded the 'Over Voltage Threshold' value."
::= 1
trapInverterOverVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter AC over voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "The Inverter AC Voltage is no longer over the 'Over Voltage Threshold' value."
::= 2
trapInverterUnderVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter AC under voltage."
--#SEVERITY WARNING
--#SUMMARY "Inverter AC Voltage has fallen below the 'Under Voltage Threshold' value."
::= 3
trapInverterUnderVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter AC under voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Inverter AC Voltage is no longer below the 'Under Voltage Threshold' value."
::= 4
trapBypassFrequencyOutOfRange TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Bypass under or over frequency."
--#SEVERITY WARNING
--#SUMMARY "UPS Bypass Frequency has gone out of Range."
::= 5
trapBypassFrequencyOutOfRangeOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Bypass under or over frequency ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS Bypass Frequency is no longer out of Range."
::= 6
trapOnBuck TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"On Buck / Input Voltage Reducer."
--#SEVERITY INFORMATIONAL
--#SUMMARY "On Buck / Input Voltage Reducer."
::= 7
trapReturnFromBuck TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Return from Buck."
--#SEVERITY INFORMATIONAL
--#SUMMARY "The UPS has returned from Buck."
::= 8
trapOnBoost TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"On Boost / Input Voltage Booster."
--#SEVERITY INFORMATIONAL
--#SUMMARY "On Boost / Input Voltage Booster."
::= 9
trapReturnFromBoost TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Return from Boost."
--#SEVERITY INFORMATIONAL
--#SUMMARY "The UPS has returned from Boost."
::= 10
trapInputOverVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input AC over voltage."
--#SEVERITY WARNING
--#SUMMARY "Input AC Voltage to the UPS has exceeded the 'Over Voltage Threshold' value."
::= 11
trapInputOverVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input AC over voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input AC Voltage to the UPS no longer above the 'Over Voltage Threshold' value."
::= 12
trapInputUnderVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input AC under voltage."
--#SEVERITY WARNING
--#SUMMARY "Input AC Voltage to the UPS has fallen below 'Input Low Voltage Threshold' value."
::= 13
trapInputUnderVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input AC under voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input AC Voltage to the UPS is no longer below the 'Under Voltage Threshold' value."
::= 14
trapInputFrequencyOutOfRange TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input under or over frequency."
--#SEVERITY WARNING
--#SUMMARY "Input Frequency to UPS has fallen out of Range."
::= 15
trapInputFrequencyOutOfRangeOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input under or over frequency ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input Frequency to UPS is no longer out of Range."
::= 16
trapRemoteEmergencyPowerOff TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Remote emergency power off."
--#SEVERITY WARNING
--#SUMMARY "Remote emergency power off."
::= 17
trapReturnFromEmergencyPowerOff TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Return from remote emergency power off."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Return from remote emergency power off."
::= 18
trapLevel1Overload TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Output Level 1 overload."
--#SEVERITY WARNING
--#SUMMARY "UPS Output has exceeded the 'OverLoad Level 1 Threshold' value."
::= 19
trapLevel1OverloadOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Output Level 1 overload ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS Output is no longer above the 'Overload Level 1 threshold' value."
::= 20
trapLevel2Overload TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Level 2 overload."
--#SEVERITY WARNING
--#SUMMARY "UPS Output has exceeded the 'OverLoad Level 2 Threshold' value."
::= 21
trapLevel2OverloadOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Level 2 overload ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS Output is no longer above the 'Overload Level 2 threshold' value."
::= 22
trapLevel3Overload TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Level 3 overload."
--#SEVERITY CRITICAL
--#SUMMARY "UPS Output has exceeded the 'OverLoad Level 3 Threshold' value."
::= 23
trapLevel3OverloadOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Level 3 overload ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS Output is no longer above the 'Overload Level 3 threshold' value."
::= 24
trapPosDCLinkOverVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Positive DC link over voltage."
--#SEVERITY WARNING
--#SUMMARY "Positive DC link voltage has exceeded the 'Over Voltage Threshold' value."
::= 25
trapPosDCLinkOverVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Positive DC link over voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Positive DC link Voltage is no longer above the "Over Voltage Threshold" value."
::= 26
trapPosDCLinkUnderVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Positive DC link under voltage."
--#SEVERITY WARNING
--#SUMMARY "Positive DC Link Voltage has fallen below 'Low Voltage Threshold' value."
::= 27
trapPosDCLinkUnderVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Positive DC link under voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Positive DC link Voltage is no longer below the 'Under Voltage Threshold' value."
::= 28
trapNegDCLinkOverVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Negative DC link over voltage."
--#SEVERITY WARNING
--#SUMMARY "Negative DC link Voltage has exceeded the 'Over Voltage Threshold' value."
::= 29
trapNegDCLinkOverVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Negative DC link over voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Negative DC link over voltage is no longer above the 'Over Voltage Threshold' value."
::= 30
trapNegDCLinkUnderVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Negative DC link under voltage."
--#SEVERITY WARNING
--#SUMMARY "Negative DC link Voltage has fallen below 'Low Voltage Threshold' value."
::= 31
trapNegDCLinkUnderVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Negative DC link under voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Negative DC link Voltage is no longer below the 'Under Voltage Threshold' value."
::= 32
trapRectifierFault TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Rectifier fault."
--#SEVERITY CRITICAL
--#SUMMARY "Rectifier fault has occured."
::= 33
trapRectifierOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Rectifier ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Rectifier is functioning normally."
::= 34
trapInverterFault TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter fault."
--#SEVERITY CRITICAL
--#SUMMARY "There is an Inverter fault."
::= 35
trapInverterOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Inverter is functioning normally."
::= 36
trapChargerFailure TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Charger failure."
--#SEVERITY CRITICAL
--#SUMMARY "Charger failure has occured."
::= 37
trapChargerOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Charger ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Charger is functioning normally."
::= 38
trapEepromFailure TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"EEPROM failure."
--#SEVERITY CRITICAL
--#SUMMARY "EEPROM failure has occured."
::= 39
trapEepromOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"EEPROM off."
--#SEVERITY INFORMATIONAL
--#SUMMARY "EEPROM is turned off."
::= 40
trapShutdownImminent TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Shutdown imminent."
--#SEVERITY CRITICAL
--#SUMMARY "The UPS Shutdown is imminent."
::= 41
trapShutdownImminentOver TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Shutdown imminent over."
--#SEVERITY INFORMATIONAL
--#SUMMARY "The imminient UPS Shutdown is no longer present."
::= 42
trapBatteryLow TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery low."
--#SEVERITY CRITICAL
--#SUMMARY "UPS battery remaining capacity has fallen below the 'Low Remaining Capacity Threshold' value."
::= 43
trapBatteryOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS battery remaining capacity is no longer below the 'Under Remaining Capacity Threshold' value."
::= 44
trapOutputShortCircuit TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Output short circuit."
--#SEVERITY CRITICAL
--#SUMMARY "Output short circuit."
::= 45
trapOutputReturnFromShortCircuit TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Output return from short circuit."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Output return from short circuit."
::= 46
trapUtilityNotPresent TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Utility not present."
--#SEVERITY WARNING
--#SUMMARY "Utility is not present."
::= 47
trapUtilityPresent TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Utility present."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Utility is present."
::= 48
trapBatteryOverVoltage TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery DC over voltage."
--#SEVERITY CRITICAL
--#SUMMARY "Battery DC Voltage has exceeded the 'Over Voltage Threshold' value."
::= 49
trapBatteryOverVoltageOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery DC over voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Battery DC Voltage is no longer above the 'Over Voltage Threshold' value."
::= 50
trapHeatsinkOvertemperature TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Heatsink overtemperature."
--#SEVERITY CRITICAL
--#SUMMARY "UPS temperature has exceeded the 'Over Temperature Threshold' value."
::= 51
trapHeatsinkOvertemperatureOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Heatsink overtemperature ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS temperature is no longer above the 'Over Temperature Threshold' value."
::= 52
trapBypassNotAvailable TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Bypass not available."
--#SEVERITY WARNING
--#SUMMARY "Bypass is not available."
::= 53
trapBypassNotAvailableOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Bypass not available ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Bypass is now available."
::= 54
trapOnManualBypass TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"On manual/ maintenance bypass."
--#SEVERITY INFORMATIONAL
--#SUMMARY "On manual/ maintenance bypass."
::= 55
trapUPSOnBattery TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS on battery."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS on battery."
::= 57
trapUPSReturnFromBattery TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS return from battery."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS return from battery."
::= 58
trapUPSOnBypass TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS on bypass."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS on bypass."
::= 59
trapUPSReturnFromBypass TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS return from bypass."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS return from bypass."
::= 60
trapBatteryTestInProgress TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery manual or automatic test in progress."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Battery manual or automatic test in progress."
::= 61
trapBatteryTestDone TRAP-TYPE
ENTERPRISE traps
VARIABLES { physicalBatteryTestStatus }
DESCRIPTION
"Battery test done."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Battery test done, battery status is: %d."
--#ARGUMENTS {0}
::= 62
trapBatteryNeedReplacement TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery test failed, battery needs to be replaced."
--#SEVERITY CRITICAL
--#SUMMARY "Battery test failed, battery needs to be replaced."
::= 63
trapBatteryReplacementDone TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Battery replacement done."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Battery replacement is done."
::= 64
trapFanFailure TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Fan failure."
--#SEVERITY CRITICAL
--#SUMMARY "UPS Fan has failed."
::= 65
trapFanOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Fan ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS Fan is working normally."
::= 66
trapSiteWiringFault TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Site wiring fault."
--#SEVERITY CRITICAL
--#SUMMARY "There is a fault in Site Wiring."
::= 67
trapSiteWiringOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Site wiring ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "No fault found in Site Wiring."
::= 68
trapBatteryDisconnected TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Batteries disconnected."
--#SEVERITY CRITICAL
--#SUMMARY "Batteries have been disconnected from the UPS."
::= 69
trapBatteryConnected TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Batteries connected."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Batteries have been connected to UPS."
::= 70
trapUPSOff TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS off."
--#SEVERITY WARNING
--#SUMMARY "UPS has been turned Off."
::= 71
trapUPSOn TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS on."
--#SEVERITY WARNING
--#SUMMARY "UPS has been turned On."
::= 72
trapDCLinkImbalance TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"DC link imbalance."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS has a DC link imbalance."
::= 73
trapDCLinkImbalanceOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"DC link imbalance ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS no longer has a DC link imbalance."
::= 74
trapABMOn TRAP-TYPE
ENTERPRISE traps
VARIABLES { physicalBatteryABMStatus }
DESCRIPTION
"ABM state on."
--#SEVERITY WARNING
--#SUMMARY "ABM is POWERED ON, battery state is : %d"
--#ARGUMENTS {0}
::= 79
trapABMOff TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"ABM state off."
--#SEVERITY WARNING
--#SUMMARY "ABM state is POWERED OFF."
::= 80
trapLoadSegment1Off TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Load segment 1 off."
--#SEVERITY WARNING
--#SUMMARY "Load segment 1 is Switched Off."
::= 81
trapLoadSegment1On TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Load segment 1 on."
--#SEVERITY WARNING
--#SUMMARY "Load segment 1 is Switched On."
::= 82
trapLoadSegment2Off TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Load segment 2 off."
--#SEVERITY WARNING
--#SUMMARY "Load segment 2 is Switched Off."
::= 83
trapLoadSegment2On TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Load segment 2 on."
--#SEVERITY WARNING
--#SUMMARY "Load segment 2 is Switched On."
::= 84
trapInHighEfficiencyMode TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"In High Efficiency mode."
--#SEVERITY WARNING
--#SUMMARY "UPS is running in High Efficiency mode."
::= 85
trapReturnFromHighEfficiencyMode TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Return from High Efficiency mode."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS is no longer running in High Efficiency mode."
::= 86
trapRectifierOverload TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Rectifier input over current."
--#SEVERITY WARNING
--#SUMMARY "Rectifier Input Current has exceeded the 'Input Current Threshold' value."
::= 87
trapRectifierOverloadOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Rectifier current ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Rectifier current is no longer over 'Input Current Threshold' value."
::= 88
trapInverterOverload TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter output over current."
--#SEVERITY WARNING
--#SUMMARY "Inverter Output Current has exceeded the 'Over Load Threshold' value."
::= 89
trapInverterOverloadOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Inverter output current ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Inverter Output Current is no longer over 'Ouput Current Threshold' value."
::= 90
trapBypassVoltageOutOfRange TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Bypass AC under or over voltage."
--#SEVERITY WARNING
--#SUMMARY "Bypass AC Voltage has gone out of Normal Range."
::= 91
trapBypassVoltageOutOfRangeOk TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Bypass AC under or over voltage ok."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Bypass AC Voltage has returned back to Normal Range."
::= 92
trapServiceBattery TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Service battery."
--#SEVERITY WARNING
--#SUMMARY "UPS battery needs to be serviced."
::= 93
trapToBypassCommand TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS received command to switch on bypass."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS received command to switch on bypass."
::= 94
trapFromBypassCommand TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"UPS received command to switch on inverter."
--#SEVERITY INFORMATIONAL
--#SUMMARY "UPS received command to switch from bypass to inverter."
::= 95
trapCommunicationLost TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Lost communication with UPS, HID databasis is not updated."
--#SEVERITY WARNING
--#SUMMARY "UMC lost communication with UPS, HID databasis is not updated."
::= 96
trapCommunicationRestored TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Communication restored with UPS, HID databasis is updated."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Communication restored with UPS."
::= 97
-- 01.04.0001 Release on 2011/07/28 : Traps 98 to 111 added for the environment sensor.
trapEnvironComFailure TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Environment Probe communication failure."
--#SEVERITY WARNING
--#SUMMARY "Environment Probe communication failure."
::= 98
trapEnvironComOK TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Environment Probe communication restored."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Environment Probe communication restored."
::= 99
trapEnvironTemperatureLow TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Temperature is below low threshold."
--#SEVERITY WARNING
--#SUMMARY "Temperature is below low threshold."
::= 100
trapEnvironTemperatureHigh TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Temperature is above high threshold."
--#SEVERITY WARNING
--#SUMMARY "Temperature is above high threshold."
::= 102
trapEnvironTemperatureOK TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Temperature is in normal range."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Temperature is in normal range."
::= 103
trapEnvironHumidityLow TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Humidity is below low threshold."
--#SEVERITY WARNING
--#SUMMARY "Humidity is below low threshold."
::= 104
trapEnvironHumidityHigh TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Humidity is above high threshold."
--#SEVERITY WARNING
--#SUMMARY "Humidity is above high threshold."
::= 106
trapEnvironHumidityOK TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Humidity is in normal range."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Humidity is in normal range."
::= 107
trapEnvironInput1Closed TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input #1 is Closed."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input #1 is Closed."
::= 108
trapEnvironInput1Open TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input #1 is Open."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input #1 is Open."
::= 109
trapEnvironInput2Closed TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input #2 is Closed."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input #2 is Closed."
::= 110
trapEnvironInput2Open TRAP-TYPE
ENTERPRISE traps
DESCRIPTION
"Input #2 is Open."
--#SEVERITY INFORMATIONAL
--#SUMMARY "Input #2 is Open."
::= 111
END
|