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
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
|
-- PPC MIB
-- ====================================================================
-- Revision History
-- v0.13 2011-11-10 Gavin Zhao created, Lilinhua modified
-- *************************NMC v0.0.1.7***********************************
-- v0.14 2011-11-18 Lilinhua
-- 1. Modify string "ppcTrap" to "eppcTrap"
-- 2012-02-09 Lilinhua
-- 1. Modify upsESystemFaultCode's description "The warning code of UPS" to "The fault code of UPS".
-- *************************NMC v1.1.0.4************************************
-- v0.15 2012-07-20 Lilinhua
-- 1. upsEShutdownWarningPeriodInterval, modify access from read-only to read-write.
-- 2. upsEShutdownwarningPeriodTime, add unit second.
-- 2012-07-31 Lilinhua
-- 1. Modify upsEBatteryTestElapsedTime's format from hh:mm:ss.ss to hh:mm:ss
-- 2012-08-09 Lilinhua
-- 1. Modify values of upsEModuleWorkingMode as upsESystemStatus's.
-- *************************NMC v1.1.0.6************************************
-- 2012-08-27 Lilinhua
-- 1. Modify "Moudles" to "Modules", advised by Beth.
-- 2. Modify module name as phase name "upsEModuleOutputCurrentR", "upsEModuleOutputWattR", "upsEModuleOutputLoadR".
-- 3. Add Convert module item "upsEModuleTrapState(12)".
-- 4. Add Convert module item "upsEModuleConfigOutputVA(13)".
-- 5. Add Convert module item "upsEModuleOutputCurrentS(14)", "upsEModuleOutputCurrentT(15)".
-- 6. Add Convert module item "upsEModuleOutputWattS(16)", "upsEModuleOutputWattT(17)".
-- 7. Add Convert module item "upsEModuleOutputLoadS(18)", "upsEModuleOutputLoadT(19)".
-- 8. Add Convert module item "upsEModuleOutputVAR(20)", "upsEModuleOutputVAS(21)", "upsEModuleOutputVAT(22)".
-- 9. Modify upsETrapState max length from 255 to 127.
-- *************************NMC v1.1.0.6************************************
-- 2012-08-27 Lilinhua
-- 1. Modify trap description of Overload, OverTemperature.
-- *************************NMC v1.3.0.0************************************
-- 2013-06-21 Lilinhua
-- 1. Add two upsEShutdownEvents: "belowCapacityLimit(11), belowRemainTimeLimit(12)".
-- 2. Add 4 traps: upsEBelowCapacityLimit, upsENotBelowCapacityLimit, upsEBelowRemainTimeLimit, upsENotBelowRemainTimeLimit.
-- 3. Add 2 config data: upsESystemConfigBelowCapacityLimit, upsESystemConfigBelowRemainTimeLimit.
-- 4. Modify upsETrapState's description: "trap 2(battery on)" to "trap 7(battery on)".
-- *************************NMC v1.4.0.3************************************
-- 2014-10-15 Lilinhua
-- 1. Modify descriptions of "upsEEnvironmentTemperatureHighSetPoint, upsEEnvironmentHumidityHighSetPoint,
-- upsEEnvironmentTemperatureLowSetPoint, upsEEnvironmentHumidityLowSetPoint".
-- *************************NMC v1.5.0.4************************************
-- v0.16 2015-01-05 Lilinhua
-- 1. Modify MIB for add Load segment.
EPPC-MIB DEFINITIONS ::= BEGIN
IMPORTS
TRAP-TYPE
FROM RFC-1215
DisplayString
FROM SNMPv2-TC
OBJECT-TYPE
FROM RFC-1212
enterprises,Counter, IpAddress
FROM RFC1155-SMI
PositiveInteger,NonNegativeInteger
FROM UPS-MIB;
ppc OBJECT IDENTIFIER ::= { enterprises 935 }
device OBJECT IDENTIFIER ::= { ppc 10 }
upsAgent OBJECT IDENTIFIER ::= { device 1 }
upsE OBJECT IDENTIFIER ::= { upsAgent 1 }
upsETraps OBJECT IDENTIFIER ::= { upsAgent 2 }
upsEIdentity OBJECT IDENTIFIER ::= { upsE 1 }
upsESystemSummary OBJECT IDENTIFIER ::= { upsE 2 }
upsEBatterySystem OBJECT IDENTIFIER ::= { upsE 3 }
upsEPowerConverterSystem OBJECT IDENTIFIER ::= { upsE 4 }
upsELoadSegment OBJECT IDENTIFIER ::= { upsE 5 }
upsEEnvironment OBJECT IDENTIFIER ::= { upsE 6 }
upsEBatteryTest OBJECT IDENTIFIER ::= { upsE 7 }
upsEControl OBJECT IDENTIFIER ::= { upsE 8 }
upsETrapControl OBJECT IDENTIFIER ::= { upsE 9 }
--========================================================================
--upsEIdentity
--========================================================================
upsEIdentityManufacturer OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 31 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The name of the UPS manufacturer."
::= { upsEIdentity 1 }
upsEIdentityModel OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 63 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The UPS Model designation."
::= { upsEIdentity 2 }
upsEIdentityUPSFirmwareVerison OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 31 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The UPS firmware/software version(s)."
::= { upsEIdentity 3 }
upsEIndentityUPSSerialNumber OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 31 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "optional.
Most UPS don't supply the value of UPS serial No."
::= { upsEIdentity 4 }
upsEIdentityDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 63 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "A string to identify the UPS. This object should be
set by the administrator."
::= { upsEIdentity 5 }
upsEIdentityAgentSoftwareVerison OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 31 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The Network Management Card software/firmware version.
This variable may or may not have the same value as
upsEIdentGroupUPSSoftwareVersion in some implementations."
::= { upsEIdentity 6 }
upsEIdentityAttachedDevices 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"
::= { upsEIdentity 7 }
--========================================================================
--upsESystemSummary
--========================================================================
upsESystemStatus OBJECT-TYPE
SYNTAX INTEGER { power-on ( 1 ) , stand-by( 2 ) , by-pass ( 3 ) ,
line( 4 ) , battery ( 5 ) , battery-test ( 6 ) , fault ( 7 ) ,
converter ( 8 ) , eco ( 9 ) , shutdown ( 10 ) , on-booster ( 11 ) , on-reducer ( 12 ) , other( 13 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The indication of UPS system status."
::= { upsESystemSummary 1 }
upsESystemTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The temperature of UPS presented in 0.1 degree."
::= { upsESystemSummary 2 }
upsESystemWarningCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 15 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The warning code of UPS. Please refer the warning table
of 'Q6' for details."
::= { upsESystemSummary 3 }
upsESystemFaultCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 15 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The fault code of UPS.Please refer the fault code
of 'Q6' for details."
::= { upsESystemSummary 4 }
upsESystemConfigInputVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal input voltage presented in 0.1 V. On those
systems which support read-write access to this object, if there is an
attempt to set this variable to a value that is not supported,
the request must be rejected and the agent shall respond with an
appropriate error message, i.e., badValue for SNMPv1, or
inconsistentValue for SNMPv2."
::= { upsESystemSummary 5 }
upsESystemConfigInputFrequence OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The nominal input frequency presented in 0.1 Hz. On those systems which support
read-write access to this object, if there is an attempt to
set this variable to a value that is not supported, the request
must be rejected and the agent shall respond with an appropriate
error message, i.e., badValue for SNMPv1, or inconsistentValue for SNMPv2."
::= { upsESystemSummary 6 }
upsESystemConfigOutputVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal output voltage presented in 0.1V. On those systems
which support read-write access to this object, if there is an
attempt to set this variable to a value that is not supported,
the request must be rejected and the agent shall respond with an
appropriate error message, i.e., badValue for SNMPv1, or
inconsistentValue for SNMPv2"
::= { upsESystemSummary 7 }
upsESystemConfigOutputFrequency OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The nominal output frequency presented in 0.1Hz. On those systems which support
read-write access to this object, if there is an attempt to set
this variable to a value that is not supported, the request must
be rejected and the agent shall respond with an appropriate error
message, i.e., badValue for SNMPv1, or inconsistentValue for SNMPv2."
::= { upsESystemSummary 8 }
upsESystemConfigOutputVA OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal Volt-Amp rating presented in VA."
::= { upsESystemSummary 9 }
upsESystemConfigOutputPower OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal true power rating presented in W ."
::= { upsESystemSummary 10 }
upsESystemConfigOutputLoadHighSetPoint OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum output load allowed before the load is too high for
UPS operation "
::= { upsESystemSummary 11 }
upsESystemConfigOverTemperatureSetPoint OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The maximum temperature allowed before the UPS
operation temperature is too high, presented in 0.1 degree."
::= { upsESystemSummary 12 }
upsESystemInputSourceNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The present external source of input power."
::= { upsESystemSummary 13 }
upsESystemInputLineBads OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of times the Input was out of tolerance in voltage or frequency.
Its value should be initialized 0 after agent restarting. "
::= { upsESystemSummary 14 }
upsESystemInputNumPhases OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 3 )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of input phase utilized is this device, serves as the table index.
This value indicate the device initialized feature."
::= { upsESystemSummary 15 }
upsESystemInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsSystemInputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of input table entries. The number of entries is given by the
value of upsESystemInputNumPhase."
::= { upsESystemSummary 16 }
upsESystemInputEntry OBJECT-TYPE
SYNTAX UpsSystemInputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular input line."
INDEX { upsESystemInputPhase }
::= { upsESystemInputTable 1 }
UpsSystemInputEntry ::= SEQUENCE {
upsESystemInputPhase PositiveInteger,
upsESystemInputFrequency NonNegativeInteger,
upsESystemInputVoltage NonNegativeInteger,
upsESystemInputCurrent NonNegativeInteger,
upsESystemInputWatts NonNegativeInteger
}
upsESystemInputPhase OBJECT-TYPE
SYNTAX PositiveInteger( 1 .. 3 )
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The number of the phase. Serves as index for input table"
::= { upsESystemInputEntry 1 }
upsESystemInputFrequency OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured input frquency from the UPS meters in 0.1Hz."
::= { upsESystemInputEntry 2 }
upsESystemInputVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured input voltage from the UPS meters in 0.1 volts"
::= { upsESystemInputEntry 3 }
upsESystemInputCurrent OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured input mandatory from the UPS meters in 0.1 amps."
::= { upsESystemInputEntry 4 }
upsESystemInputWatts OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured input real power in watts."
::= { upsESystemInputEntry 5 }
upsESystemOutputNumPhase OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 3 )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of metered output phases, serves as the table index.
This value indicate the device initialized feature."
::= { upsESystemSummary 17 }
upsESystemOutputTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsSystemOutputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of output table entries. The number of entries is given
by the value of upsESystemOutputNumPhase."
::= { upsESystemSummary 18 }
upsESystemOutputEntry OBJECT-TYPE
SYNTAX UpsSystemOutputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular line."
INDEX { upsESystemOutputPhase }
::= { upsESystemOutputTable 1 }
UpsSystemOutputEntry ::= SEQUENCE {
upsESystemOutputPhase PositiveInteger,
upsESystemOutputFrequency NonNegativeInteger,
upsESystemOutputVoltage NonNegativeInteger,
upsESystemOutputCurrent NonNegativeInteger,
upsESystemOutputWatts NonNegativeInteger,
upsESystemOutputVA NonNegativeInteger,
upsESystemOutputLoad NonNegativeInteger
}
upsESystemOutputPhase OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 3 )
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The number of the phase. Serves as index for output table"
::= { upsESystemOutputEntry 1 }
upsESystemOutputFrequency OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured output frequency from the UPS meters in 0.1Hz."
::= { upsESystemOutputEntry 2 }
upsESystemOutputVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured output voltage from the UPS meters in 0.1 volts"
::= { upsESystemOutputEntry 3 }
upsESystemOutputCurrent OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured output mandatory from the UPS meters in 0.1 amps."
::= { upsESystemOutputEntry 4 }
upsESystemOutputWatts OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured output real power in watts."
::= { upsESystemOutputEntry 5 }
upsESystemOutputVA OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured output real complex power in VA."
::= { upsESystemOutputEntry 6 }
upsESystemOutputLoad OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The UPS output load in percent of rated capacity."
::= { upsESystemOutputEntry 7 }
upsESystemBypassNumPhase OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 3 )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of bypass phases, serves as the table index.
This value indicate the device initialized feature"
::= { upsESystemSummary 19 }
upsESystemBypassTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsSystemBypassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of bypass table entries. The number of entries is given by the
value of upsESystemBypassNumPhase."
::= { upsESystemSummary 20 }
upsESystemBypassEntry OBJECT-TYPE
SYNTAX UpsSystemBypassEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular line."
INDEX { upsESystemBypassPhase }
::= { upsESystemBypassTable 1 }
UpsSystemBypassEntry ::= SEQUENCE {
upsESystemBypassPhase PositiveInteger,
upsESystemBypassFrequency NonNegativeInteger,
upsESystemBypassVoltage NonNegativeInteger,
upsESystemBypassCurrent NonNegativeInteger,
upsESystemBypassWatts NonNegativeInteger
}
upsESystemBypassPhase OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 3 )
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The number of the phase. Serves as index for bypass table"
::= { upsESystemBypassEntry 1 }
upsESystemBypassFrequency OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured bypass frequency from the UPS meters in 0.1 Hz."
::= { upsESystemBypassEntry 2 }
upsESystemBypassVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured bypass voltage from the UPS meters in 0.1 volts"
::= { upsESystemBypassEntry 3 }
upsESystemBypassCurrent OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured bypass mandatory from the UPS meters in 0.1 amps"
::= { upsESystemBypassEntry 4 }
upsESystemBypassWatts OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured input real power in watts."
::= { upsESystemBypassEntry 5 }
upsESystemConfigBelowCapacityLimit OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The UPS batteries capacity(%) limit for shutdown"
::= { upsESystemSummary 21 }
upsESystemConfigBelowRemainTimeLimit OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The UPS batteries backup time(minute) limit for shutdown"
::= { upsESystemSummary 22 }
--========================================================================
--upsEBatterySystem
--========================================================================
upsEBatteryStatus OBJECT-TYPE
SYNTAX INTEGER { unknown ( 1 ) , batteryNormal ( 2 ) , batteryLow ( 3 ) ,
batteryDepleted ( 4 ) , batteryDischarging ( 5 ) , batteryFailure ( 6 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION " The status of UPS battery, a value of batteryLow indicates
that the battery-low status bit has been set from device.
A value of batteryDepleted 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 mandatoryly absent and the UPS is unable to sustain
the output)"
::= { upsEBatterySystem 1 }
upsESecondsOnBattery OBJECT-TYPE
SYNTAX NonNegativeInteger
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. 0 shall be returned
if the unit is not on battery power"
::= { upsEBatterySystem 2 }
upsEBatteryEstimatedMinutesRemaining OBJECT-TYPE
SYNTAX PositiveInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "An estimate of the time to battery charge depletion
under the present load conditions if the utility power
is off and remains off, or if it were to be lost and
remain off."
::= { upsEBatterySystem 3 }
upsEBatteryEstimatedChargeRemaining OBJECT-TYPE
SYNTAX Integer32 ( 0 .. 100 )
ACCESS read-only
STATUS mandatory
DESCRIPTION "An estimate of the battery charge remaining expressed
as a percent of full charge"
::= { upsEBatterySystem 4 }
upsEPositiveBatteryVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the present positive battery voltage in 0.1 Volt DC"
::= { upsEBatterySystem 5 }
upsENegativeBatteryVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the present negative battery voltage in 0.1 Volt DC"
::= { upsEBatterySystem 6 }
upsEBatteryCellNumber OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object indicate the cell number of each set."
::= { upsEBatterySystem 7 }
upsEBatteryTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The ambient temperature at or near the UPS Battery
casing in 0.1 degree."
::= { upsEBatterySystem 8 }
upsEBatteryLastReplacedDate OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 10 .. 10 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The date when the Batteries in this UPS were last replaced.
The format should be DD/MM/YYYY."
::= { upsEBatterySystem 9 }
upsEBatteryABMStatus OBJECT-TYPE
SYNTAX INTEGER { charge ( 1 ) , float ( 2 ) , rest ( 3 ) ,
discharge ( 4 ) , disable ( 5 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION " The status of ABM."
::= { upsEBatterySystem 10 }
upsEChargerModulesNum OBJECT-TYPE
SYNTAX NonNegativeInteger ( 0 .. 32 )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of charger modules inserted to UPS systems. served
as the index of the upsEChargerModulesTable.
The default value 0 indicate that the UPS system don't have
separate charger module."
::= { upsEBatterySystem 11 }
upsEChargerModulesTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsChargerModulesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of charger modules entries. The number of entries is given
by the value of upsEchargerModulesNum."
::= { upsEBatterySystem 12 }
upsEChargerModulesEntry OBJECT-TYPE
SYNTAX UpsChargerModulesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular charger module."
INDEX { chargerModulesNum }
::= { upsEChargerModulesTable 1 }
UpsChargerModulesEntry ::= SEQUENCE {
chargerModulesNum PositiveInteger,
chargerModulesAddress NonNegativeInteger ,
positiveChargeVotlage NonNegativeInteger,
negativeChargeVoltage NonNegativeInteger,
positiveChargeCurrent NonNegativeInteger,
negativeChargeCurrent NonNegativeInteger,
chargerModulesTemperature INTEGER,
chargerModulesMode INTEGER
}
chargerModulesNum OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 32 )
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The number of charger modules. Serves as index for charger module table"
::= { upsEChargerModulesEntry 1 }
chargerModulesAddress OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "Charger Modules' address."
::= { upsEChargerModulesEntry 2 }
positiveChargeVotlage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured positive charger voltage from the UPS meters in 0.1 volts"
::= { upsEChargerModulesEntry 3 }
negativeChargeVoltage OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured nepositive charger voltage from the UPS meters in 0.1 volts"
::= { upsEChargerModulesEntry 4 }
positiveChargeCurrent OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured positive charger mandatory from the UPS meters in in 0.1 amps."
::= { upsEChargerModulesEntry 5 }
negativeChargeCurrent OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured nepositive charger mandatory from the UPS meters in 0.1 amps."
::= { upsEChargerModulesEntry 6 }
chargerModulesTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured charger temperature from the UPS meters in 0.1 degree."
::= { upsEChargerModulesEntry 7 }
chargerModulesMode OBJECT-TYPE
SYNTAX INTEGER { powerOn ( 1 ) , standyby ( 2 ) , fault ( 3 ) , shutdown ( 4 ) ,
running ( 5 ) , suicide ( 6 ) , unknown ( 7 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The working mode of charger modules."
::= { upsEChargerModulesEntry 8 }
--========================================================================
--upsEPowerConverterSystem
--========================================================================
upsEUPSModulesNum OBJECT-TYPE
SYNTAX NonNegativeInteger ( 0 .. 32 )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of UPS modules inserted to UPS systems.
served as the index of the upsEModulesTable.
the default value 0 indicate that the UPS system do not
have separate UPS module."
::= { upsEPowerConverterSystem 1 }
upsEModulesTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsModulesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of UPS modules entries. The number of entries is
given by the value of upsEModulesNum."
::= { upsEPowerConverterSystem 2 }
upsEModulesEntry OBJECT-TYPE
SYNTAX UpsModulesEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular upsE module."
INDEX { upsEModulesNum }
::= { upsEModulesTable 1 }
UpsModulesEntry ::= SEQUENCE {
upsEModulesNum PositiveInteger,
upsEModuleAddress INTEGER,
upsEModulePositiveBusVolt NonNegativeInteger,
upsEModuleNegativeBusVolt NonNegativeInteger,
upsEModuleTemperature INTEGER,
upsEModuleWorkingMode INTEGER,
upsEModuleOutputCurrentR NonNegativeInteger,
upsEModuleOutputWattR NonNegativeInteger,
upsEModuleOutputLoadR INTEGER,
upsEModuleWarningCode DisplayString,
upsEModuleFaultCode DisplayString,
upsEModuleTrapState DisplayString,
upsEModuleConfigOutputVA NonNegativeInteger,
upsEModuleOutputCurrentS NonNegativeInteger,
upsEModuleOutputCurrentT NonNegativeInteger,
upsEModuleOutputWattS NonNegativeInteger,
upsEModuleOutputWattT NonNegativeInteger,
upsEModuleOutputLoadS INTEGER,
upsEModuleOutputLoadT INTEGER,
upsEModuleOutputVAR NonNegativeInteger,
upsEModuleOutputVAS NonNegativeInteger,
upsEModuleOutputVAT NonNegativeInteger
}
upsEModulesNum OBJECT-TYPE
SYNTAX PositiveInteger ( 1 .. 32 )
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The number of UPS modules. Serves as index for UPS module table"
::= { upsEModulesEntry 1 }
upsEModuleAddress OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "the address of UPS modules."
::= { upsEModulesEntry 2 }
upsEModulePositiveBusVolt OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured positive upsE module voltage from the UPS meters in 0.1 volts"
::= { upsEModulesEntry 3 }
upsEModuleNegativeBusVolt OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured nepositive upsE module voltage from the UPS meters in 0.1 volts"
::= { upsEModulesEntry 4 }
upsEModuleTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module temperature from the UPS meters in 0.1 degree."
::= { upsEModulesEntry 5 }
upsEModuleWorkingMode OBJECT-TYPE
SYNTAX INTEGER {power-on ( 1 ) , stand-by( 2 ) , by-pass ( 3 ) ,
line( 4 ) , battery ( 5 ) , battery-test ( 6 ) , fault ( 7 ) ,
converter ( 8 ) , eco ( 9 ) , shutdown ( 10 ) , on-booster ( 11 ) , on-reducer ( 12 ) , other( 13 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The working mode of UPS modules."
::= { upsEModulesEntry 6 }
upsEModuleOutputCurrentR OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module output mandatory from the UPS meters in 0.1 A."
::= { upsEModulesEntry 7 }
upsEModuleOutputWattR OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module output watts from the UPS meters in watts."
::= { upsEModulesEntry 8 }
upsEModuleOutputLoadR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The output load of UPS modules in %."
::= { upsEModulesEntry 9 }
upsEModuleWarningCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 15 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The warning code of ups modules.Please refer the warning table of 'QU,XX' for details."
::= { upsEModulesEntry 10 }
upsEModuleFaultCode OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 15 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The fault code of ups modules.Please refer command 'QU,XX' for details."
::= { upsEModulesEntry 11 }
upsEModuleTrapState OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 127 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "the values indicate the unrestored traps.
For example, after AC fail, so the value of upsETrapState should be '1'.
And then the AC restore, the value of upsEModuleTrapState
should change to empty."
::= { upsEModulesEntry 12 }
upsEModuleConfigOutputVA OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal Volt-Amp rating presented in VA."
::= { upsEModulesEntry 13 }
upsEModuleOutputCurrentS OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module output mandatory from the UPS meters in 0.1 A."
::= { upsEModulesEntry 14 }
upsEModuleOutputCurrentT OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module output mandatory from the UPS meters in 0.1 A."
::= { upsEModulesEntry 15 }
upsEModuleOutputWattS OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module output watts from the UPS meters in watts."
::= { upsEModulesEntry 16 }
upsEModuleOutputWattT OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measured upsE module output watts from the UPS meters in watts."
::= { upsEModulesEntry 17 }
upsEModuleOutputLoadS OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The output load of UPS modules in %."
::= { upsEModulesEntry 18 }
upsEModuleOutputLoadT OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The output load of UPS modules in %."
::= { upsEModulesEntry 19 }
upsEModuleOutputVAR OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal Volt-Amp rating presented in VA."
::= { upsEModulesEntry 20 }
upsEModuleOutputVAS OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal Volt-Amp rating presented in VA."
::= { upsEModulesEntry 21 }
upsEModuleOutputVAT OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The magnitude of the nominal Volt-Amp rating presented in VA."
::= { upsEModulesEntry 22 }
--========================================================================
--upsELoadSegment
--========================================================================
upsELoadSegment1OffDelay OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this object will shutdown the UPS Load Segment output after the indicated number of seconds, or less.
Setting this object to 0 will cause the shutdown to occur immediately. Setting this object to -1 will
abort the countdown. Read this object will get countdown value of the Load Segment."
::= { upsELoadSegment 1 }
upsELoadSegment1OnDelay OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this object will start the Load segment output after the indicated number of seconds,
including starting the UPS, if necessary. Setting this object to 0 will cause the startup
to occur immediately. Setting this object to -1 will abort the countdown."
::= { upsELoadSegment 2 }
upsELoadSegment1AutoOffTimer OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The load segment turns automatically off after the delay while the unit operates on battery,
but the shutdown is cancelled if the utility return before the delay has expired."
::= { upsELoadSegment 3 }
upsELoadSegment1AutoOnTimer OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The load segment is automatically turned on after a selected delay
if it has been shutdown due to on battery."
::= { upsELoadSegment 4 }
upsELoadSegment1State OBJECT-TYPE
SYNTAX INTEGER { off(1), on(2), off-pending(3), on-pending(4), not-support(5) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Load segment output state."
::= { upsELoadSegment 5 }
upsELoadSegment2OffDelay OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this object will shutdown the UPS Load Segment output after the indicated number of seconds, or less.
Setting this object to 0 will cause the shutdown to occur immediately. Setting this object to -1 will
abort the countdown. Read this object will get countdown value of the Load Segment."
::= { upsELoadSegment 6 }
upsELoadSegment2OnDelay OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this object will start the Load segment output after the indicated number of seconds,
including starting the UPS, if necessary. Setting this object to 0 will cause the startup
to occur immediately. Setting this object to -1 will abort the countdown."
::= { upsELoadSegment 7 }
upsELoadSegment2AutoOffTimer OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The load segment turns automatically off after the delay while the unit operates on battery,
but the shutdown is cancelled if the utility return before the delay has expired."
::= { upsELoadSegment 8 }
upsELoadSegment2AutoOnTimer OBJECT-TYPE
-- Valid value is from -1 to 32767
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The load segment is automatically turned on after a selected delay
if it has been shutdown due to on battery."
::= { upsELoadSegment 9 }
upsELoadSegment2State OBJECT-TYPE
SYNTAX INTEGER { off(1), on(2), off-pending(3), on-pending(4), not-support(5) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "Load segment output state."
::= { upsELoadSegment 10 }
--========================================================================
--upsEEnvironment
--========================================================================
upsEEnvironmentTemperature OBJECT IDENTIFIER ::= { upsEEnvironment 1 }
upsEEnvironmentCurrentTemperature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measurement of temperature sensor, in 0.1 degree"
::= { upsEEnvironmentTemperature 1 }
upsEEnvironmentTemperatureHighSetPoint OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The set point for high temperature warning, in 0.1 degrees.
This value must be greater than upsEEnvironmentTemperatureLowSetPoint,
and the least significant digit must be zero."
::= { upsEEnvironmentTemperature 2 }
upsEEnvironmentTemperatureHighStatus OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "To enable/disable high set point check with sensor temperature."
::= { upsEEnvironmentTemperature 3 }
upsEEnvironmentTemperatureLowSetPoint OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The set point for low temperature warning, in 0.1 degrees.
This value must be less than upsEEnvironmentTemperatureHighSetPoint,
and the least significant digit must be zero."
::= { upsEEnvironmentTemperature 4 }
upsEEnvironmentTemperatureLowStatus OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "To enable/disable low set point check with sensor temperature."
::= { upsEEnvironmentTemperature 5 }
upsEEnvironmentTemperatureOffset OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The offset to calibrate temperature of EMD, in 0.1 degrees"
::= { upsEEnvironmentTemperature 6 }
upsEEnvironmentHumidity OBJECT IDENTIFIER ::= { upsEEnvironment 2 }
upsEEnvironmentCurrentHumidity OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The measurement of sensor humidity present in %."
::= { upsEEnvironmentHumidity 1 }
upsEEnvironmentHumidityHighSetPoint OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The set point for high humidity warning, in %.
This value must be greater than upsEEnvironmentHumidityLowSetPoint."
::= { upsEEnvironmentHumidity 2 }
upsEEnvironmentHumidityHighStatus OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "To enable/disable high set point check with emd humidity."
::= { upsEEnvironmentHumidity 3 }
upsEEnvironmentHumidityLowSetPoint OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The set point for low humidity warning, in %.
This value must be less than upsEEnvironmentHumidityHighSetPoint."
::= { upsEEnvironmentHumidity 4 }
upsEEnvironmentHumidityLowStatus OBJECT-TYPE
SYNTAX INTEGER { enable ( 1 ) , disable ( 2 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "To enable/disable high set point check with emd humidity."
::= { upsEEnvironmentHumidity 5 }
upsEEnvironmentHumidityOffset OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION "The offset to calibrate humidity of EMD, in %."
::= { upsEEnvironmentHumidity 6 }
upsEEnvironmentContactsNum OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-only
STATUS mandatory
DESCRIPTION "The number of environment contacts, serves as the table index."
::= { upsEEnvironment 3 }
upsEEnvironmentContactTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsEEnvironmentContactEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "A list of contacts table entries. The number of entries is given by the
value of upsEEnvironmentContactsNum"
::= { upsEEnvironment 4 }
upsEEnvironmentContactEntry OBJECT-TYPE
SYNTAX UpsEEnvironmentContactEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular contact"
INDEX { upsEEnvironmentContactIndex }
::= { upsEEnvironmentContactTable 1 }
UpsEEnvironmentContactEntry ::= SEQUENCE {
upsEEnvironmentContactIndex PositiveInteger,
upsEEnvironmentContactType INTEGER,
upsEEnvironmentContactState INTEGER,
upsEEnvironmentContactDescription DisplayString
}
upsEEnvironmentContactIndex OBJECT-TYPE
SYNTAX PositiveInteger
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The number of environment contacts. Serves as index for environment contact table"
::= { upsEEnvironmentContactEntry 1 }
upsEEnvironmentContactType OBJECT-TYPE
SYNTAX INTEGER { normallyOpen ( 1 ) , normallyClosed ( 2 ) , notUsed ( 3 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "operation type"
::= { upsEEnvironmentContactEntry 2 }
upsEEnvironmentContactState OBJECT-TYPE
SYNTAX INTEGER { open ( 1 ) , closed ( 2 ) , openWithNotice ( 3 ) , closedWithNotice ( 4 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "The mandatory status."
::= { upsEEnvironmentContactEntry 3 }
upsEEnvironmentContactDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 31 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "Description of environment contact."
::= { upsEEnvironmentContactEntry 4 }
--========================================================================
--upsEBatteryTest
--========================================================================
upsEBatteryTestStart OBJECT-TYPE
SYNTAX INTEGER { none ( 1 ) , batteryTest10Sec ( 2 ) , batteryTestUntilLow ( 3 ) ,
batteryTestWithTime ( 4 ) , cancelBatteryTest ( 5 ) , clearBatteryInfo ( 6 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "This object specify the battery test type and initiate battery test.
If battTestWithTime selected, the test time is refer to upsEBatteryTestSettingTime."
::= { upsEBatteryTest 1 }
upsEBatteryTestSettingTime OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The object specify the test time for battery test in seconds."
::= { upsEBatteryTest 2 }
upsEBatteryTestResult OBJECT-TYPE
SYNTAX INTEGER { idle ( 1 ) , processing ( 2 ) , noFailure ( 3 ) ,
failureOrWarning ( 4 ) , notPossible ( 5 ) , testCancel ( 6 ) }
ACCESS read-only
STATUS mandatory
DESCRIPTION "This object indicate the test result of battery."
::= { upsEBatteryTest 3 }
upsEBatteryTestStartTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 19 .. 19 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The value of the time the test in progress was initiated,
or, if no test is in progress, the time the previous test
was initiated. If the value of upsETestBatteryTestResult
is noTestsInitiated(6), upsETestStartTime has the value
01/01/1970 00:00:00."
::= { upsEBatteryTest 4 }
upsEBatteryTestElapsedTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 11 .. 11 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "The amount of time in format hh:mm:ss, since the test in progress
was initiated, or, if no test is in progress, the previous
test took to complete. If the value of upsTestResultsSummary
is idle(1), upsTestElapsedTime has the value 00:00:00."
::= { upsEBatteryTest 5 }
upsEBatteryTestScheduleTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsBatteryTestScheduleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "This table describes the schedule for automatically battery
test."
::= { upsEBatteryTest 6 }
upsEBatteryTestScheduleEntry OBJECT-TYPE
SYNTAX UpsBatteryTestScheduleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to schedule test."
INDEX { upsEBatteryTestScheduleIndex }
::= { upsEBatteryTestScheduleTable 1 }
UpsBatteryTestScheduleEntry ::= SEQUENCE {
upsEBatteryTestScheduleIndex PositiveInteger,
upsEBatteryTestScheduleDay INTEGER,
upsEBatteryTestScheduleTime DisplayString,
upsEBatteryTestScheduleType INTEGER,
upsEBatteryTestScheduleTestWithTime NonNegativeInteger,
upsEBatteryTestScheduleSpecialDay DisplayString
}
upsEBatteryTestScheduleIndex OBJECT-TYPE
SYNTAX PositiveInteger
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The index of battery test scheduled."
::= { upsEBatteryTestScheduleEntry 1 }
upsEBatteryTestScheduleDay OBJECT-TYPE
SYNTAX INTEGER { monday ( 1 ) , tuesday ( 2 ) , wednsday ( 3 ) ,
thusday ( 4 ) , friday ( 5 ) , saturday ( 6 ) ,
sunday ( 7 ) , specialday ( 8 ) , none ( 9 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "The weekday or specaial day on which the UPS should start battery test."
::= { upsEBatteryTestScheduleEntry 2 }
upsEBatteryTestScheduleTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 5 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The time that the battery test will be initiated in hh:mm format."
::= { upsEBatteryTestScheduleEntry 3 }
upsEBatteryTestScheduleType OBJECT-TYPE
SYNTAX INTEGER { none ( 1 ) , batteryTest10sec ( 2 ) , batteryTestUntilLow ( 3 ) ,
batteryTestWithTime ( 4 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of battery test."
::= { upsEBatteryTestScheduleEntry 5 }
upsEBatteryTestScheduleTestWithTime OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The battery time of setting time test in seconds."
::= { upsEBatteryTestScheduleEntry 6 }
upsEBatteryTestScheduleSpecialDay OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 10 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The special day that the battery test will be initiated in dd/mm/yyyy format."
::= { upsEBatteryTestScheduleEntry 7 }
--========================================================================
-- upsEControl
--========================================================================
upsEControlOutputOffDelay OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this value to other than zero will cause the UPS
output to turn off after the number of seconds. "
::= { upsEControl 1 }
upsEControlOutputOnDelay OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "Setting this value to other than zero will cause the
UPS output to turn on after the number of seconds. "
::= { upsEControl 2 }
upsEControlOutputOnOffControl OBJECT-TYPE
SYNTAX INTEGER { upsEOutputOff ( 1 ) , upsEOutputOffCancel ( 2 ) , upsESleep( 3 ) , none ( 4 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "upsEOutputOff ( 1 ) indicates the shutdown sequence,
upsEOutputOffCancel ( 2 ) indicates cancel the shutdown sequence,
upsESleep( 3 ) indicates shutdown UPS first, then switch on."
::= { upsEControl 3 }
upsEShutdownEventsTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsShutdownEventsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "This table describes the parametes for shutdown process
when shutdown event occurs"
::= { upsEControl 4 }
upsEShutdownEventsEntry OBJECT-TYPE
SYNTAX UpsShutdownEventsEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular shutdown
event line"
INDEX { upsEShutdownEvent }
::= { upsEShutdownEventsTable 1 }
UpsShutdownEventsEntry ::= SEQUENCE {
upsEShutdownEvent INTEGER,
upsEShutdownEventAction INTEGER,
upsEShutdownwarningPeriodTime NonNegativeInteger,
upsEShutdownWarningPeriodInterval NonNegativeInteger
}
upsEShutdownEvent OBJECT-TYPE
SYNTAX INTEGER { acFail ( 1 ) , batteryLow ( 2 ) , upsEOverLoad ( 3 ) ,
upsEOverTemperature ( 4 ) , upsEWeeklySchedule ( 5 ) ,
upsESpecialSchedule ( 6 ) , environmentTemperatureOverThreshold ( 7 ) ,
environmentHumidityOverThreshold ( 8 ) , environmentContact1Alarm ( 9 ) ,
environmentContact2Alarm ( 10 ), belowCapacityLimit( 11 ), belowRemainTimeLimit( 12 )}
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The shutdown event identification"
::= { upsEShutdownEventsEntry 1 }
upsEShutdownEventAction OBJECT-TYPE
SYNTAX INTEGER { disable ( 1 ) , warning ( 2 ) , shutdownClient ( 3 ) , shutdownUPS ( 4 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "Status of the corresponding shutdown Event.
When set to disable(), shutdown process will not start when
corresponding event occured."
::= { upsEShutdownEventsEntry 2 }
upsEShutdownwarningPeriodTime OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The Delay in seconds after the occurance of the curresponding shutdown
event, and warning message should be popped in this period."
::= { upsEShutdownEventsEntry 3 }
upsEShutdownWarningPeriodInterval OBJECT-TYPE
SYNTAX NonNegativeInteger
ACCESS read-write
STATUS mandatory
DESCRIPTION "The frequency of sending warning messages to the connected
clients when the curresponding shutdown event occurs.
The value is in units of seconds."
::= { upsEShutdownEventsEntry 4 }
upsEControlWeeklyScheduleTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsControlWeeklyScheduleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table to schedule shutting down the ups by weekly"
::= { upsEControl 5 }
upsEControlWeeklyScheduleEntry OBJECT-TYPE
SYNTAX UpsControlWeeklyScheduleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular line"
INDEX { upsEControlWeeklyScheduleIndex }
::= { upsEControlWeeklyScheduleTable 1 }
UpsControlWeeklyScheduleEntry ::= SEQUENCE {
upsEControlWeeklyScheduleIndex PositiveInteger,
upsEWeeklyScheduleShutdownDay INTEGER,
upsEWeeklyScheduleShutdownTime DisplayString,
upsEWeeklyScheduleRestartDay INTEGER,
upsEWeeklyScheduleRestartTime DisplayString
}
upsEControlWeeklyScheduleIndex OBJECT-TYPE
SYNTAX PositiveInteger
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "the index of schedule events."
::= { upsEControlWeeklyScheduleEntry 1 }
upsEWeeklyScheduleShutdownDay OBJECT-TYPE
SYNTAX INTEGER { monday ( 1 ) , tuesday ( 2 ) , wednesday ( 3 ) ,
thursday ( 4 ) , friday ( 5 ) , saturday ( 6 ) ,
sunday ( 7 ) , none ( 8 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "the weekday on which upsE shoud shutdown"
::= { upsEControlWeeklyScheduleEntry 2 }
upsEWeeklyScheduleShutdownTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 5 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The time that the process of shutting down the UPS will be initiated
in hh:mm format."
::= { upsEControlWeeklyScheduleEntry 3 }
upsEWeeklyScheduleRestartDay OBJECT-TYPE
SYNTAX INTEGER { monday ( 1 ) , tuesday ( 2 ) , wednesday ( 3 ) ,
thursday ( 4 ) , friday ( 5 ) , saturday ( 6 ) ,
sunday ( 7 ) , none ( 8 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "the weekday on which the UPS should restart."
::= { upsEControlWeeklyScheduleEntry 4 }
upsEWeeklyScheduleRestartTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 5 .. 5 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The time the UPS will restart in hh:mm format."
::= { upsEControlWeeklyScheduleEntry 5 }
upsEControlSpecialDayScheduleTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsControlSpecialDayScheduleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The table to schedule shutting down the ups."
::= { upsEControl 6 }
upsEControlSpecialDayScheduleEntry OBJECT-TYPE
SYNTAX UpsControlSpecialDayScheduleEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular line."
INDEX { upsEControlSpecialDayScheduleIndex }
::= { upsEControlSpecialDayScheduleTable 1 }
UpsControlSpecialDayScheduleEntry ::= SEQUENCE {
upsEControlSpecialDayScheduleIndex PositiveInteger,
upsESpecialDayScheduleShutdownDay DisplayString,
upsESpecialDayScheduleShutdownTime DisplayString,
upsESpecialDayScheduleRestartDay DisplayString,
upsESpecialDayScheduleRestartTime DisplayString
}
upsEControlSpecialDayScheduleIndex OBJECT-TYPE
SYNTAX PositiveInteger
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The index of special day schedule."
::= { upsEControlSpecialDayScheduleEntry 1 }
upsESpecialDayScheduleShutdownDay OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 10 .. 10 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The special day on which UPS should shutdown with the format
of DD/MM/YYYY."
::= { upsEControlSpecialDayScheduleEntry 2 }
upsESpecialDayScheduleShutdownTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 5 .. 5 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The time that the process of shutting down the UPS will be initiated
in hh:mm format."
::= { upsEControlSpecialDayScheduleEntry 3 }
upsESpecialDayScheduleRestartDay OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 10 .. 10 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The special day on which the UPS should restart with the format
of DD/MM/YYYY."
::= { upsEControlSpecialDayScheduleEntry 4 }
upsESpecialDayScheduleRestartTime OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 5 .. 5 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The time the UPS will restart in hh:mm format."
::= { upsEControlSpecialDayScheduleEntry 5 }
upsESystemMasterOffDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The UPS output will shutdown after the indicated number of seconds, -1 indicate no action."
::= { upsEControl 7 }
upsESystemMasterOnDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION "The UPS output will start on after the indicated number of seconds, -1 indicate no action."
::= { upsEControl 8 }
--========================================================================
-- upsETrapControl
--========================================================================
upsETrapsReceiversTable OBJECT-TYPE
SYNTAX SEQUENCE OF UpsTrapsReceiversEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION " This table list the managers'IP to send traps to."
::= { upsETrapControl 1 }
upsETrapsReceiversEntry OBJECT-TYPE
SYNTAX UpsTrapsReceiversEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "An entry containing information applicable to a particular input line."
INDEX { upsETrapsReceiversIndex }
::= { upsETrapsReceiversTable 1 }
UpsTrapsReceiversEntry ::= SEQUENCE {
upsETrapsReceiversIndex PositiveInteger,
upsETrapsReceiverAddress DisplayString,
upsETrapReceiverCommunityString DisplayString,
upsETrapType INTEGER,
upsETrapsSeverityLevel INTEGER,
upsETrapReceiverDescription DisplayString
}
upsETrapsReceiversIndex OBJECT-TYPE
SYNTAX PositiveInteger
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The index to a trap receiver entry"
::= { upsETrapsReceiversEntry 1 }
upsETrapsReceiverAddress OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 45 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The IP address of the manager to send a trap to."
::= { upsETrapsReceiversEntry 2 }
upsETrapReceiverCommunityString OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 32 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "The community name to use in the trap when
sent to the manager."
::= { upsETrapsReceiversEntry 3 }
upsETrapType OBJECT-TYPE
SYNTAX INTEGER { none ( 1 ) , rfc1628Trap ( 2 ) , eppcTrap ( 3 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "The type of trap to be received by the manager."
::= { upsETrapsReceiversEntry 4 }
upsETrapsSeverityLevel OBJECT-TYPE
SYNTAX INTEGER { informational ( 1 ) , warning ( 2 ) , severe ( 3 ) }
ACCESS read-write
STATUS mandatory
DESCRIPTION "The severity level of traps to be received by this manager."
::= { upsETrapsReceiversEntry 5 }
upsETrapReceiverDescription OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 63 ) )
ACCESS read-write
STATUS mandatory
DESCRIPTION "Description of trap receivers"
::= { upsETrapsReceiversEntry 6 }
upsETrapState OBJECT-TYPE
SYNTAX DisplayString ( SIZE ( 0 .. 127 ) )
ACCESS read-only
STATUS mandatory
DESCRIPTION "the values indicate the unrestored traps.
For example, after AC fail, the agent send
the trap 1(AC Fail) and trap 7(battery on) to
NMS. so the value of upsETrapState should be '1,7'.
And then the AC restore, the value of upsETrapState
should change to empty."
::= { upsETrapControl 2 }
-- ===========================================================================
-- Trap defination
-- ===========================================================================
upsEPowerFail TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Utility power not available."
::= 1
upsEPowerRestored TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Utility power has restored."
::= 2
upsELowBattery TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"SEVERE: The UPS batteries are low and will soon be exhausted."
::= 3
upsEReturnFromLowBattery TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS has return from a low battery condition."
::= 4
upsEFailed TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"SEVERE: The UPS is not working fine."
::= 5
upsEOk TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS is working fine."
::= 6
upsEOnBattery TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEBatteryEstimatedMinutesRemaining,
upsESecondsOnBattery
}
DESCRIPTION
"WARNING: The UPS has switched to battery backup power."
::= 7
upsENotOnBattery TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS is not on battery power."
::= 8
upsETestInProgress TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The testing is going on ups."
::= 9
upsETestOver TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEBatteryTestStart,
upsEBatteryTestSettingTime,
upsEBatteryTestResult,
upsEBatteryTestStartTime
}
DESCRIPTION
"INFORMATION: The testing of UPS is completed."
::= 10
upsEBypassOn TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS has enabled bypass."
::= 11
upsEOnline TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS is not on Bypass and return to normal status."
::= 12
upsECommunicationLost TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"SEVERE: Communication to the UPS has been lost."
::= 13
upsECommunicationEstablished TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Communication with the UPS has been established."
::= 14
upsEGoingShutdown TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: The UPS is going to shutdown output."
::= 15
upsEShutdownCancelled TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS is not going to shutdown output."
::= 16
upsEOutlet1GoingShutdown TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: The UPS is going to shutdown outlet1."
::= 17
upsEOutlet1ShutdownCancelled TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS is not going to shutdown outlet1."
::= 18
upsEOutlet2GoingShutdown TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: The UPS is going to shutdown outlet2."
::= 19
upsEOutlet2ShutdownCancelled TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS is not going to shutdown outlet2."
::= 20
upsESleeping TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEControlOutputOnDelay
}
DESCRIPTION
"INFORMATION: UPS has entered sleep mode and power to load has been cut off."
::= 21
upsEWokeUp TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS woke up from sleep mode and power to load has been restored."
::= 22
upsEOverTemperature TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsESystemTemperature,
upsESystemConfigOverTemperatureSetPoint
}
DESCRIPTION
"WARNING: The UPS temperature is over the setting limit."
::= 23
upsENotOverTemperature TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsESystemTemperature,
upsESystemConfigOverTemperatureSetPoint
}
DESCRIPTION
"INFORMATION: The UPS temperature is not over the setting limit."
::= 24
upsEOverLoad TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsESystemOutputLoad,
upsESystemConfigOutputLoadHighSetPoint
}
DESCRIPTION
"WARNING: The UPS load is over the setting limit."
::= 25
upsENotOverLoad TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsESystemOutputLoad,
upsESystemConfigOutputLoadHighSetPoint
}
DESCRIPTION
"INFORMATION: The UPS load is not over the setting limit."
::= 26
upsEModuleInserted TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: UPS module or charger module plug-in."
::= 27
upsEModuleRemoved TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: UPS module or charger module unplugs."
::= 28
sensorTemperatureTooHigh TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentTemperatureHighSetPoint,
upsEEnvironmentCurrentTemperature
}
DESCRIPTION
"WARNING: Sensor Temperature over high Set point."
::= 29
sensorTemperatureNotHigh TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentTemperatureHighSetPoint,
upsEEnvironmentCurrentTemperature
}
DESCRIPTION
"INFORMATION: Sensor Temperature not over high Set point."
::= 30
sensorTemperatureTooLow TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentTemperatureLowSetPoint,
upsEEnvironmentCurrentTemperature
}
DESCRIPTION
"WARNING: Sensor Temperature under low Set point."
::= 31
sensorTemperatureNotLow TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentTemperatureLowSetPoint,
upsEEnvironmentCurrentTemperature
}
DESCRIPTION
"INFORMATION: Sensor Temperature not under low Set point."
::= 32
sensorHumidityTooHigh TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentHumidityHighSetPoint,
upsEEnvironmentCurrentHumidity
}
DESCRIPTION
"WARNING: Sensor Humidity over high Set point."
::= 33
sensorHumidityNotHigh TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentHumidityHighSetPoint,
upsEEnvironmentCurrentHumidity
}
DESCRIPTION
"INFORMATION: Sensor Humidity not over high Set point."
::= 34
sensorHumidityTooLow TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentHumidityLowSetPoint,
upsEEnvironmentCurrentHumidity
}
DESCRIPTION
"WARNING: Sensor Humidity under low Set point."
::= 35
sensorHumidityNotLow TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentHumidityLowSetPoint,
upsEEnvironmentCurrentHumidity
}
DESCRIPTION
"INFORMATION: Sensor Humidity not under low Set point."
::= 36
contactAlarm1Active TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentContactType,
upsEEnvironmentContactDescription
}
DESCRIPTION
"WARNING: Contact Alarm-1 activated."
::= 37
concactAlarm1Normal TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentContactType,
upsEEnvironmentContactDescription
}
DESCRIPTION
"INFORMATION: Contact Alarm-1 not active."
::= 38
contactAlarm2Active TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentContactType,
upsEEnvironmentContactDescription
}
DESCRIPTION
"WARNING: Contact Alarm-2 activated."
::= 39
contactAlarm2Normal TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEEnvironmentContactType,
upsEEnvironmentContactDescription
}
DESCRIPTION
"INFORMATION: Contact Alarm-2 not active."
::= 40
upsEInternalwarning TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Internal warning."
::= 41
upsEReturnFromInternalwarning TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Internal warning."
::= 42
upsEEPOActive TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: EPO Active."
::= 43
upsEReturnFromEPOActive TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from EPO Active."
::= 44
upsEModuleUnlock TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Module Unlock."
::= 45
upsEReturnFromModuleUnlock TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Module Unlock."
::= 46
upsEMain1Neutralloss TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Main 1 Neutral loss."
::= 47
upsEReturnFromMain1Neutralloss TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Main 1 Neutral loss."
::= 48
upsEMain1phaseerror TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Main 1 phase error."
::= 49
upsEReturnFromMain1phaseerror TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Main 1 phase error."
::= 50
upsESitefault TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Site fault."
::= 51
upsEReturnFromSitefault TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Site fault."
::= 52
upsEBypassAbnormal TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Bypass Abnormal."
::= 53
upsEReturnFromBypassAbnormal TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Bypass Abnormal."
::= 54
upsEBypassPhaseError TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Bypass Phase Error."
::= 55
upsEReturnFromBypassPhaseError TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Bypass Phase Error."
::= 56
upsEBatteryOpen TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Battery Open."
::= 57
upsEReturnFromBatteryOpen TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Battery Open."
::= 58
upsEBatteryOverCharge TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Battery Over Charge."
::= 59
upsEReturnFromBatteryOverCharge TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Battery Over Charge."
::= 60
upsEBatteryReverse TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Battery Reverse."
::= 61
upsEReturnFromBatteryReverse TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Battery Reverse."
::= 62
upsEOverloadforewarning TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Overload forewarning."
::= 63
upsEReturnFromOverloadforewarning TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Overload forewarning."
::= 64
upsEOverloadWarning TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Overload Warning."
::= 65
upsEReturnFromOverloadWarning TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Overload Warning."
::= 66
upsEFanLock TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Fan Lock."
::= 67
upsEReturnFromFanLock TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Fan Lock."
::= 68
upsEMaintaincoverisopen TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Maintain cover is open."
::= 69
upsEReturnFromMaintaincoverisopen TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Maintain cover is open."
::= 70
upsEChargerfault TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Charger fault."
::= 71
upsEReturnFromChargerfault TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Charger fault."
::= 72
upsEModulelocationerror TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Module location error."
::= 73
upsEReturnFromModulelocationerror TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Module location error."
::= 74
upsETurnonabnormal TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Turn on abnormal."
::= 75
upsEReturnFromTurnonabnormal TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Turn on abnormal."
::= 76
upsERedundancyloss TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Redundancy loss."
::= 77
upsEReturnFromRedundancyloss TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Redundancy loss."
::= 78
upsEHotSwapActived TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Hot Swap Active."
::= 79
upsEReturnFromHotSwapActived TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Hot Swap Active."
::= 80
upsEBatteryInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Battery Inform."
::= 81
upsEReturnFromBatteryInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Battery Inform."
::= 82
upsEInspectionInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Inspection Inform."
::= 83
upsEReturnFromInspectionInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Inspection Inform."
::= 84
upsEGuaranteeInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Guarantee Inform."
::= 85
upsEReturnFromGuaranteeInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Guarantee Inform."
::= 86
upsETemperatureLow TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Temperature Low."
::= 87
upsEReturnFromTemperatureLow TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Temperature Low."
::= 88
upsETemperatureHigh TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Temperature High."
::= 89
upsEReturnFromTemperatureHigh TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Temperature High."
::= 90
upsEBatteryOverTemperature TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Battery Over Temperature."
::= 91
upsEReturnFromBatteryOverTemperature TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Battery Over Temperature."
::= 92
upsEFanMaintainInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Fan Maintain Inform."
::= 93
upsEReturnFromFanMaintainInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Fan Maintain Inform."
::= 94
upsEBusCapacitanceMaintainInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Bus Capacitance Maintain Inform."
::= 95
upsEReturnFromBusCapacitanceMaintainInform TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from Bus Capacitance Maintain Inform."
::= 96
upsESystemOverCapacity TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: System Over Capacity."
::= 97
upsEReturnFromSystemOverCapacity TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Return from System Over Capacity."
::= 98
-- Trap Id 99-122 is not defined.
upsEBelowCapacityLimit TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEBatteryEstimatedChargeRemaining,
upsESystemConfigBelowCapacityLimit
}
DESCRIPTION
"SEVERE: The UPS batteries capacity is lower than setting limit."
::= 123
upsENotBelowCapacityLimit TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS batteries capacity is not lower than setting limit."
::= 124
upsEBelowRemainTimeLimit TRAP-TYPE
ENTERPRISE upsETraps
VARIABLES {
upsEBatteryEstimatedMinutesRemaining,
upsESystemConfigBelowRemainTimeLimit
}
DESCRIPTION
"SEVERE: The UPS batteries backup time is below the setting limit."
::= 125
upsENotBelowRemainTimeLimit TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: The UPS batteries backup time is not below the setting limit."
::= 126
upsELoadSegment1Off TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Load segment 1 is off."
::= 127
upsELoadSegment1On TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Load segment 1 is on."
::= 128
upsELoadSegment2Off TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"WARNING: Load segment 2 is off."
::= 129
upsELoadSegment2On TRAP-TYPE
ENTERPRISE upsETraps
DESCRIPTION
"INFORMATION: Load segment 2 is on."
::= 130
END
|