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
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
|
XUPS-MIB DEFINITIONS ::= BEGIN
IMPORTS
TimeTicks, Gauge32, Counter32, Integer32
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
sysName
FROM RFC1213-MIB
eaton, xupsEnvironment
FROM EATON-OIDS
-- Need to import these EMP objects to support PowerMIB-style traps for EMP
xupsContactIndex, xupsContactType, xupsContactState, xupsContactDescr,
xupsEnvRemoteTemp, xupsEnvRemoteTempLowerLimit, xupsEnvRemoteTempUpperLimit,
xupsEnvRemoteHumidity, xupsEnvRemoteHumidityLowerLimit,
xupsEnvRemoteHumidityUpperLimit
FROM EATON-EMP-MIB;
xupsMIB MODULE-IDENTITY
LAST-UPDATED "201909270000Z"
ORGANIZATION "Eaton Corporation"
CONTACT-INFO
"Eaton Power Quality Technical Support (PQTS) group
www.eaton.com/powerxpert
Technical Resource Center phone numbers
United States: 1.800.843.9433 or 919.870.3028
Canada: 1.800.461.9166 ext. 260
All other countries: Call your local service representative."
DESCRIPTION
"Defines Eaton's proprietary PowerMIB for UPS and
related device data.
Copyright (C) Exide Electronics 1992-98
Copyright (C) Powerware Corporation 1999-2004
Copyright (C) Eaton Corporation (2005-)."
REVISION "201909270000Z"
DESCRIPTION
"xupsOutputSource data can monitor the ESS mode."
REVISION "201909120000Z"
DESCRIPTION
"Provide new data that reflects some battery alarm : xupsBatteryFailure,
xupsBatteryNotPresent, xupsBatteryAged, xupsBatteryLowCapacity."
REVISION "201909100000Z"
DESCRIPTION
"Change the data xupsBatteryLastReplacedDate to read-only because the card
sets it automatically when the battery replacement is detected."
REVISION "201904120000Z"
DESCRIPTION
"Provide the status of the main AC Input in xupsInputStatus.
Provide the status of the AC Output in xupsOutputStatus and a new trap
and alarm 'load not protected' in xupsOutputNotProtected."
REVISION "201903050000Z"
DESCRIPTION
"Provide more UPS identification data as xupsIdentPartNumber and xupsIdentSerialNumber.
Provide a collection xupsAgent that contains identification data of the card :
xupsAgentManufacturer, xupsAgentModel, xupsAgentSoftwareVersion, xupsAgentPartNumber,
xupsAgentSerialNumber"
REVISION "201902190000Z"
DESCRIPTION
"To ensure consistency whith the measures done on the UPS, the data following are renamed :
xupsInputAverageCurrent to xupsInputTotalCurrent,
xupsOutputAverageCurrent to xupsOutputTotalCurrent,
xupsBypassAverageCurrent to xupsBypassTotalCurrent."
REVISION "201809120000Z"
DESCRIPTION
"Add new data xupsInputId, xupsInputName, xupsInputCurrentHighPrecision in the table xupsInputTable.
Add new sub collection xupsInputTotal with xupsInputAverageVoltage, xupsInputAverageCurrent,
xupsInputTotalWatts, xupsInputTotalVA, xupsInputAveragePowerFactor inside.
Add new data xupsOutputId, xupsOutputName, xupsOutputCurrentHighPrecision,
xupsOutputPercentLoad, xupsOutputVA in the table xupsOutputTable.
Add new sub collection xupsOutputTotal with xupsOutputAverageVoltage, xupsOutputAverageCurrent,
xupsOutputTotalWatts, xupsOutputTotalVA, xupsOutputAveragePowerFactor inside.
Add new data xupsBypassId, xupsBypassName, xupsBypassCurrentHighPrecision,
xupsBypassWatts in the table xupsBypassTable.
Add new sub collection xupsBypassTotal with xupsBypassTotalAverageVoltage, xupsBypassAverageCurrent,
xupsBypassTotalWatts, xupsBypassTotalVA, xupsBypassTotalAverageFactor inside."
REVISION "201804230000Z"
DESCRIPTION
"Add new data xupsTestTrap, xupstdTestTrap that will allow to initiate a
test trap sent out from the agent to the trap receivers."
REVISION "201211261513Z"
DESCRIPTION
"Add the identifier of measures xupsInputId, xupsOutputId and xupsBypassId,
respectively in the table xupsInputTable, xupsOutputTable and xupsBypassTable."
REVISION "201204030000Z"
DESCRIPTION
"Add new data xupsOutputHourlyPowerUsage, xupsOutputCumulativePowerUsage,
and xupsOutputCumulativePowerUsageTimer into the collection xupsOutput.
Add new data xupsRecepHourlyPowerUsage, xupsRecepCumulativePowerUsage,
and xupsRecepCumulativePowerUsageTimer into the collection xupsRecepTable."
REVISION "201102250000Z"
DESCRIPTION
"Add new data xupsSwitchable"
REVISION "200810020000Z"
DESCRIPTION
"Added new values of batteryDisconnected(6), batteryUnderTest(7),
and checkBattery(8) to xupsBatteryAbmStatus."
REVISION "200705030000Z"
DESCRIPTION
"Added new value of pxg(5) to xupsSendTrapType
for Power Xpert Gateway implementations."
REVISION "200703130000Z"
DESCRIPTION
"Initial SNMPv2-SMI-compliant Version of PowerMIB.
Incorporates all revisions of the original xups
MIB file through Version 3.13 21-May-04."
::= { eaton 1 }
-- xupsMIB { iso org(3) dod(6) internet(1) private(4)
-- enterprises(1) eaton(534) xupsMIB(1) }
xupsIdent OBJECT IDENTIFIER ::= { xupsMIB 1 }
xupsBattery OBJECT IDENTIFIER ::= { xupsMIB 2 }
xupsInput OBJECT IDENTIFIER ::= { xupsMIB 3 }
xupsOutput OBJECT IDENTIFIER ::= { xupsMIB 4 }
xupsBypass OBJECT IDENTIFIER ::= { xupsMIB 5 }
-- xupsEnvironment OBJECT IDENTIFIER ::= { xupsMIB 6 } - defined in EATON-OIDS
xupsAlarm OBJECT IDENTIFIER ::= { xupsMIB 7 }
xupsTest OBJECT IDENTIFIER ::= { xupsMIB 8 }
xupsControl OBJECT IDENTIFIER ::= { xupsMIB 9 }
xupsConfig OBJECT IDENTIFIER ::= { xupsMIB 10 }
xupsTrapControl OBJECT IDENTIFIER ::= { xupsMIB 11 }
xupsRecep OBJECT IDENTIFIER ::= { xupsMIB 12 }
xupsTopology OBJECT IDENTIFIER ::= { xupsMIB 13 }
xupsAgent OBJECT IDENTIFIER ::= { xupsMIB 14 }
xupsInputTotal OBJECT IDENTIFIER ::= { xupsInput 8 }
xupsOutputTotal OBJECT IDENTIFIER ::= { xupsOutput 9 }
xupsBypassTotal OBJECT IDENTIFIER ::= { xupsBypass 4 }
--
-- xupsIdent group:
--
xupsIdentManufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UPS Manufacturer Name (e.g. Eaton Corporation)."
::= { xupsIdent 1}
xupsIdentModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UPS Model (e.g. Powerware Plus Model 18)."
::= {xupsIdent 2}
xupsIdentSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware revision level(s) of the UPS microcontroller(s)."
::= {xupsIdent 3}
xupsIdentOemCode OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A binary code indicating who the UPS was manufactured or labeled for.
0 or 255 indicates Eaton itself."
::= {xupsIdent 4}
xupsIdentPartNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The catalog part number of the UPS device."
::= { xupsIdent 5 }
xupsIdentSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the UPS device."
::= { xupsIdent 6 }
--
-- xupsBattery group:
--
xupsBatTimeRemaining OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery run time in seconds before UPS turns off due
to low battery."
::= { xupsBattery 1}
xupsBatVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Volts DC"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery voltage as reported by the UPS meters."
::= {xupsBattery 2}
xupsBatCurrent OBJECT-TYPE
SYNTAX Integer32 (-2147483648..2147483647)
UNITS "Amps DC"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery Current as reported by the UPS metering.
Current is positive when discharging, negative
when recharging the battery."
::= {xupsBattery 3}
xupsBatCapacity OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery percent charge."
::= { xupsBattery 4}
xupsBatteryAbmStatus OBJECT-TYPE
SYNTAX INTEGER {
batteryCharging(1),
batteryDischarging(2),
batteryFloating(3),
batteryResting(4),
unknown(5),
batteryDisconnected(6),
batteryUnderTest(7),
checkBattery(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gives the status of the Advanced Battery Management and Battery state;
batteryFloating(3) status means that the charger is temporarily
charging the battery to its float voltage; batteryResting(4) is the
state when the battery is fully charged and none of the other actions
(charging/discharging/floating) is being done.
checkBattery(8) indicates that the Battery state is uncertain
following a poor battery test result."
::= { xupsBattery 5}
xupsBatteryLastReplacedDate OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date when the Batteries in this UPS were last replaced. Free text format,
so the preferred local date format may be used (MM/DD/YYYY, DD-Mon-YYYY, etc)."
::= { xupsBattery 6}
xupsBatteryFailure OBJECT-TYPE
SYNTAX INTEGER {
yes(1),
no(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if a battery fault detected or battery tests failed."
::= { xupsBattery 7}
xupsBatteryNotPresent OBJECT-TYPE
SYNTAX INTEGER {
yes(1),
no(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the UPS has no battery either internal or external."
::= { xupsBattery 8}
xupsBatteryAged OBJECT-TYPE
SYNTAX INTEGER {
yes(1),
no(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the battery is over aged."
::= { xupsBattery 9}
xupsBatteryLowCapacity OBJECT-TYPE
SYNTAX INTEGER {
yes(1),
no(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the battery capacity is below the threshold set in the UPS."
::= { xupsBattery 10}
--
-- xupsInput group:
--
xupsInputFrequency OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "0.1 Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The utility line frequency in tenths of Hz."
::= {xupsInput 1}
xupsInputLineBads OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of times the Input was out of tolerance
in voltage or frequency."
::= {xupsInput 2}
xupsInputNumPhases OBJECT-TYPE
SYNTAX Integer32 (0..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input phases (normally 1 to 3)."
::= {xupsInput 3}
xupsInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of input table entries. The number of entries
is given by the value of xupsInputNumPhases."
::= {xupsInput 4}
xupsInputEntry OBJECT-TYPE
SYNTAX XupsInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The input table entry containing the current,
voltage, etc. readings for one phase."
INDEX { xupsInputPhase }
::= { xupsInputTable 1 }
XupsInputEntry ::= SEQUENCE {
xupsInputPhase Integer32,
xupsInputVoltage Integer32,
xupsInputCurrent Integer32,
xupsInputWatts Integer32,
xupsInputId INTEGER,
xupsInputName OCTET STRING,
xupsInputCurrentHighPrecision Integer32
}
xupsInputPhase OBJECT-TYPE
SYNTAX Integer32 (0..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the phase. Serves as index for input table."
::= {xupsInputEntry 1}
xupsInputVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input voltage from the UPS meters in volts."
::= {xupsInputEntry 2}
xupsInputCurrent OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input current from the UPS meters in amps."
::= {xupsInputEntry 3}
xupsInputWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input real power in watts."
::= {xupsInputEntry 4}
xupsInputId OBJECT-TYPE
SYNTAX INTEGER {
phase1toN (1),
phase2toN (2),
phase3toN (3),
phase1to2 (4),
phase2to3 (5),
phase3to1 (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"value indicates what measurement is being stored in this table row :
phase1 to neutral, phase2 to neutral, phase3 to neutral,
phase1 to phase2, phase2 to phase3, phase3 to phase1."
::= { xupsInputEntry 5 }
xupsInputName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A descriptive name for the phase, example : L1/A for the phase 1."
::= { xupsInputEntry 6 }
xupsInputCurrentHighPrecision OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS tenth of Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input current from the UPS meters in tenth of amps."
::= {xupsInputEntry 7}
xupsInputSource OBJECT-TYPE
SYNTAX INTEGER {
other(1),
none(2),
primaryUtility(3),
bypassFeed(4),
secondaryUtility(5),
generator(6),
flywheel(7),
fuelcell(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present external source of input power. The enumeration
'none(2)' indicates that there is no external source of
power, for example, the UPS is On Battery (an internal source).
'primaryUtility' indicates the normal case of utility input power.
The 'bypassFeed' can only be used when the Bypass source is known
to be a separate utility feed than the primaryUtility(3).
'secondaryUtility' indicates that a secondary utility feed is supplying
power (on a dual AC input UPS).
'generator' indicates that input power is provided by a generator.
Note that the alternate energy sources of 'flywheel' and 'fuelcell' are
not necessarily AC input sources."
::= { xupsInput 5 }
-- xupsDualInputStatus and xupsSecondaryInputWatch would only be present
-- for UPSs with a secondary input source.
xupsDualInputStatus OBJECT-TYPE
SYNTAX INTEGER {
bothSourcesBad(1),
primarySourceGood(2),
secondarySourceGood(3),
bothSourcesGood(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present status of the sources of input power in a dual source UPS.
The enumeration primarySourceGood(2) indicates that the primary source
of power is present and within 'normal' ranges for voltage and
frequency, but the secondary source is either not present or not in an
acceptable range.
'secondarySourceGood' indicates that only the Secondary power feed is
available and within its limits.
The enumeration bothSourcesGood(4) indicates that both sources are present
and within their respective 'normal' ranges;
bothSourcesBad(1) indicates that neither source is present, or, if present,
is not within acceptable ranges.
This object will only be implemented for UPSs with two sources of input
power, e.g., redundant AC feeds or a separate Bypass or Generator source.
The secondary source will not be an AC power source in all cases."
::= { xupsInput 6 }
xupsSecondaryInputWatch OBJECT-TYPE
SYNTAX INTEGER {
disabled(1),
enabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object enables(2) or disables(1) the alarms and traps related to the
availability and use of the secondary input of a dual-input UPS
(i.e., OnAlternatePowerSource and AltPowerNotAvailable).
To avoid nuisance alarms and traps, this object should be set to
disabled(1) when the UPS is not wired to a secondary source of power.
This object will only be implemented for UPSs with two sources of input
power, i.e., redundant AC feeds or a separate Bypass or Generator source."
::= { xupsInput 7 }
--
-- xupsInputTotal group:
--
xupsInputAverageVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input voltage from the UPS meters in volts.
Related to the phase 1 if the UPS is single phase,
either it is average of all the simple phase voltage."
::= {xupsInputTotal 1}
xupsInputTotalCurrent OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS tenth of Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input current from the UPS meters in tenth of amps.
Related to the phase 1 if the UPS is single phase,
either it is average of all the simple phase current."
::= {xupsInputTotal 2}
xupsInputTotalWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input active power in watts.
Sum of all the simple phase watts."
::= {xupsInputTotal 3}
xupsInputTotalVA OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured input apparent power in VA.
Sum of all the simple phase VA."
::= {xupsInputTotal 4}
xupsInputAveragePowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total power factor of the input in hundredths.
0.92 would be returned as 92."
::= { xupsInputTotal 5 }
xupsInputStatus OBJECT-TYPE
SYNTAX INTEGER {
inputBad(1),
inputGood(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present status of the primary AC input of the UPS.
The enumeration inputGood(2) indicates that the primary source
of power is present and within 'normal' ranges for voltage and
frequency.
inputBad(1) indicates that neither source is present, or, if present,
is not within acceptable ranges."
::= { xupsInput 9 }
--
-- xupsOutput group:
--
xupsOutputLoad OBJECT-TYPE
SYNTAX Integer32 (0..200)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UPS output load in percent of rated capacity."
::= {xupsOutput 1}
xupsOutputFrequency OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "0.1 Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured UPS output frequency in tenths of Hz."
::= {xupsOutput 2}
xupsOutputNumPhases OBJECT-TYPE
SYNTAX Integer32 (0..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of metered output phases."
::= {xupsOutput 3}
xupsOutputTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsOutputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of output table entries. The number of entries
is given by the value of xupsOutputNumPhases."
::= {xupsOutput 4}
xupsOutputEntry OBJECT-TYPE
SYNTAX XupsOutputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Output Table Entry containing voltage, current, etc."
INDEX { xupsOutputPhase }
::= {xupsOutputTable 1}
XupsOutputEntry ::= SEQUENCE {
xupsOutputPhase Integer32,
xupsOutputVoltage Integer32,
xupsOutputCurrent Integer32,
xupsOutputWatts Integer32,
xupsOutputId INTEGER,
xupsOutputName OCTET STRING,
xupsOutputCurrentHighPrecision Integer32,
xupsOutputPercentLoad Integer32,
xupsOutputVA Integer32
}
xupsOutputPhase OBJECT-TYPE
SYNTAX Integer32 (0..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the phase. Serves as index for output table."
::= {xupsOutputEntry 1}
xupsOutputVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output voltage from the UPS metering in volts."
::= {xupsOutputEntry 2}
xupsOutputCurrent OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured UPS output current in amps."
::= {xupsOutputEntry 3}
xupsOutputWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured real output power in watts."
::= {xupsOutputEntry 4}
xupsOutputId OBJECT-TYPE
SYNTAX INTEGER {
phase1toN (1),
phase2toN (2),
phase3toN (3),
phase1to2 (4),
phase2to3 (5),
phase3to1 (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"value indicates what measurement is being stored in this table row :
phase1 to neutral, phase2 to neutral, phase3 to neutral,
phase1 to phase2, phase2 to phase3, phase3 to phase1. "
::= { xupsOutputEntry 5 }
xupsOutputName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A descriptive name for the phase."
::= { xupsOutputEntry 6 }
xupsOutputCurrentHighPrecision OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS tenth of Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output current from the UPS meters in tenth of amps."
::= {xupsOutputEntry 7}
xupsOutputPercentLoad OBJECT-TYPE
SYNTAX Integer32 (0..200)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the UPS power capacity presently
being used on this output line"
::= { xupsOutputEntry 8 }
xupsOutputVA OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured apparent output power in VA."
::= {xupsOutputEntry 9}
xupsOutputSource OBJECT-TYPE
SYNTAX INTEGER {
other(1),
none(2),
normal(3),
bypass(4),
battery(5),
booster(6),
reducer(7),
parallelCapacity(8),
parallelRedundant(9),
highEfficiencyMode(10),
maintenanceBypass(11),
essMode(12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present source of output power. The enumeration
none(2) indicates that there is no source of output
power (and therefore no output power), for example,
the system has opened the output breaker.
'normal', 'bypass', and 'battery' indicate those common UPS statuses.
'booster' and 'reducer' indicate boost or buck operation, for
line-interactive UPSs only.
'parallelCapacity' and 'parallelRedundant' indicate a normal parallel
UPS system, in either Parallel for Capacity or Redundancy configuration.
'highEfficiencyMode' is normal but enhanced by High Efficiency mode.
'maintenanceBypass' indicates that the UPS is in Maintenance/Manual
Bypass mode.
'essMode' is normal but enhanced by Energy Saver System.
'other' covers any other, unusual conditions."
::= { xupsOutput 5 }
xupsOutputHourlyPowerUsage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Wh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are Watt-hours.This is the energy consumed during the last hour."
::= { xupsOutput 6 }
xupsOutputCumulativePowerUsage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Wh"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units are Watt-hours.This is the energy consumed since the last reset.
This object is writable so that it can be reset to 0.
When it is written to 0, the xupsOutputCumulativeWhTimer will be reset to 0 as well."
::= { xupsOutput 7 }
xupsOutputCumulativePowerUsageTimer OBJECT-TYPE
SYNTAX Counter32
UNITS "Seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time in seconds since the cumulative power usage was last reset."
::= { xupsOutput 8 }
--
-- xupsOutputTotal group:
--
xupsOutputAverageVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output voltage from the UPS meters in volts.
Related to the phase 1 if the UPS is single phase,
either it is average of all the simple phase voltage."
::= {xupsOutputTotal 1}
xupsOutputTotalCurrent OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS tenth of Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output current from the UPS meters in tenth of amps.
Related to the phase 1 if the UPS is single phase,
either it is average of all the simple phase current."
::= {xupsOutputTotal 2}
xupsOutputTotalWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output active power in watts.
Sum of all the simple phase watts."
::= {xupsOutputTotal 3}
xupsOutputTotalVA OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output apparent power in VA.
Sum of all the simple phase VA."
::= {xupsOutputTotal 4}
xupsOutputAveragePowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total power factor of the output in hundredths.
0.92 would be returned as 92."
::= { xupsOutputTotal 5 }
xupsOutputStatus OBJECT-TYPE
SYNTAX INTEGER {
outputNotPowered(1),
outputNotProtected(2),
outputProtected(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present status of the AC output of the UPS.
The enumeration outputNotPowered(1) indicates that the output is not powered.
outputNotProtected(2) indicates that the output is powered but not protected,
due to following reasons : On bypass, battery fault, or UPS internal failure
that makes the ups will be inoperant in case of AC input failure.
outputProtected(3) indicates that the output is powered and protected."
::= { xupsOutput 10 }
--
-- xupsBypass group:
--
xupsBypassFrequency OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "0.1 Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bypass frequency in tenths of Hz."
::= {xupsBypass 1}
xupsBypassNumPhases OBJECT-TYPE
SYNTAX Integer32 (0..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of lines in the UPS bypass table."
::= {xupsBypass 2}
xupsBypassTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsBypassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of bypass table entries. The number of entries
is given by the value of xupsBypassNumPhases."
::= {xupsBypass 3}
xupsBypassEntry OBJECT-TYPE
SYNTAX XupsBypassEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Bypass Table Entry containing voltage for each phase."
INDEX { xupsBypassPhase }
::= {xupsBypassTable 1}
XupsBypassEntry ::= SEQUENCE {
xupsBypassPhase Integer32,
xupsBypassVoltage Integer32,
xupsBypassId INTEGER,
xupsBypassName OCTET STRING,
xupsBypassCurrentHighPrecision Integer32,
xupsBypassWatts Integer32
}
xupsBypassPhase OBJECT-TYPE
SYNTAX Integer32 (0..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Bypass Phase, index for the table."
::= {xupsBypassEntry 1}
xupsBypassVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured UPS bypass voltage in volts."
::= {xupsBypassEntry 2}
xupsBypassId OBJECT-TYPE
SYNTAX INTEGER {
phase1toN (1),
phase2toN (2),
phase3toN (3),
phase1to2 (4),
phase2to3 (5),
phase3to1 (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"value indicates what measurement is being stored in this table row :
phase1 to neutral, phase2 to neutral, phase3 to neutral,
phase1 to phase2, phase2 to phase3, phase3 to phase1. "
::= { xupsBypassEntry 3 }
xupsBypassName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A descriptive name for the phase."
::= { xupsBypassEntry 4 }
xupsBypassCurrentHighPrecision OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS tenth of Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured bypass current from the UPS meters in tenth of amps."
::= {xupsBypassEntry 5}
xupsBypassWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured real bypass power in watts."
::= {xupsBypassEntry 6}
--
-- xupsBypassTotal group:
--
xupsBypassAverageVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured bypass voltage from the UPS meters in volts.
Related to the phase 1 if the UPS is single phase,
either it is average of all the simple phase voltage."
::= {xupsBypassTotal 1}
xupsBypassTotalCurrent OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS tenth of Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured bypass current from the UPS meters in tenth of amps.
Related to the phase 1 if the UPS is single phase,
either it is average of all the simple phase current."
::= {xupsBypassTotal 2}
xupsBypassTotalWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured bypass active power in watts.
Sum of all the simple phase watts."
::= {xupsBypassTotal 3}
xupsBypassTotalVA OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The measured output apparent power in VA.
Sum of all the simple phase VA."
::= {xupsBypassTotal 4}
xupsBypassAveragePowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the total power factor of the input in hundredths.
0.92 would be returned as 92."
::= { xupsBypassTotal 5 }
--
-- xupsEnvironment group:
--
xupsEnvAmbientTemp OBJECT-TYPE
SYNTAX Integer32 (-100..200)
UNITS "degrees Centigrade"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reading of the ambient temperature in the vicinity of the
UPS or SNMP agent."
::= { xupsEnvironment 1 }
xupsEnvAmbientLowerLimit OBJECT-TYPE
SYNTAX Integer32 (-100..200)
UNITS "degrees Centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Lower Limit of the ambient temperature; if xupsEnvAmbientTemp
falls below this value, the xupsAmbientTempBad alarm will occur."
::= { xupsEnvironment 2 }
xupsEnvAmbientUpperLimit OBJECT-TYPE
SYNTAX Integer32 (-100..200)
UNITS "degrees Centigrade"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Upper Limit of the ambient temperature; if xupsEnvAmbientTemp
rises above this value, the xupsAmbientTempBad alarm will occur.
This value should be greater than xupsEnvAmbientLowerLimit."
::= { xupsEnvironment 3 }
xupsEnvAmbientHumidity OBJECT-TYPE
SYNTAX Integer32 (0..100)
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reading of the ambient humidity in the vicinity of the
UPS or SNMP agent."
::= { xupsEnvironment 4 }
--
-- Moved the EMP-based objects,
-- from xupsEnvRemoteTemp to xupsEnvRemoteHumidityUpperLimit
-- ( { xupsEnvironment 5 to 12 }, including xupsContactSenseTable,
-- to separate file Eaton-EMP-MIB.txt
--
--
-- xupsAlarm group:
--
xupsAlarms OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current number of alarm conditions."
::= {xupsAlarm 1}
xupsAlarmTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of alarm table entries. The number of entries
is given by the value of xupsAlarms.
Note that this table is sparsely (non-consecutively)
numbered and will be empty if there are no active alarms."
::= {xupsAlarm 2}
xupsAlarmEntry OBJECT-TYPE
SYNTAX XupsAlarmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Alarm Table Entry containing descriptive information
for one alarm entry."
INDEX { xupsAlarmID }
::= {xupsAlarmTable 1}
XupsAlarmEntry ::= SEQUENCE {
xupsAlarmID Integer32,
xupsAlarmDescr OBJECT IDENTIFIER,
xupsAlarmTime TimeTicks
}
xupsAlarmID OBJECT-TYPE
SYNTAX Integer32 (1..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique identifier for an alarm condition."
::= {xupsAlarmEntry 1}
xupsAlarmDescr OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A reference to an alarm description object. The object
referenced should not be accessible, but rather be used to
provide a unique description of the alarm condition."
::= {xupsAlarmEntry 2}
xupsAlarmTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the MIB-II variable sysUpTime when the alarm
condition occurred."
::= {xupsAlarmEntry 3}
--
-- Well known alarm conditions.
--
xupsOnBattery OBJECT IDENTIFIER ::= {xupsAlarm 3}
xupsLowBattery OBJECT IDENTIFIER ::= {xupsAlarm 4}
xupsUtilityPowerRestored OBJECT IDENTIFIER ::= {xupsAlarm 5}
xupsReturnFromLowBattery OBJECT IDENTIFIER ::= {xupsAlarm 6}
xupsOutputOverload OBJECT IDENTIFIER ::= {xupsAlarm 7}
xupsInternalFailure OBJECT IDENTIFIER ::= {xupsAlarm 8}
xupsBatteryDischarged OBJECT IDENTIFIER ::= {xupsAlarm 9}
xupsInverterFailure OBJECT IDENTIFIER ::= {xupsAlarm 10}
xupsOnBypass OBJECT IDENTIFIER ::= {xupsAlarm 11}
xupsBypassNotAvailable OBJECT IDENTIFIER ::= {xupsAlarm 12}
xupsOutputOff OBJECT IDENTIFIER ::= {xupsAlarm 13}
xupsInputFailure OBJECT IDENTIFIER ::= {xupsAlarm 14}
xupsBuildingAlarm OBJECT IDENTIFIER ::= {xupsAlarm 15}
xupsShutdownImminent OBJECT IDENTIFIER ::= {xupsAlarm 16}
xupsOnInverter OBJECT IDENTIFIER ::= {xupsAlarm 17}
xupsAlarmNumEvents OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in the UPS event history queue."
::= { xupsAlarm 18 }
xupsAlarmEventTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsAlarmEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of the UPS internal event history queue."
::= { xupsAlarm 19 }
xupsAlarmEventEntry OBJECT-TYPE
SYNTAX XupsAlarmEventEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"One of the entries in the UPS event history queue."
INDEX { xupsAlarmEventID }
::= { xupsAlarmEventTable 1 }
-- The first 4 vars in the xAEEntry have been deprecated, since they resulted in
-- a flood of difficult to interpret data. They have been replaced by the single
-- entry, xupsAlarmEventMsg, which gives a human-readable description of the event.
XupsAlarmEventEntry ::= SEQUENCE {
xupsAlarmEventID Integer32,
xupsAlarmEventDateAndTime DisplayString,
xupsAlarmEventKind INTEGER,
xupsAlarmEventDescr Integer32,
xupsAlarmEventMsg DisplayString
}
xupsAlarmEventID OBJECT-TYPE
SYNTAX Integer32 (1..400)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique number that reflects the order in which the event
occurred. The oldest event in the queue will be number 1.
Subsequent events will be numbered 2, 3, 4, etc."
::= { xupsAlarmEventEntry 1 }
xupsAlarmEventDateAndTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22))
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The time and date that an event occurred as recorded in the UPS
internal event queue. This string will reflect the time and
date as set in the UPS itself and will not be referenced to sysUpTime.
The format is MM/DD/YYYY:HH:MM:SS. Time is 24 hour standard."
::= { xupsAlarmEventEntry 2 }
xupsAlarmEventKind OBJECT-TYPE
SYNTAX INTEGER {
occurred (1),
cleared (2),
unknown (3)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Enumerated value that tells whether the event is an
occurrence of an alarm condition or a clearing of an
alarm condition."
::= { xupsAlarmEventEntry 3 }
xupsAlarmEventDescr OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"A description of the event stored in the UPS event queue.
This description will be a sixteen bit integer value
representing one of the defined alarms in the Powerware Binary
Computer Mode communication specification; for example,
a value of 0 represents the 'Inverter AC Over Voltage'
alarm (byte 1, bit 0 in the BCM Alarm Map)."
::= { xupsAlarmEventEntry 4 }
xupsAlarmEventMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A text string describing each entry in the Event Log. The format of this
text message is free (not fixed) for the operator to read; good contents
would be a time & date stamp, the event type, and a description of the event."
::= { xupsAlarmEventEntry 5 }
--
-- More Well known alarm conditions.
--
xupsBreakerOpen OBJECT IDENTIFIER ::= {xupsAlarm 20}
xupsAlarmEntryAdded OBJECT IDENTIFIER ::= {xupsAlarm 21}
xupsAlarmEntryRemoved OBJECT IDENTIFIER ::= {xupsAlarm 22}
-- Same as RFC 1628 Well Known Alarms:
xupsAlarmBatteryBad OBJECT IDENTIFIER ::= {xupsAlarm 23}
xupsOutputOffAsRequested OBJECT IDENTIFIER ::= {xupsAlarm 24}
xupsDiagnosticTestFailed OBJECT IDENTIFIER ::= {xupsAlarm 25}
xupsCommunicationsLost OBJECT IDENTIFIER ::= {xupsAlarm 26}
xupsUpsShutdownPending OBJECT IDENTIFIER ::= {xupsAlarm 27}
xupsAlarmTestInProgress OBJECT IDENTIFIER ::= {xupsAlarm 28}
-- Alarm for the Ambient Temperature, when outside of lo/hi limits
xupsAmbientTempBad OBJECT IDENTIFIER ::= {xupsAlarm 29}
-- For Loss of Redundancy in parallel systems
xupsLossOfRedundancy OBJECT IDENTIFIER ::= {xupsAlarm 30}
-- More Same as RFC 1628 Well Known Alarms:
xupsAlarmTempBad OBJECT IDENTIFIER ::= {xupsAlarm 31}
xupsAlarmChargerFailed OBJECT IDENTIFIER ::= {xupsAlarm 32}
xupsAlarmFanFailure OBJECT IDENTIFIER ::= {xupsAlarm 33}
xupsAlarmFuseFailure OBJECT IDENTIFIER ::= {xupsAlarm 34}
-- A Relay, Contactor, or Breaker has failed
xupsPowerSwitchBad OBJECT IDENTIFIER ::= {xupsAlarm 35}
-- One module in a parallel or composite system has failed
xupsModuleFailure OBJECT IDENTIFIER ::= {xupsAlarm 36}
-- Two Alarms for systems with an Alternate Power Source, such as
-- Secondary utility feed (on a dual AC input UPS), generator,
-- flywheel, or fuelcell. Enabled by xupsSecondaryInputWatch.
xupsOnAlternatePowerSource OBJECT IDENTIFIER ::= {xupsAlarm 37}
xupsAltPowerNotAvailable OBJECT IDENTIFIER ::= {xupsAlarm 38}
-- Some Notice condition exists which is not covered by the other WKA
-- (like an xupsInternalFailure, but at a lower level of urgency)
xupsNoticeCondition OBJECT IDENTIFIER ::= {xupsAlarm 39}
-- Alarms for the Remote Temperature & Humidity, when outside of lo/hi limits
xupsRemoteTempBad OBJECT IDENTIFIER ::= {xupsAlarm 40}
xupsRemoteHumidityBad OBJECT IDENTIFIER ::= {xupsAlarm 41}
-- Last of the RFC1628 Well Known Alarms:
xupsAlarmOutputBad OBJECT IDENTIFIER ::= {xupsAlarm 42}
xupsAlarmAwaitingPower OBJECT IDENTIFIER ::= {xupsAlarm 43}
-- Alarm for this important UPS mode
xupsOnMaintenanceBypass OBJECT IDENTIFIER ::= {xupsAlarm 44}
-- New alarms now managed by the Network-M2 card
xupsOutputNotProtected OBJECT IDENTIFIER ::= {xupsAlarm 51}
--
-- xupsTest group:
--
xupsTestStart OBJECT-TYPE
SYNTAX INTEGER {
testBattery (1),
noTestStarted (2),
testSystem (3),
testSecondarySource (4),
flashLightsTest (5),
cancelTest (6)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this object initiates the requested Test.
The test types which a UPS might support are 'testBattery',
'testSystem' (a UPS General Systems test, however defined by the UPS),
'testSecondarySource' (test if the Secondary power source is good on a
dual input UPS), and
'flashLightsTest' (start a test which flashes the UPS lights, and if
available, sounds the horn to help locate the UPS).
If a UPS does not support the requested test, the set operation may
succeed but the xupsTestBatteryStatus will end up as notSupported.
When read, this object indicates the last test requested via this object,
if any; 'noTestStarted' could be the initial value.
Currently only the 'flashLightsTest' can be canceled with 'cancelTest'."
::= {xupsTest 1}
xupsTestBatteryStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
passed (2),
failed (3),
inProgress (4),
notSupported (5),
inhibited (6),
scheduled (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reading this enumerated value gives an indication of the (last)
UPS Battery test status.
'inhibited' means that the battery test could not be run.
'scheduled' means that the battery test could not be run at the time
of request, but will be run at some later (UPS-determined) time."
::= {xupsTest 2}
xupsLastGeneralTest OBJECT-TYPE
SYNTAX INTEGER {
noTestStarted (2),
testSystem (3),
testSecondarySource (4),
flashLightsTest (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the last UPS test requested via xupsTestStart or by other
non-SNMP means, other than for the testBattery (1) case.
The results of the test indicated by this object are reported in
xupsLastGeneralTestResult."
::= {xupsTest 3}
xupsLastGeneralTestResult OBJECT-TYPE
SYNTAX INTEGER {
unknown (1),
passed (2),
failed (3),
inProgress (4),
notSupported (5),
inhibited (6),
scheduled (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reading this enumerated value gives the result of the test indicated
in xupsLastGeneralTest."
::= {xupsTest 4}
xupsTestTrap OBJECT-TYPE
SYNTAX INTEGER { startTestTrap (1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting startTestTrap to 1 will initiate a test trap
to be sent out from the agent. All other set values are invalid."
::= {xupsTest 5}
--
-- xupsControl group:
--
xupsControlOutputOffDelay OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this value to other than zero will cause the UPS
output to turn off after the number of seconds.
Setting it to 0 will cause an attempt to abort a pending
shutdown."
::= {xupsControl 1}
xupsControlOutputOnDelay OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this value to other than zero will cause the UPS
output to turn on after the number of seconds.
Setting it to 0 will cause an attempt to abort a pending
startup."
::= {xupsControl 2}
xupsControlOutputOffTrapDelay OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When xupsControlOutputOffDelay reaches this value, a trap will
be sent."
::= {xupsControl 3}
xupsControlOutputOnTrapDelay OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"When xupsControlOutputOnDelay reaches this value, a
xupsOutputOff trap will be sent."
::= {xupsControl 4}
xupsControlToBypassDelay OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this value to other than zero will cause the UPS
output to go to Bypass after the number of seconds.
If the Bypass is unavailable, this may cause the UPS
to not supply power to the load.
Setting it to 0 will cause an attempt to abort a pending
shutdown."
::= {xupsControl 5}
xupsLoadShedSecsWithRestart OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this value will cause the UPS output to turn off
after the set number of seconds, then restart (after a UPS-defined
'down time') when the utility is again available.
Unlike xupsControlOutputOffDelay, which might or might not,
this object always maps to the XCP 0x8A Load Dump & Restart command,
so the desired shutdown and restart behavior is guaranteed to happen.
Once set, this command cannot be aborted.
This is the preferred Control object to use when performing
an On Battery OS Shutdown."
::= {xupsControl 6}
xupsSwitchable OBJECT-TYPE
SYNTAX INTEGER {
switchable (1),
notSwitchable (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Parameter which indicates whether UPS commands received via any
communication path (aside from manual controls) are able (switchable)
or not able (notSwitchable) to control the UPS."
::= { xupsControl 7 }
--
-- xupsConfig group:
--
xupsConfigOutputVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal UPS Output voltage per phase in volts."
::= {xupsConfig 1}
xupsConfigInputVoltage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal UPS Input voltage per phase in volts."
::= {xupsConfig 2}
xupsConfigOutputWatts OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal UPS available real power output in watts."
::= {xupsConfig 3}
xupsConfigOutputFreq OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "0.1 Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal output frequency in tenths of Hz."
::= {xupsConfig 4}
xupsConfigDateAndTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Date and time information for the UPS. Setting this variable
will initiate a set UPS date and time to this value. Reading
this variable will return the UPS time and date. This value
is not referenced to sysUpTime. It is simply the clock value
from the UPS real time clock.
Format is as follows: MM/DD/YYYY:HH:MM:SS."
::= { xupsConfig 5 }
xupsConfigLowOutputVoltageLimit OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Lower limit for acceptable Output Voltage, per the UPS
specifications."
::= {xupsConfig 6}
xupsConfigHighOutputVoltageLimit OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "RMS Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Upper limit for acceptable Output Voltage, per the UPS
specifications."
::= {xupsConfig 7}
xupsConfigInstallDate OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The date when this UPS was installed. Free text format, so the
preferred local date format may be used (MM/DD/YYYY, DD-Mon-YYYY, etc)."
::= {xupsConfig 8}
--
-- xupsTrapControl group:
--
xupsMaxTrapLevel OBJECT-TYPE
SYNTAX INTEGER {
none (1),
critical (2),
major (3),
minor (4),
allTraps (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The level of severity of traps which will be sent to the
requesting host; individual trap receivers will have
individual values for this variable. Values are:
(1) none: no traps will be sent to this host;
(2) critical: only traps for Critical alarm conditions will
be sent to this host;
(3) major: Critical and Major traps will be sent;
(4) minor: All levels of alarming traps will be sent: Critical,
Major, and Minor
(This level was added in PowerMIB v3.11)
(5) allTraps: all Traps will be sent to this host
(Critical, Major, Minor, Informational)."
::= {xupsTrapControl 1}
xupsSendTrapType OBJECT-TYPE
SYNTAX INTEGER {
stnd (1),
xups (2),
stndPlus (3),
xupsPlus (4),
pxg (5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of traps which will be sent to the
requesting host; individual trap receivers will have
individual values for this variable. The additional
variables in types (3) and (4) are useful for determining
which UPS is the source on multi-port network adapters,
and for getting additional descriptive information.
Types (1) through (4) are all SNMP version 1 trap PDUs.
Values are:
(1) stnd: Traps as defined in the Standard UPS MIB (RFC1628)
and Generic (MIB II) traps as defined in RFC 1215.
(2) xups: xupsTrapDefined Traps as defined in the PowerMIB
and Generic (MIB II) traps as defined in RFC 1215.
(3 Deprecated) stndPlus: same as stnd plus variables from the interface
group and, where appropriate, xupsTrapMessage.
(4 Deprecated) xupsPlus: xupsTrapPortN Traps (same as xups plus
variables from the interface group) and,
for authFail, xupsTrapMessage.
(5 pxg: Traps as defined in the Power Xpert Gateway MIB
(PXG-MIB)."
::= {xupsTrapControl 2}
xupsTrapMessage OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..79))
MAX-ACCESS read-only -- actually not-accessible
STATUS current
DESCRIPTION
"A descriptive text message which may be sent with traps to
further explain the reason for the trap.
This object is not-accessible to MIB browsers, but had to be changed to
read-only to satisfy SMIv2 syntax checkers since it is included in traps."
::= {xupsTrapControl 3}
-- An Identifier for the PowerMIB traps
-- Used below in the section where the traps are defined
xupsTrapSource OBJECT IDENTIFIER ::= {xupsTrapControl 4}
xupsHeartbeatMinsInterval OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"How often to send the xupstdHeartbeat trap, in units of minutes.
A setting of 0 disables the Heartbeat function."
::= {xupsTrapControl 5}
--
-- xupsRecep group:
--
-- (Note that the terms Receptacle, Outlet, and Load Group are used interchangeably
-- here and all mean "one of a group of controllable, power-switched outputs")
--
xupsNumReceptacles OBJECT-TYPE
SYNTAX Integer32 (0..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of independently controllable Receptacles, as described in the
xupsRecepTable."
::= {xupsRecep 1}
xupsRecepTable OBJECT-TYPE
SYNTAX SEQUENCE OF XupsRecepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of receptacle table entries. The number of entries
is given by the value of xupsNumReceptacles."
::={xupsRecep 2}
xupsRecepEntry OBJECT-TYPE
SYNTAX XupsRecepEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A receptacle table entry containing the status and
control values for one receptacle."
INDEX { xupsRecepIndex }
::= { xupsRecepTable 1 }
XupsRecepEntry ::= SEQUENCE {
xupsRecepIndex Integer32,
xupsRecepStatus INTEGER,
xupsRecepOffDelaySecs Integer32,
xupsRecepOnDelaySecs Integer32,
xupsRecepAutoOffDelay Integer32,
xupsRecepAutoOnDelay Integer32,
xupsRecepShedSecsWithRestart Integer32,
xupsRecepHourlyPowerUsage Integer32,
xupsRecepCumulativePowerUsage Integer32,
xupsRecepCumulativePowerUsageTimer Counter32
}
xupsRecepIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of the Receptacle. Serves as index for Receptacle table."
::= {xupsRecepEntry 1}
xupsRecepStatus OBJECT-TYPE
SYNTAX INTEGER {
on(1), off(2), pendingOff(3), pendingOn(4), unknown(5),
reserved(6), failedClosed(7), failedOpen(8) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Recep Status 1=On/Close, 2=Off/Open, 3=On w/Pending Off,
4=Off w/Pending ON, 5=Unknown, 6=Reserved for future,
7=Failed in Closed position, 8=Failed in Open position."
::={xupsRecepEntry 2}
xupsRecepOffDelaySecs OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Delay until the Receptacle is turned Off. Setting
this value to other than -1 will cause the UPS output to
turn off after the number of seconds (0 is immediately).
Setting it to -1 will cause an attempt to abort a pending shutdown.
When this object is set while the UPS is On Battery, it is not necessary
to set xupsRecepOnDelaySecs, since the outlet will turn back on
automatically when power is available again."
::= {xupsRecepEntry 3}
xupsRecepOnDelaySecs OBJECT-TYPE
SYNTAX Integer32 (-1..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Delay until the Receptacle is turned On. Setting
this value to other than -1 will cause the UPS output to
turn on after the number of seconds (0 is immediately).
Setting it to -1 will cause an attempt to abort a pending restart."
::={xupsRecepEntry 4}
xupsRecepAutoOffDelay OBJECT-TYPE
SYNTAX Integer32 (-1..32767)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The delay after going On Battery until the Receptacle is
automatically turned Off. A value of -1 means that this Output should
never be turned Off automatically, but must be turned Off only by command.
Values from 0 to 30 are valid, but probably innappropriate.
The AutoOffDelay can be used to prioritize loads in the event of a prolonged
power outage; less critical loads will turn off earlier to extend battery
time for the more critical loads. If the utility power is restored before the
AutoOff delay counts down to 0 on an outlet, that outlet will not turn Off."
::= {xupsRecepEntry 5}
xupsRecepAutoOnDelay OBJECT-TYPE
SYNTAX Integer32 (-1..32767)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Seconds delay after the Outlet is signaled to turn On before the Output is
Automatically turned ON. A value of -1 means that this Output should never
be turned On automatically, but only when specifically commanded to do so.
A value of 0 means that the Receptacle should come On immediately
at power-up or for an On command."
::= {xupsRecepEntry 6}
-- xupsRecepAutoOnDelay has three purposes:
-- 1. To coordinate the automatic startup of various outlets, when the normal
-- auto-sequencing of 1 second per outlet is not adequate. For example, they may
-- be used to power up hard disk arrays before CPU units are started.
-- 2. To force additional 'Down Time' during xupsRecepOffDelaySecs commands, for
-- equipment to be reset, when the standard 'Down Time' is not long enough.
-- 3. For the -1 value, to ensure that loads won't be powered until commanded,
-- following power-up or a xupsRecepOffDelaySecs command.
xupsRecepShedSecsWithRestart OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Setting this value will cause the UPS output to turn off
after the set number of seconds, then restart (after a UPS-defined
'down time') when the utility is again available.
Unlike xupsRecepOffDelaySecs, which might or might not,
this object always maps to the XCP 0x8A Load Dump & Restart command,
so the desired shutdown and restart behavior is guaranteed to happen.
Once set, this command cannot be aborted."
::= {xupsRecepEntry 7}
xupsRecepHourlyPowerUsage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Wh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are Watt-hours.This is the energy consumed during the last hour."
::= { xupsRecepEntry 8 }
xupsRecepCumulativePowerUsage OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
UNITS "Wh"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units are Watt-hours.This is the energy consumed since the last reset.
This object is writable so that it can be reset to 0.
When it is written to 0, the xupsRecepCumulativePowerUsageTimer will be reset to 0 as well."
::= { xupsRecepEntry 9 }
xupsRecepCumulativePowerUsageTimer OBJECT-TYPE
SYNTAX Counter32
UNITS "Seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time in seconds since the cumulative power usage was last reset."
::= { xupsRecepEntry 10 }
--
-- xupsTopology group:
--
xupsTopologyType OBJECT-TYPE
SYNTAX Integer32 (0..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value which denotes the type of UPS by its power topology. Values are the
same as those described in the XCP Topology block's Overall Topology field."
::= {xupsTopology 1}
xupsTopoMachineCode OBJECT-TYPE
SYNTAX Integer32 (0..32767)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID Value which denotes the Powerware model of the UPS for software.
Values are the same as those described in the XCP Configuration
block's Machine Code field."
::= {xupsTopology 2}
xupsTopoUnitNumber OBJECT-TYPE
SYNTAX Integer32 (0..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies which unit and what type of data is being reported.
A value of 0 means that this MIB information comes from the top-level system
view (eg, manifold module or system bypass cabinet reporting total system
output). Standalone units also use a value of 0, since they are the 'full
system' view.
A value of 1 or higher indicates the number of the module in the system
which is reporting only its own data in the PowerMIB objects."
::= {xupsTopology 3}
xupsTopoPowerStrategy OBJECT-TYPE
SYNTAX INTEGER {
highAlert(1), standard(2), enableHighEfficiency(3),
immediateHighEfficiency(4) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Value which denotes which Power Strategy is currently set for the UPS.
The values are:
highAlert(1) - The UPS shall optimize its operating state to maximize its
power-protection levels. This mode will be held for at most 24 hours.
standard(2) - Balanced, normal power protection strategy. UPS will not enter
HE operating mode from this setting.
enableHighEfficiency(3) - The UPS is enabled to enter HE operating mode to
optimize its operating state to maximize its efficiency, when
conditions change to permit it (as determined by the UPS).
forceHighEfficiency(4) - If this value is permitted to be Set for this UPS,
and if conditions permit, requires the UPS to enter High Efficiency
mode now, without delay (for as long as utility conditions permit).
After successfully set to forceHighEfficiency(4),
xupsTopoPowerStrategy changes to value enableHighEfficiency(3).
xupsOutputSource will indicate if the UPS status is actually operating in
High Efficiency mode."
::= {xupsTopology 4}
--
-- xupsAgent group:
--
xupsAgentManufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card agent Manufacturer Name (e.g. Eaton Corporation)."
::= { xupsAgent 1}
xupsAgentModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card agent model"
::= {xupsAgent 2}
xupsAgentSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The agent firmware version."
::= {xupsAgent 3}
xupsAgentPartNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card agent catalog part number."
::= { xupsAgent 4 }
xupsAgentSerialNumber OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The card agent catalog serial number."
::= { xupsAgent 5 }
-- *************************************************************************
-- *************************************************************************
--
-- Traps (xupst)
--
-- 1) Eaton's traps have been defined in this MIB for three different sources.
-- The trap definitions for the three sources are very similar,
-- and use the same alarms as their triggers; their names are prefaced
-- by xupstb, xupstd, and xupstp to distinguish the three types
-- However, the products that the "Basic" and "Port Defined" trap types were
-- created for have been obsoleted, so the only trap types in active use
-- are the "Defined" (xupstd) traps listed below
-- The Obsolete types have been moved to file XUPS_Obsolete.mib
--
-- a) OBSOLETE - Basic Agents for which the trap variables have not been
-- defined, though trap variables are included with the trap PDU
-- xupsNull OBJECT IDENTIFIER ::= { xupsMIB 0 }
-- xupsTrapBasic OBJECT IDENTIFIER ::= { xupsNull 0 }
--
-- b) Agents with exactly Defined trap variables, which may be
-- used as input to trap response macros on management stations
-- This trap type is selected by setting xupsSendTrapType to xups(2)
xupsTrapDefined OBJECT IDENTIFIER ::= {xupsTrapSource 1}
-- Following the recommendations for coexistence between v1 traps
-- and v2 notifications, define the snmpTrapOID base with a 0
xupsTrapOidDefined OBJECT IDENTIFIER ::= { xupsTrapDefined 0 }
--
-- c) OBSOLETE - Agents with Defined traps including ifIndex and ifDescr,
-- which can be used to determine which UPS of a multi-port
-- agent (eg, Eaton Network SNMP Adapter) sent the trap
-- This trap type was selected by setting xupsSendTrapType to xupsPlus(4)
-- xupsTrapPortN OBJECT IDENTIFIER ::= {xupsTrapSource 2}
--
-- 2) Trap Severity Level is given as a comment to indicate which
-- xupsMaxTrapLevel will result in this trap being sent;
-- levels are (in order): Critical, Major, Minor, Informational
--
-- ****************************************************************************
-- ****************************************************************************
--
-- Traps from xupsTrapDefined source (xupstd):
--
xupstdControlOff NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS output power will turn off in a number of
seconds equal to upsControlOutputOffTrapDelay."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 1 }
xupstdControlOn NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS output power will turn on in a number of
seconds equal to upsControlOutputOnTrapDelay."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 2 }
xupstdOnBattery NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS has no AC input power and is running on
battery."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 3 }
xupstdLowBattery NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS batteries are low. Tied to low battery
alarm condition."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 4 }
xupstdUtilityPowerRestored NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"Input power has been restored after running on battery."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 5 }
xupstdReturnFromLowBattery NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The battery has recovered from a low battery condition."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 6 }
xupstdOutputOverload NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups has sensed an overload of greater than
106 percent. Tied to the 106% overload alarm."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 7 }
xupstdInternalFailure NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"Some component of the ups - rectifier, inverter,
control panel has failed. Tied to alarms indi-
cating failure."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 8 }
xupstdBatteryDischarged NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The Battery Totally Discharged Alarm has occurred."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 9 }
xupstdInverterFailure NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups inverter is unavailable or malfunctioning due to an internal failure."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 10 }
xupstdOnBypass NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups has gone on bypass for some reason."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 11 }
xupstdBypassNotAvailable NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups bypass is unavailable"
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 12 }
xupstdOutputOff NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups output is switched off."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 13 }
xupstdInputFailure NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups input power is incorrect in voltage,
frequency, or phase rotation."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 14 }
xupstdBuildingAlarm NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"One of the defined building alarms has occurred."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 15 }
xupstdShutdownImminent NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups shutdown imminent alarm has occurred."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 16 }
xupstdOnInverter NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups is returned to utility power running the inverter
after either a transfer to bypass or a run on battery."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 17 }
xupstdBreakerOpen NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"One of the UPS breakers or contactors has been opened."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 20 }
xupstdAlarmEntryAdded NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"An alarm not defined in the xups Well Known Alarms
(eg, an alarm defined in RFC1628)
has been added to the Alarm Table."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 21 }
xupstdAlarmEntryRemoved NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"An alarm not defined in the xups Well Known Alarms
has been removed from the Alarm Table."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 22 }
xupstdAlarmBatteryBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"One or more batteries have been determined to require replacement."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 23 }
xupstdOutputOffAsRequested NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS has shutdown as requested, i.e., the output is off."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 24 }
xupstdDiagnosticTestFailed NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The result of the last diagnostic test indicates a failure."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 25 }
xupstdCommunicationsLost NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"A problem has been encountered in the communications
between the agent and the UPS."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 26 }
xupstdUpsShutdownPending NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"An xupsControlOutputOffDelay countdown is underway."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 27 }
xupstdAlarmTestInProgress NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"A test is in progress, as initiated and indicated by the xupsTest Group.
When the test is complete, one of the following traps will be sent:
- xupstdDiagnosticTestFailed if the test fails,
- xupstdDiagnosticTestPassed on success, or
- xupstdAlarmEntryRemoved in other cases (e.g., Test Canceled)."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 28 }
-- Provide additional information with the AmbientTemp trap
xupstdAmbientTempBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage,
xupsEnvAmbientTemp, xupsEnvAmbientLowerLimit,
xupsEnvAmbientUpperLimit }
STATUS current
DESCRIPTION
"The ambient temperature, xupsEnvAmbientTemp, has fallen below
the set lower limit, xupsEnvAmbientLowerLimit, or has risen above
the set upper limit, xupsEnvAmbientUpperLimit."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 29 }
-- Added to support the ConnectUPS Web/SNMP card's ability to monitor contact(s)
xupstdContactActiveNotice NOTIFICATION-TYPE
OBJECTS { xupsContactIndex, xupsContactType, xupsContactState, xupsContactDescr }
STATUS current
DESCRIPTION
"The Contact indicated by xupsContactIndex is in its Active state.
The following are the situations that generate this trap:
For xupsContactType: and xupsContactState:
normallyOpen(1) and closedWithNotice(4)
normallyClosed(2) and openWithNotice(3)
anyChange(3) and openWithNotice(3) or closedWithNotice(4)"
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 30 }
xupstdContactInactiveNotice NOTIFICATION-TYPE
OBJECTS { xupsContactIndex, xupsContactType, xupsContactState, xupsContactDescr }
STATUS current
DESCRIPTION
"The Contact indicated by xupsContactIndex has changed to its Inactive state."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 31 }
xupstdLossOfRedundancy NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"A parallel UPS system is no longer operating in N+1 redundant mode;
this may be due to module failure or removal, or due to overloading."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 32 }
xupstdAlarmTempBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"An internal temperature is out of tolerance."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 33 }
xupstdAlarmChargerFailed NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"An uncorrected problem has been detected within the UPS charger subsystem."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 34 }
xupstdAlarmFanFailure NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The failure of one or more fans in the UPS has been detected."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 35 }
xupstdAlarmFuseFailure NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The failure of one or more fuses has been detected."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 36 }
xupstdPowerSwitchBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"A Relay, Contactor, or Breaker has failed."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 37 }
xupstdModuleFailure NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"One module in a parallel or composite system has failed."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 38 }
-- xupsInputSource added to this trap's var list
xupstdOnAlternatePowerSource NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage, xupsInputSource }
STATUS current
DESCRIPTION
"The system is being powered by its Alternate Power Source, such as a
Secondary utility feed (on a dual AC input UPS), generator, flywheel,
or fuel cell."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 39 }
xupstdAltPowerNotAvailable NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"On systems with a separate alternate power source (eg, dual AC inputs),
that alternate power source is currently not available. This could be
a problem if the primary power source (eg, utility) fails for a period
of time longer than that for which the internal batteries can supply power."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 40 }
xupstdNoticeCondition NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"Some Notice condition exists which is not covered by the other traps.
This is like an xupstdInternalFailure, but at a lower severity level."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 41 }
-- Added to provide additional information with the RemoteTemp and RemoteHumidity
xupstdRemoteTempBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage,
xupsEnvRemoteTemp, xupsEnvRemoteTempLowerLimit,
xupsEnvRemoteTempUpperLimit }
STATUS current
DESCRIPTION
"The remote temperature, xupsEnvRemoteTemp, has fallen below
the set lower limit, xupsEnvRemoteTempLowerLimit, or has risen above
the set upper limit, xupsEnvRemoteTempUpperLimit."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 42 }
xupstdRemoteHumidityBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage,
xupsEnvRemoteHumidity, xupsEnvRemoteHumidityLowerLimit,
xupsEnvRemoteHumidityUpperLimit }
STATUS current
DESCRIPTION
"The remote temperature, xupsEnvRemoteHumidity, has fallen below
the set lower limit, xupsEnvRemoteHumidityLowerLimit, or has risen above
the set upper limit, xupsEnvRemoteHumidityUpperLimit."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 43 }
xupstdHeartbeat NOTIFICATION-TYPE
OBJECTS { xupsInputSource, xupsOutputSource, xupsAlarms }
STATUS current
DESCRIPTION
"A periodic status trap message. It is sent at an interval
set by object xupsHeartbeatMinsInterval.
The included variables provide a brief statement of the UPS status."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 44 }
xupstdDiagnosticTestPassed NOTIFICATION-TYPE
OBJECTS { xupsTestBatteryStatus, xupsLastGeneralTest, xupsLastGeneralTestResult }
STATUS current
DESCRIPTION
"A diagnostic test just completed, and its result is Passed.
The included variables provide additional information on the test."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 45 }
xupstdOutputBad NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The output condition (other than OutputOverload) is out of tolerance."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 46 }
xupstdAwaitingPower NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS output is off and the UPS is awaiting the return of input power."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 47 }
xupstdOnMaintenanceBypass NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The UPS has been placed on Maintenance / Manual Bypass by an operator."
--#SEVERITY MAJOR
::= { xupsTrapOidDefined 48 }
xupstdCommEstablished NOTIFICATION-TYPE
OBJECTS { xupsIdentModel, xupsOutputSource }
STATUS current
DESCRIPTION
"This trap is sent when the SNMP agent first establishes a communication
link with the UPS.
The included variables provide identification and UPS status information."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 49 }
xupstdAgentDown NOTIFICATION-TYPE
-- OBJECTS { (none) }
STATUS current
DESCRIPTION
"This trap is sent when the SNMP agent is exiting or closing down gracefully.
This may be triggered by a signal from the OS to stop this process. In many
implementations, it will be followed quickly by a restart of this vital process."
--#SEVERITY MINOR
::= { xupsTrapOidDefined 50 }
-- New traps now managed by the Network-M2 card
xupstdOutputNotProtected NOTIFICATION-TYPE
OBJECTS { xupsAlarmID, xupsAlarmDescr, xupsTrapMessage }
STATUS current
DESCRIPTION
"The ups output is not protectet for any reason in the UPS."
--#SEVERITY CRITICAL
::= { xupsTrapOidDefined 51 }
xupstdTestTrap NOTIFICATION-TYPE
OBJECTS { sysName, xupsTrapMessage }
STATUS current
DESCRIPTION
"This trap is sent to the trap receivers to check proper reception of traps."
--#SEVERITY INFORMATIONAL
::= { xupsTrapOidDefined 100 }
--
-- Conformance-related definitions
-- (Defined mostly to satisfy the MIB checkers.)
--
xupsConformance OBJECT IDENTIFIER ::= { xupsMIB 100 }
xupsIdentFullGroup OBJECT-GROUP
OBJECTS { xupsIdentManufacturer, xupsIdentModel,
xupsIdentSoftwareVersion, xupsIdentOemCode,
xupsIdentPartNumber, xupsIdentSerialNumber }
STATUS current
DESCRIPTION
"The Full set of xupsIdent subgroup objects."
::= { xupsConformance 2 }
xupsBatteryFullGroup OBJECT-GROUP
OBJECTS { xupsBatTimeRemaining, xupsBatVoltage, xupsBatCurrent,
xupsBatCapacity, xupsBatteryAbmStatus, xupsBatteryLastReplacedDate,
xupsBatteryFailure, xupsBatteryNotPresent, xupsBatteryAged, xupsBatteryLowCapacity }
STATUS current
DESCRIPTION
"The Full set of xupsBattery subgroup objects."
::= { xupsConformance 3 }
xupsInputFullGroup OBJECT-GROUP
OBJECTS { xupsInputFrequency, xupsInputLineBads, xupsInputNumPhases,
xupsInputSource, xupsDualInputStatus, xupsSecondaryInputWatch, xupsInputStatus }
STATUS current
DESCRIPTION
"The Full set of xupsInput subgroup objects."
::= { xupsConformance 4 }
xupsInputTableFullGroup OBJECT-GROUP
OBJECTS { xupsInputPhase, xupsInputVoltage, xupsInputCurrent, xupsInputWatts,
xupsInputId, xupsInputName, xupsInputCurrentHighPrecision }
STATUS current
DESCRIPTION
"The Full set of xupsInputTable subgroup objects."
::= { xupsConformance 5 }
xupsOutputFullGroup OBJECT-GROUP
OBJECTS { xupsOutputLoad, xupsOutputFrequency, xupsOutputNumPhases, xupsOutputSource,
xupsOutputHourlyPowerUsage, xupsOutputCumulativePowerUsage, xupsOutputCumulativePowerUsageTimer, xupsOutputStatus }
STATUS current
DESCRIPTION
"The Full set of xupsOutput subgroup objects."
::= { xupsConformance 6 }
xupsOutputTableFullGroup OBJECT-GROUP
OBJECTS { xupsOutputPhase, xupsOutputVoltage, xupsOutputCurrent, xupsOutputWatts,
xupsOutputId, xupsOutputName, xupsOutputCurrentHighPrecision, xupsOutputPercentLoad, xupsOutputVA }
STATUS current
DESCRIPTION
"The Full set of xupsOutputTable subgroup objects."
::= { xupsConformance 7 }
xupsBypassFullGroup OBJECT-GROUP
OBJECTS { xupsBypassFrequency, xupsBypassNumPhases, xupsBypassPhase, xupsBypassVoltage }
STATUS current
DESCRIPTION
"The Full set of xupsBypass subgroup objects."
::= { xupsConformance 8 }
xupsEnvironmentFullGroup OBJECT-GROUP
OBJECTS { xupsEnvAmbientTemp, xupsEnvAmbientLowerLimit,
xupsEnvAmbientUpperLimit, xupsEnvAmbientHumidity }
STATUS current
DESCRIPTION
"The Full set of xupsEnvironment subgroup objects."
::= { xupsConformance 9 }
xupsAlarmFullGroup OBJECT-GROUP
OBJECTS { xupsAlarms, xupsAlarmID, xupsAlarmDescr, xupsAlarmTime }
STATUS current
DESCRIPTION
"The Full set of xupsAlarm subgroup objects."
::= { xupsConformance 10 }
xupsAlarmEventsFullGroup OBJECT-GROUP
OBJECTS { xupsAlarmNumEvents, xupsAlarmEventMsg }
STATUS current
DESCRIPTION
"The Full set of Alarm/Event history subgroup objects."
::= { xupsConformance 11 }
xupsTestFullGroup OBJECT-GROUP
OBJECTS { xupsTestStart, xupsTestBatteryStatus, xupsLastGeneralTest,
xupsLastGeneralTestResult, xupsTestTrap }
STATUS current
DESCRIPTION
"The Full set of xupsTest subgroup objects."
::= { xupsConformance 12 }
xupsControlFullGroup OBJECT-GROUP
OBJECTS { xupsControlOutputOffDelay, xupsControlOutputOnDelay,
xupsControlOutputOffTrapDelay, xupsControlToBypassDelay,
xupsLoadShedSecsWithRestart, xupsSwitchable }
STATUS current
DESCRIPTION
"The Full set of xupsControl subgroup objects."
::= { xupsConformance 13 }
xupsConfigFullGroup OBJECT-GROUP
OBJECTS { xupsConfigOutputVoltage, xupsConfigInputVoltage, xupsConfigOutputWatts,
xupsConfigOutputFreq, xupsConfigDateAndTime, xupsConfigLowOutputVoltageLimit,
xupsConfigHighOutputVoltageLimit, xupsConfigInstallDate }
STATUS current
DESCRIPTION
"The Full set of xupsConfig subgroup objects."
::= { xupsConformance 14 }
xupsTrapControlFullGroup OBJECT-GROUP
OBJECTS { xupsMaxTrapLevel, xupsSendTrapType, xupsTrapMessage,
xupsHeartbeatMinsInterval }
STATUS current
DESCRIPTION
"The Full set of xupsTrapControl subgroup objects."
::= { xupsConformance 15 }
xupsRecepFullGroup OBJECT-GROUP
OBJECTS { xupsNumReceptacles, xupsRecepIndex, xupsRecepStatus,
xupsRecepOffDelaySecs, xupsRecepOnDelaySecs,
xupsRecepAutoOffDelay, xupsRecepAutoOnDelay, xupsRecepShedSecsWithRestart,
xupsRecepHourlyPowerUsage, xupsRecepCumulativePowerUsage, xupsRecepCumulativePowerUsageTimer }
STATUS current
DESCRIPTION
"The Full set of xupsRecep subgroup objects."
::= { xupsConformance 16 }
xupsTopologyFullGroup OBJECT-GROUP
OBJECTS { xupsTopologyType, xupsTopoMachineCode,
xupsTopoUnitNumber, xupsTopoPowerStrategy }
STATUS current
DESCRIPTION
"The Full set of xupsTopology subgroup objects."
::= { xupsConformance 17 }
xupstdNotifyGroup NOTIFICATION-GROUP
NOTIFICATIONS { xupstdControlOff, xupstdControlOn, xupstdOnBattery, xupstdLowBattery,
xupstdUtilityPowerRestored, xupstdReturnFromLowBattery,
xupstdOutputOverload, xupstdInternalFailure, xupstdBatteryDischarged,
xupstdInverterFailure, xupstdOnBypass, xupstdBypassNotAvailable,
xupstdOutputOff, xupstdInputFailure, xupstdBuildingAlarm,
xupstdShutdownImminent, xupstdOnInverter, xupstdBreakerOpen,
xupstdAlarmEntryAdded, xupstdAlarmEntryRemoved, xupstdAlarmBatteryBad,
xupstdOutputOffAsRequested, xupstdDiagnosticTestFailed,
xupstdCommunicationsLost, xupstdUpsShutdownPending, xupstdAlarmTempBad,
xupstdAlarmTestInProgress, xupstdAmbientTempBad, xupstdLossOfRedundancy,
xupstdAlarmChargerFailed, xupstdAlarmFanFailure, xupstdAlarmFuseFailure,
xupstdPowerSwitchBad, xupstdModuleFailure, xupstdOnAlternatePowerSource,
xupstdAltPowerNotAvailable, xupstdNoticeCondition, xupstdHeartbeat,
xupstdDiagnosticTestPassed, xupstdOutputBad, xupstdAwaitingPower,
xupstdOnMaintenanceBypass, xupstdCommEstablished, xupstdAgentDown,
xupstdOutputNotProtected, xupstdTestTrap }
STATUS current
DESCRIPTION
"The Alarm and Event notifications from the xupsTrapDefined source (xupstd)."
::= { xupsConformance 18 }
xupstdEMPNotifyGroup NOTIFICATION-GROUP
NOTIFICATIONS { xupstdContactActiveNotice, xupstdContactInactiveNotice,
xupstdRemoteTempBad, xupstdRemoteHumidityBad }
STATUS current
DESCRIPTION
"The EMP's Alarm and Event notifications from the xupsTrapDefined source (xupstd)."
::= { xupsConformance 19 }
xupsMibFullCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"A compliance statement for all of everything in this MIB."
MODULE -- this module
MANDATORY-GROUPS { xupsIdentFullGroup, xupsBatteryFullGroup, xupsInputFullGroup,
xupsInputTableFullGroup, xupsOutputFullGroup, xupsOutputTableFullGroup,
xupsBypassFullGroup, xupsEnvironmentFullGroup, xupsAlarmFullGroup,
xupsAlarmEventsFullGroup, xupsTestFullGroup, xupsControlFullGroup,
xupsConfigFullGroup, xupsTrapControlFullGroup, xupsRecepFullGroup,
xupsTopologyFullGroup, xupstdNotifyGroup, xupstdEMPNotifyGroup,
xupsBypassTableFullGroup, xupsInputTotalFullGroup, xupsOutputTotalFullGroup,
xupsBypassTotalFullGroup }
::= { xupsConformance 20 }
xupsDeprecatedGroup OBJECT-GROUP
OBJECTS { xupsAlarmEventDateAndTime, xupsAlarmEventKind,
xupsAlarmEventDescr, xupsControlOutputOnTrapDelay }
STATUS deprecated
DESCRIPTION
"Contains objects which are now deprecated."
::= { xupsConformance 21 }
xupsBypassTableFullGroup OBJECT-GROUP
OBJECTS { xupsBypassId, xupsBypassName, xupsBypassCurrentHighPrecision, xupsBypassWatts }
STATUS current
DESCRIPTION
"The Full set of xupsBypassTable subgroup objects."
::= { xupsConformance 22 }
xupsInputTotalFullGroup OBJECT-GROUP
OBJECTS { xupsInputAverageVoltage, xupsInputTotalCurrent, xupsInputTotalWatts,
xupsInputTotalVA, xupsInputAveragePowerFactor }
STATUS current
DESCRIPTION
"The Full set of xupsInputTotal subgroup objects."
::= { xupsConformance 23 }
xupsOutputTotalFullGroup OBJECT-GROUP
OBJECTS { xupsOutputAverageVoltage, xupsOutputTotalCurrent, xupsOutputTotalWatts,
xupsOutputTotalVA, xupsOutputAveragePowerFactor }
STATUS current
DESCRIPTION
"The Full set of xupsOutputTotal subgroup objects."
::= { xupsConformance 24 }
xupsBypassTotalFullGroup OBJECT-GROUP
OBJECTS { xupsBypassAverageVoltage, xupsBypassTotalCurrent, xupsBypassTotalWatts,
xupsBypassTotalVA, xupsBypassAveragePowerFactor }
STATUS current
DESCRIPTION
"The Full set of xupsOutputTotal subgroup objects."
::= { xupsConformance 25 }
xupsAgentFullGroup OBJECT-GROUP
OBJECTS { xupsAgentManufacturer, xupsAgentModel,
xupsAgentSoftwareVersion, xupsAgentPartNumber, xupsAgentSerialNumber }
STATUS current
DESCRIPTION
"The Full set of xupsAgent subgroup objects."
::= { xupsConformance 26 }
END
|