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
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
|
EATON-EPDU-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY,
Counter32, Unsigned32, Integer32, enterprises
FROM SNMPv2-SMI
NOTIFICATION-GROUP, OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
TEXTUAL-CONVENTION, DateAndTime, DisplayString
FROM SNMPv2-TC
pduAgent
FROM EATON-OIDS;
-- The 3 assignments below are redundant with the one declared in the import file EATON-OIDS.txt
-- because of the compatibility with some SNMP host software that do not support manufacturer import files.
-- Take care not to diverge from the import file.
eaton OBJECT IDENTIFIER ::= { enterprises 534 }
products OBJECT IDENTIFIER ::= { eaton 6 }
pduAgent OBJECT IDENTIFIER ::= { products 6 }
eatonEpdu MODULE-IDENTITY
LAST-UPDATED "201805301500Z"
ORGANIZATION
"Eaton Corporation"
CONTACT-INFO
"www.eaton.com/epdu"
DESCRIPTION
"The MIB module for Eaton ePDUs (Enclosure Power Distribution Units)."
REVISION "201805301500Z"
DESCRIPTION
"- Add information about architecture of the ePDU.
- Add outlet automatic shutoff."
REVISION "201709111200Z"
DESCRIPTION
"- Add physical name for input, outlet and gang.
- Add friendly name for input.
- Add input identification for outlet.
- Add the nominal power for ePDU input.
- Add a new outlet type sdg300 (31)."
REVISION "201704201200Z"
DESCRIPTION
"Add color codes for each input and group. Color codes are decimal values."
REVISION "201502231200Z"
DESCRIPTION
"Fix compatibility with some SNMP host software by adding some assignments."
REVISION "201409291200Z"
DESCRIPTION
"Added outletControlSwitchable and outletControlShutoffDelay object."
REVISION "201312181200Z"
DESCRIPTION
"Added notifyStrappingStatus and strappingStatus object."
REVISION "201309021200Z"
DESCRIPTION
"- Add values for commInterface : ftp (4), xml (5)"
REVISION "201305291200Z"
DESCRIPTION
"- Edited values for outletType: removed nema51520(21); added nemaL715(29), rf203p277 (30)"
REVISION "201302211200Z"
DESCRIPTION
"- Added unit objects : unitType.
- Added input objects : inputCurrentCrestFactor, inputCurrentPercentLoad, inputPowerFactor, inputVAR, inputPlugType.
- Added gang objects : groupCurrentCrestFactor, groupCurrentPercentLoad, groupPowerFactor, groupVAR.
- Added outlet objects : outletCurrentCrestFactor, outletCurrentPercentLoad, outletPowerFactor, outletVAR."
REVISION "201111211200Z"
DESCRIPTION
"- Added notifyGroupBreakerStatus object.
- Renamed groupStatus object to groupBreakerStatus. This object had not yet
been implemented so there is no user impact.
- Updated descriptions for inputWhTimer, groupWhTimer, and outletWhTimer."
REVISION "201110241200Z"
DESCRIPTION
"- Added notifyBootUp object.
- Added outletType object.
- Updated description for all lower and upper thresholds to indicate that
a value of -1 indicates that it is not supported by a particular ePDU model.
- Updated descriptions for inputVA, inputWatts, groupVA, groupWatts, outletVA,
outletWatts to indicate that a value of -1 indicates that it is not
supported by a particular ePDU model.
- Added a note to unit, group, and outlet level control command objects
indicating that some products (mainly with part numbers that begin with IPV
or IPC) do not support delayed outlet control commands and will reply with
an error if a command value is written that is > 0.
- Corrected description for inputType.
- Added a UnixTimeStamp Textual Convention and changed the SYNTAX of
inputWhTimer, groupWhTimer, and outletWhTimer to use it.
- Updated the contact info to reference the ePDU website."
REVISION "201102071529Z"
DESCRIPTION
"Initial release."
::= { pduAgent 7 }
UnixTimeStamp ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Unix time stamp. Measured in seconds since January 1, 1970."
SYNTAX Counter32
-- eatonEpdu { iso org(3) dod(6) internet(1) private(4)
-- enterprises(1) eaton(534) products(6) pduAgent(6) (7) }
notifications OBJECT IDENTIFIER ::= { eatonEpdu 0 }
units OBJECT IDENTIFIER ::= { eatonEpdu 1 }
inputs OBJECT IDENTIFIER ::= { eatonEpdu 3 }
groups OBJECT IDENTIFIER ::= { eatonEpdu 5 }
outlets OBJECT IDENTIFIER ::= { eatonEpdu 6 }
environmental OBJECT IDENTIFIER ::= { eatonEpdu 7 }
conformance OBJECT IDENTIFIER ::= { eatonEpdu 25 }
objectGroups OBJECT IDENTIFIER ::= { conformance 5 }
notifyUserLogin NOTIFICATION-TYPE
OBJECTS { userName,
commInterface }
STATUS current
DESCRIPTION
"Sent whenever a user logs in."
::= { notifications 1 }
notifyUserLogout NOTIFICATION-TYPE
OBJECTS { userName,
commInterface }
STATUS current
DESCRIPTION
"Sent whenever a user logs out."
::= { notifications 2 }
notifyFailedLogin NOTIFICATION-TYPE
OBJECTS { userName,
commInterface }
STATUS current
DESCRIPTION
"Sent when someone attempts to log in and fails. On some models, may be
sent after three failed login attempts."
::= { notifications 3 }
notifyBootUp NOTIFICATION-TYPE
OBJECTS { strappingIndex }
STATUS current
DESCRIPTION
"Sent whenever an ePDU finishes booting up (hard or soft reboot)."
::= { notifications 4 }
notifyInputVoltageThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
inputIndex,
inputVoltageIndex,
inputVoltage,
inputVoltageThStatus }
STATUS current
DESCRIPTION
"Sent whenever an input voltage threshold status changes."
::= { notifications 11 }
notifyInputCurrentThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
inputIndex,
inputCurrentIndex,
inputCurrent,
inputCurrentThStatus }
STATUS current
DESCRIPTION
"Sent whenever an input current threshold status changes."
::= { notifications 12 }
notifyInputFrequencyStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
inputIndex,
inputFrequency,
inputFrequencyStatus }
STATUS current
DESCRIPTION
"Sent whenever the input frequency status changes."
::= { notifications 13 }
notifyGroupVoltageThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
groupIndex,
groupVoltage,
groupVoltageThStatus }
STATUS current
DESCRIPTION
"Sent whenever a group voltage threshold status changes."
::= { notifications 21 }
notifyGroupCurrentThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
groupIndex,
groupCurrent,
groupCurrentThStatus }
STATUS current
DESCRIPTION
"Sent whenever a group current threshold status changes."
::= { notifications 22 }
notifyGroupBreakerStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
groupIndex,
groupBreakerStatus }
STATUS current
DESCRIPTION
"Sent whenever a group status changes to indicate whether the circuit
breaker is on or off."
::= { notifications 23 }
notifyOutletVoltageThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
outletIndex,
outletVoltage,
outletVoltageThStatus }
STATUS current
DESCRIPTION
"Sent whenever an outlet voltage threshold status changes."
::= { notifications 31 }
notifyOutletCurrentThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
outletIndex,
outletCurrent,
outletCurrentThStatus }
STATUS current
DESCRIPTION
"Sent whenever an outlet current threshold status changes."
::= { notifications 32 }
notifyOutletControlStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
outletIndex,
outletControlStatus }
STATUS current
DESCRIPTION
"Sent whenever an outlet state On / Off changes."
::= { notifications 33 }
notifyTemperatureThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
temperatureIndex,
temperatureValue,
temperatureThStatus }
STATUS current
DESCRIPTION
"Sent whenever a temperature threshold status changes."
::= { notifications 41 }
notifyHumidityThStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
humidityIndex,
humidityValue,
humidityThStatus }
STATUS current
DESCRIPTION
"Sent whenever a humidity threshold status changes."
::= { notifications 42 }
notifyContactState NOTIFICATION-TYPE
OBJECTS { strappingIndex,
contactIndex,
contactState }
STATUS current
DESCRIPTION
"Sent whenever a contact sensor state changes."
::= { notifications 43 }
notifyProbeStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
temperatureIndex,
temperatureProbeStatus }
STATUS current
DESCRIPTION
"Sent whenever the environment probe status changes."
::= { notifications 44 }
notifyCommunicationStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
communicationStatus }
STATUS current
DESCRIPTION
"Sent whenever the PDU communication status changes."
::= { notifications 51 }
notifyInternalStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
internalStatus }
STATUS current
DESCRIPTION
"Sent whenever the PDU internal status changes."
::= { notifications 52 }
notifyTest NOTIFICATION-TYPE
STATUS current
DESCRIPTION
"Sent whenever the trap test feature is used by the communication card."
::= { notifications 53 }
notifyStrappingStatus NOTIFICATION-TYPE
OBJECTS { strappingIndex,
strappingStatus }
STATUS current
DESCRIPTION
"Sent whenever the strapping communication status changes."
::= { notifications 54 }
unitsPresent OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Each unit is identified by a Strapping Index. This object returns a comma-delimited list of the
Strapping Indexes of all units present in the strapping group. For example, if units 0, 1, 5,
and 7 are present, this value will be '0,1,5,7'. For units that do not support strapping,
a Strapping Index of '0' is assumed."
::= { units 1 }
unitTable OBJECT-TYPE
SYNTAX SEQUENCE OF UnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of units. In most cases this list will only contain one entry.
However, some units have a 'strapping' feature which allow units to be
daisy-chained together such that all of them can be accessed through
the SNMP interface of the master. If strapping is enabled, the
strapping indexes of the units that can be accessed will be listed in the
unitsPresent object."
::= { units 2 }
unitEntry OBJECT-TYPE
SYNTAX UnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a PDU."
INDEX { strappingIndex }
::= { unitTable 1 }
UnitEntry ::= SEQUENCE {
strappingIndex
Integer32,
productName
OCTET STRING,
partNumber
OCTET STRING,
serialNumber
OCTET STRING,
firmwareVersion
OCTET STRING,
unitName
OCTET STRING,
lcdControl
INTEGER,
clockValue
DateAndTime,
temperatureScale
INTEGER,
unitType
INTEGER,
systemType
INTEGER,
inputCount
Integer32,
groupCount
Integer32,
outletCount
Integer32,
temperatureCount
Integer32,
humidityCount
Integer32,
contactCount
Integer32,
communicationStatus
INTEGER,
internalStatus
INTEGER,
strappingStatus
INTEGER,
userName
OCTET STRING,
commInterface
INTEGER
}
strappingIndex OBJECT-TYPE
SYNTAX Integer32 (0..23)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"For units that support 'strapping' functionality, this will be a unique
value for each unit. If units do not support 'strapping', this will
always be '0'."
::= { unitEntry 1 }
productName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of the product."
::= { unitEntry 2 }
partNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Part number of the unit."
::= { unitEntry 3 }
serialNumber OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number of the unit."
::= { unitEntry 4 }
firmwareVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Firmware version."
::= { unitEntry 5 }
unitName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..63))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Descriptive name for the unit."
::= { unitEntry 6 }
lcdControl OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (0),
lcdScreenOff (1),
lcdKeyLock (2),
lcdScreenOffAndKeyLock (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Control the local LCD."
::= { unitEntry 7 }
clockValue OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clock value. This could be from either a real-time clock (in which case
it is likely writeable) or from a time server via NTP (probably read-only)."
::= { unitEntry 8 }
temperatureScale OBJECT-TYPE
SYNTAX INTEGER {
celsius (0),
fahrenheit (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Scale used to return temperature objects."
::= { unitEntry 9 }
unitType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
switched (1),
advancedMonitored (2),
managed (3),
monitored (4),
basic (5),
inlineMonitored (6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Technical capabilities of the PDU. Functionality is as follows:
Monitored (MI) - input and usually section/group monitoring.
Advanced Monitored (AM) - input, section/group, and outlet monitoring.
Switched (SW) - input and section/group monitoring, outlet switching.
Basic (BA) - no communication card.
Inline Monitored (IL) - input and usually one section/group monitoring."
::= { unitEntry 10 }
systemType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
g3ePDU (1),
g3HDePDU (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Architecture of the ePDU electronic."
::= { unitEntry 11 }
inputCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of inputs on this ePDU."
::= { unitEntry 20 }
groupCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of groups on this ePDU. Groups include breakers, outlet sections,
and user-defined groups."
::= { unitEntry 21 }
outletCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of outlets on this ePDU."
::= { unitEntry 22 }
temperatureCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max number of temperature measurements on this ePDU."
::= { unitEntry 23 }
humidityCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max number of humidity measurements on this ePDU."
::= { unitEntry 24 }
contactCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max number of contact sensors on this ePDU."
::= { unitEntry 25 }
communicationStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
communicationLost (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the internal communication with the PDU."
::= { unitEntry 30 }
internalStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
internalFailure (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the internal failure inside the PDU."
::= { unitEntry 31 }
strappingStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
communicationLost (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the external communication with a strapping unit."
::= { unitEntry 32 }
userName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..31))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Username used to log into the PDU."
::= { unitEntry 40 }
commInterface OBJECT-TYPE
SYNTAX INTEGER {
serial (0),
usb (1),
telnet (2),
web (3),
ftp (4),
xml (5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Communications interface used to log into the PDU."
::= { unitEntry 41 }
unitControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF UnitControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of units that have controllable outlets."
::= { units 3 }
unitControlEntry OBJECT-TYPE
SYNTAX UnitControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a PDU which has controllable outlets."
INDEX { strappingIndex }
::= { unitControlTable 1 }
UnitControlEntry ::= SEQUENCE {
unitControlOffCmd
Integer32,
unitControlOnCmd
Integer32
}
unitControlOffCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Unit-level outlet control command.
Once the command is issued, outlets will turn Off.
0-n : Time in seconds until the outlet Sequence Off command is issued
-1 : Cancel a pending unit-level Off command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { unitControlEntry 2 }
unitControlOnCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Unit-level outlet control command.
Once the command is issued, outlets will turn On according to their outletControlSequenceDelay value.
0-n : Time in seconds until the outlet Sequence On command is issued
-1 : Cancel a pending unit-level On command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { unitControlEntry 3 }
inputTable OBJECT-TYPE
SYNTAX SEQUENCE OF InputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"List of inputs to the PDU."
::= { inputs 1 }
inputEntry OBJECT-TYPE
SYNTAX InputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular input."
INDEX { strappingIndex,
inputIndex }
::= { inputTable 1 }
InputEntry ::= SEQUENCE {
inputIndex
Integer32,
inputType
INTEGER,
inputFrequency
Integer32,
inputFrequencyStatus
INTEGER,
inputVoltageCount
Integer32,
inputCurrentCount
Integer32,
inputPowerCount
Integer32,
inputPlugType
INTEGER,
inputFeedColor
Unsigned32,
inputFeedName
OCTET STRING
}
inputIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each input. Its value ranges from 1 to inputCount."
::= { inputEntry 1 }
inputType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
splitPhase (2),
threePhaseDelta (3),
threePhaseWye (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of input - single phase, split phase, three phase delta, or three
phase wye."
::= { inputEntry 2 }
inputFrequency OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are 0.1 Hz; divide by ten to get Hz."
::= { inputEntry 3 }
inputFrequencyStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
outOfRange (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured input frequency relative to the nominal frequency and the admitted tolerance."
::= { inputEntry 4 }
inputVoltageCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of input voltage measurements on this ePDU."
::= { inputEntry 5 }
inputCurrentCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of input current measurements on this ePDU."
::= { inputEntry 6 }
inputPowerCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of rows in the inputPowerTable."
::= { inputEntry 7 }
inputPlugType OBJECT-TYPE
SYNTAX INTEGER {
other1Phase (100),
other2Phase (200),
other3Phase (300),
iecC14Inlet (101),
iecC20Inlet (102),
iec316P6 (103),
iec332P6 (104),
iec360P6 (105),
iecC14Plug (106),
iecC20Plug (107),
nema515 (120),
nemaL515 (121),
nema520 (122),
nemaL520 (123),
nema615 (124),
nemaL615 (125),
nemaL530 (126),
nema620 (127),
nemaL620 (128),
nemaL630 (129),
cs8265 (130),
french (150),
schuko (151),
uk (152),
nemaL1420 (201),
nemaL1430 (202),
iec516P6 (301),
iec460P9 (302),
iec560P9 (303),
iec532P6 (304),
iec563P6 (306),
nemaL1520 (320),
nemaL2120 (321),
nemaL1530 (322),
nemaL2130 (323),
cs8365 (324),
nemaL2220 (325),
nemaL2230 (326),
bladeUps208V (350),
bladeUps400V (351)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies which plug is on the input."
::= { inputEntry 8 }
inputFeedColor OBJECT-TYPE
SYNTAX Unsigned32 (0..16777215)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Color code of the input feed."
::= { inputEntry 9 }
inputFeedName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A descriptive name for the input."
::= { inputEntry 10 }
inputVoltageTable OBJECT-TYPE
SYNTAX SEQUENCE OF InputVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of input voltage measurements. The number of entries
is given by inputVoltageCount."
::= { inputs 2 }
inputVoltageEntry OBJECT-TYPE
SYNTAX InputVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular input voltage measurement."
INDEX { strappingIndex,
inputIndex,
inputVoltageIndex }
::= { inputVoltageTable 1 }
InputVoltageEntry ::= SEQUENCE {
inputVoltageIndex
Integer32,
inputVoltageMeasType
INTEGER,
inputVoltage
Integer32,
inputVoltageThStatus
INTEGER,
inputVoltageThLowerWarning
Integer32,
inputVoltageThLowerCritical
Integer32,
inputVoltageThUpperWarning
Integer32,
inputVoltageThUpperCritical
Integer32
}
inputVoltageIndex OBJECT-TYPE
SYNTAX Integer32 (1..3)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each input voltage measurement. Its value ranges
from 1 to inputVoltageCount."
::= { inputVoltageEntry 1 }
inputVoltageMeasType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
phase1toN (2),
phase2toN (3),
phase3toN (4),
phase1to2 (5),
phase2to3 (6),
phase3to1 (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value indicates what input voltage is being measured in this table row - single phase
voltage, phase 1 to neutral, phase 2 to neutral, phase 3 to neutral, phase 1 to phase 2,
phase 2 to phase 3, or phase 3 to phase 1."
::= { inputVoltageEntry 2 }
inputVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input voltage measurement value. Units are millivolts."
::= { inputVoltageEntry 3 }
inputVoltageThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured input voltage relative to the configured thresholds."
::= { inputVoltageEntry 4 }
inputVoltageThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { inputVoltageEntry 5 }
inputVoltageThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { inputVoltageEntry 6 }
inputVoltageThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { inputVoltageEntry 7 }
inputVoltageThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { inputVoltageEntry 8 }
inputCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF InputCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of input current measurements. The number of entries
is given by inputCurrentCount."
::= { inputs 3 }
inputCurrentEntry OBJECT-TYPE
SYNTAX InputCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular input current measurement."
INDEX { strappingIndex,
inputIndex,
inputCurrentIndex }
::= { inputCurrentTable 1 }
InputCurrentEntry ::= SEQUENCE {
inputCurrentIndex
Integer32,
inputCurrentMeasType
INTEGER,
inputCurrentCapacity
Integer32,
inputCurrent
Integer32,
inputCurrentThStatus
INTEGER,
inputCurrentThLowerWarning
Integer32,
inputCurrentThLowerCritical
Integer32,
inputCurrentThUpperWarning
Integer32,
inputCurrentThUpperCritical
Integer32,
inputCurrentCrestFactor
Integer32,
inputCurrentPercentLoad
Integer32,
inputPhaseDesignator
DisplayString
}
inputCurrentIndex OBJECT-TYPE
SYNTAX Integer32 (1..4)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each input current measurement. Its value ranges
from 1 to inputCurrentCount."
::= { inputCurrentEntry 1 }
inputCurrentMeasType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
neutral (2),
phase1 (3),
phase2 (4),
phase3 (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Which input wire is being measured in this table row - single phase, neutral, phase 1,
phase 2, or phase 3."
::= { inputCurrentEntry 2 }
inputCurrentCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rated current capacity of the input. A negative value indicates that
the hardware current capacity is unknown. Units are milliamps."
::= { inputCurrentEntry 3 }
inputCurrent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input current measurement value. Units are milliamps."
::= { inputCurrentEntry 4 }
inputCurrentThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured input current relative to the configured thresholds."
::= { inputCurrentEntry 5 }
inputCurrentThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { inputCurrentEntry 6 }
inputCurrentThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { inputCurrentEntry 7 }
inputCurrentThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { inputCurrentEntry 8 }
inputCurrentThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { inputCurrentEntry 9 }
inputCurrentCrestFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current crest factor. Units are in milli, for example a crest factor of
1.414 will be returned as 1414. A negative value indicates
that this object is not available."
::= { inputCurrentEntry 10 }
inputCurrentPercentLoad OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current percent load, based on the rated current capacity. Units are
percentage, for example 80% will be returned as 80. A negative
value indicates that this object is not available."
::= { inputCurrentEntry 11 }
inputPhaseDesignator OBJECT-TYPE
SYNTAX DisplayString (SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alphanumeric physical name for the input."
::= { inputCurrentEntry 12 }
inputPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF InputPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of input power measurements. The number of entries
is given by inputPowerCount."
::= { inputs 4 }
inputPowerEntry OBJECT-TYPE
SYNTAX InputPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for an input power measurement."
INDEX { strappingIndex,
inputIndex,
inputPowerIndex }
::= { inputPowerTable 1 }
InputPowerEntry ::= SEQUENCE {
inputPowerIndex
Integer32,
inputPowerMeasType
INTEGER,
inputVA
Integer32,
inputWatts
Integer32,
inputWh
Unsigned32,
inputWhTimer
UnixTimeStamp,
inputPowerFactor
Integer32,
inputVAR
Integer32
}
inputPowerIndex OBJECT-TYPE
SYNTAX Integer32 (1..12)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each input power measurement. Its value ranges
from 1 to inputPowerCount."
::= { inputPowerEntry 1 }
inputPowerMeasType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
phase1 (1),
phase2 (2),
phase3 (3),
total (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value indicates what is being measured in this table row."
::= { inputPowerEntry 2 }
inputVA OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input VA value. Units are VA. A negative value indicates
that this object is not available."
::= { inputPowerEntry 3 }
inputWatts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input Watts value. Units are Watts. A negative value indicates
that this object is not available."
::= { inputPowerEntry 4 }
inputWh OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units are Watt-hours. This object is writable so that it can be reset to 0. When it is
written to, the inputWhTimer will be reset updated as well."
::= { inputPowerEntry 5 }
inputWhTimer OBJECT-TYPE
SYNTAX UnixTimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp of when input Watt-hours (inputWh) was last reset."
::= { inputPowerEntry 6 }
inputPowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input PF value. Units are in thousandths, for example a power factor
of 0.958 would be returned as 958, and 0.92 would be returned
as 920. A negative value indicates that this object is not
available."
::= { inputPowerEntry 7 }
inputVAR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { inputPowerEntry 8 }
inputTotalPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF InputTotalPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of total input power measurements."
::= { inputs 5 }
inputTotalPowerEntry OBJECT-TYPE
SYNTAX InputTotalPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a total input power measurement."
INDEX { strappingIndex,
inputIndex }
::= { inputTotalPowerTable 1 }
InputTotalPowerEntry ::= SEQUENCE {
inputTotalVA
Integer32,
inputTotalWatts
Integer32,
inputTotalWh
Unsigned32,
inputTotalWhTimer
UnixTimeStamp,
inputTotalPowerFactor
Integer32,
inputTotalVAR
Integer32,
inputPowerCapacity
Integer32
}
inputTotalVA OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input VA value. Units are VA. A negative value indicates
that this object is not available."
::= { inputTotalPowerEntry 3 }
inputTotalWatts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input Watts value. Units are Watts. A negative value indicates
that this object is not available."
::= { inputTotalPowerEntry 4 }
inputTotalWh OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units are Watt-hours. This object is writable so that it can be reset to 0. When it is
written to, the inputWhTimer will be reset updated as well."
::= { inputTotalPowerEntry 5 }
inputTotalWhTimer OBJECT-TYPE
SYNTAX UnixTimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp of when input Watt-hours (inputWh) was last reset."
::= { inputTotalPowerEntry 6 }
inputTotalPowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input PF value. Units are in thousandths, for example a power factor
of 0.958 would be returned as 958, and 0.92 would be returned
as 920. A negative value indicates that this object is not
available."
::= { inputTotalPowerEntry 7 }
inputTotalVAR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An input VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { inputTotalPowerEntry 8 }
inputPowerCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Typical power capacity of the input. A negative value indicates that
the hardware current capacity is unknown."
::= { inputTotalPowerEntry 9 }
groupTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of groups. The number of entries is given by groupCount."
::= { groups 1 }
groupEntry OBJECT-TYPE
SYNTAX GroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular group."
INDEX { strappingIndex,
groupIndex }
::= { groupTable 1 }
GroupEntry ::= SEQUENCE {
groupIndex
Integer32,
groupID
DisplayString,
groupName
OCTET STRING,
groupType
INTEGER,
groupBreakerStatus
INTEGER,
groupChildCount
Integer32,
groupColor
Unsigned32,
groupDesignator
DisplayString,
groupInputIndex
Integer32
}
groupIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each group. Its value ranges from 1 to groupCount."
::= { groupEntry 1 }
groupID OBJECT-TYPE
SYNTAX DisplayString (SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alphanumeric designator for the group. This value may be written
on the face of the unit."
::= { groupEntry 2 }
groupName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A descriptive name for the group."
::= { groupEntry 3 }
groupType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
breaker1pole (1),
breaker2pole (2),
breaker3pole (3),
outletSection (4),
userDefined (5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the group."
::= { groupEntry 4 }
groupBreakerStatus OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (0),
breakerOn (1),
breakerOff (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Only applicable to breaker-groups. Indicates whether a breaker is turned
off or on."
::= { groupEntry 5 }
groupChildCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of children for this group."
::= { groupEntry 6 }
groupColor OBJECT-TYPE
SYNTAX Unsigned32 (0..16777215)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Background color code of the group. Color codes are decimal values."
::= { groupEntry 7 }
groupDesignator OBJECT-TYPE
SYNTAX DisplayString (SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alphanumeric physical name for the group. This value may be written
on the face of the unit."
::= { groupEntry 8 }
groupInputIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies the input on which the group is connected."
::= { groupEntry 9 }
groupChildTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupChildEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of children for this group. For example, this table will link
to all of the outlets that are contained in a particular group."
::= { groups 2 }
groupChildEntry OBJECT-TYPE
SYNTAX GroupChildEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular child."
INDEX { strappingIndex,
groupIndex,
groupChildIndex }
::= { groupChildTable 1 }
GroupChildEntry ::= SEQUENCE {
groupChildIndex
Integer32,
groupChildType
INTEGER,
groupChildOID
OBJECT IDENTIFIER
}
groupChildIndex OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each child. Its value ranges from 1 to groupChildCount."
::= { groupChildEntry 1 }
groupChildType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
section (2),
custom (3),
outlet (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the child."
::= { groupChildEntry 2 }
groupChildOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Object ID of a child object."
::= { groupChildEntry 3 }
groupVoltageTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of group voltage measurements. There can be only one voltage
measurement for each group."
::= { groups 3 }
groupVoltageEntry OBJECT-TYPE
SYNTAX GroupVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a group voltage measurement."
INDEX { strappingIndex,
groupIndex }
::= { groupVoltageTable 1 }
GroupVoltageEntry ::= SEQUENCE {
groupVoltageMeasType
INTEGER,
groupVoltage
Integer32,
groupVoltageThStatus
INTEGER,
groupVoltageThLowerWarning
Integer32,
groupVoltageThLowerCritical
Integer32,
groupVoltageThUpperWarning
Integer32,
groupVoltageThUpperCritical
Integer32
}
groupVoltageMeasType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
singlePhase (1),
phase1toN (2),
phase2toN (3),
phase3toN (4),
phase1to2 (5),
phase2to3 (6),
phase3to1 (7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value indicates what voltage is being measured in this table row."
::= { groupVoltageEntry 2 }
groupVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are millivolts."
::= { groupVoltageEntry 3 }
groupVoltageThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured group voltage relative to the configured thresholds."
::= { groupVoltageEntry 4 }
groupVoltageThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { groupVoltageEntry 5 }
groupVoltageThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { groupVoltageEntry 6 }
groupVoltageThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { groupVoltageEntry 7 }
groupVoltageThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { groupVoltageEntry 8 }
groupCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of group current measurements. There can be only one current
measurement for each group."
::= { groups 4 }
groupCurrentEntry OBJECT-TYPE
SYNTAX GroupCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a group current measurement."
INDEX { strappingIndex,
groupIndex }
::= { groupCurrentTable 1 }
GroupCurrentEntry ::= SEQUENCE {
groupCurrentCapacity
Integer32,
groupCurrent
Integer32,
groupCurrentThStatus
INTEGER,
groupCurrentThLowerWarning
Integer32,
groupCurrentThLowerCritical
Integer32,
groupCurrentThUpperWarning
Integer32,
groupCurrentThUpperCritical
Integer32,
groupCurrentCrestFactor
Integer32,
groupCurrentPercentLoad
Integer32
}
groupCurrentCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rated current capacity of the group. Units are milliamps. A negative
value indicates that the hardware current capacity is unknown (it
will always be unknown for custom groups)."
::= { groupCurrentEntry 2 }
groupCurrent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A group current measurement value. Units are milliamps."
::= { groupCurrentEntry 3 }
groupCurrentThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured group current relative to the configured thresholds."
::= { groupCurrentEntry 4 }
groupCurrentThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { groupCurrentEntry 5 }
groupCurrentThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { groupCurrentEntry 6 }
groupCurrentThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { groupCurrentEntry 7 }
groupCurrentThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { groupCurrentEntry 8 }
groupCurrentCrestFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current crest factor. Units are in milli, for example a crest factor of
1.414 will be returned as 1414. A negative value indicates
that this object is not available."
::= { groupCurrentEntry 9 }
groupCurrentPercentLoad OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current percent load, based on the rated current capacity. Units are
percentage, for example 80% will be returned as 80. A negative
value indicates that this object is not available."
::= { groupCurrentEntry 10 }
groupPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of group power measurements. There can be only one power
measurement for each group."
::= { groups 5 }
groupPowerEntry OBJECT-TYPE
SYNTAX GroupPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a group power measurement."
INDEX { strappingIndex,
groupIndex }
::= { groupPowerTable 1 }
GroupPowerEntry ::= SEQUENCE {
groupVA
Integer32,
groupWatts
Integer32,
groupWh
Unsigned32,
groupWhTimer
UnixTimeStamp,
groupPowerFactor
Integer32,
groupVAR
Integer32
}
groupVA OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A group VA value. Units are VA. A negative value indicates
that this object is not available."
::= { groupPowerEntry 2 }
groupWatts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A group Watts value. Units are Watts. A negative value indicates
that this object is not available."
::= { groupPowerEntry 3 }
groupWh OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units are Watt-hours. This object is writable so that it can be reset to 0. When it is
written to, the inputWhTotalTimer will be reset to 0 as well."
::= { groupPowerEntry 4 }
groupWhTimer OBJECT-TYPE
SYNTAX UnixTimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp of when group Watt-hours (groupWh) was last reset."
::= { groupPowerEntry 5 }
groupPowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A group PF value. Units are in thousandths, for example a power factor
of 0.958 would be returned as 958, and 0.92 would be returned
as 920. A negative value indicates that this object is not available."
::= { groupPowerEntry 6 }
groupVAR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A group VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { groupPowerEntry 7 }
groupControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF GroupControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of controllable groups."
::= { groups 6 }
groupControlEntry OBJECT-TYPE
SYNTAX GroupControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a controllable group."
INDEX { strappingIndex,
groupIndex }
::= { groupControlTable 1 }
GroupControlEntry ::= SEQUENCE {
groupControlStatus
INTEGER,
groupControlOffCmd
Integer32,
groupControlOnCmd
Integer32,
groupControlRebootCmd
Integer32
}
groupControlStatus OBJECT-TYPE
SYNTAX INTEGER {
off (0),
on (1),
rebooting (2),
mixed (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of a controlled group. A value of 'mixed' means that
that the outlets within the group have differing states."
::= { groupControlEntry 2 }
groupControlOffCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Group-level outlet control command.
Once the command is issued, the outlets in the group will turn Off immediately.
0-n : Time in seconds until the group command is issued
-1 : Cancel a pending group-level Off command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { groupControlEntry 3 }
groupControlOnCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Group-level outlet control command.
Once the command is issued, the outlets in the group will turn On immediately.
0-n : Time in seconds until the group command is issued
-1 : Cancel a pending group-level On command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { groupControlEntry 4 }
groupControlRebootCmd OBJECT-TYPE
SYNTAX Integer32 (-1..0)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Group-level outlet control command.
For outlets that are On prior to the Reboot command, they will switch Off immediately when the command is
issued, remain Off for outletControlRebootOffTime seconds, and then turn back On.
For outlets that are Off prior to the Reboot command, they will turn On after a delay of outletControlRebootOffTime
seconds from when the command is issued.
0-n : Time in seconds until the Reboot command is issued
-1 : Cancel a pending group-level Reboot command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { groupControlEntry 5 }
outletTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of outlets. The number of entries is given by outletCount."
::= { outlets 1 }
outletEntry OBJECT-TYPE
SYNTAX OutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular outlet."
INDEX { strappingIndex,
outletIndex }
::= { outletTable 1 }
OutletEntry ::= SEQUENCE {
outletIndex
Integer32,
outletID
DisplayString,
outletName
OCTET STRING,
outletParentCount
Integer32,
outletType
INTEGER,
outletDesignator
DisplayString,
outletPhaseID
INTEGER
}
outletIndex OBJECT-TYPE
SYNTAX Integer32 (1..64)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each outlet. its value ranges from 1 to outletCount."
::= { outletEntry 1 }
outletID OBJECT-TYPE
SYNTAX DisplayString (SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alphanumeric designator for the outlet."
::= { outletEntry 2 }
outletName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A descriptive name for the outlet."
::= { outletEntry 3 }
outletParentCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of parents for this outlet."
::= { outletEntry 4 }
outletType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
iecC13 (1),
iecC19 (2),
uk (10),
french (11),
schuko (12),
nema515 (20),
nema51520 (21),
nema520 (22),
nemaL520 (23),
nemaL530 (24),
nema615 (25),
nema620 (26),
nemaL620 (27),
nemaL630 (28),
nemaL715 (29),
rf203p277 (30),
sdg300 (31)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical type of outlet."
::= { outletEntry 5 }
outletDesignator OBJECT-TYPE
SYNTAX DisplayString (SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Alphanumeric physical name for the outlet."
::= { outletEntry 6 }
outletPhaseID OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
phase1toN (2),
phase2toN (3),
phase3toN (4),
phase1to2 (5),
phase2to3 (6),
phase3to1 (7),
phase12N (8),
phase23N (9),
phase31N (10),
phase123 (11),
phase123N (12)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Value indicates which phases are connected to each outlet in this table row - single phase
voltage, phase 1 to neutral, phase 2 to neutral, phase 3 to neutral, phase 1 to phase 2,
phase 2 to phase 3, phase 3 to phase 1, split-phase with phases 1 and 2, split phase
with phases 2 and 3, split phase with phases 3 and 1, three-phase delta, and three-phase wye."
::= { outletEntry 7 }
outletParentTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletParentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of parents for this outlet. For example, this table will link
to all of the groups that have this outlet as a child."
::= { outlets 2 }
outletParentEntry OBJECT-TYPE
SYNTAX OutletParentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a particular parent."
INDEX { strappingIndex,
outletIndex,
outletParentIndex }
::= { outletParentTable 1 }
OutletParentEntry ::= SEQUENCE {
outletParentIndex
Integer32,
outletParentType
INTEGER,
outletParentOID
OBJECT IDENTIFIER
}
outletParentIndex OBJECT-TYPE
SYNTAX Integer32 (1..32)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A unique value for each parent. Its value ranges from 1 to outletParentCount."
::= { outletParentEntry 1 }
outletParentType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
breaker (1),
section (2),
custom (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of the parent."
::= { outletParentEntry 2 }
outletParentOID OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Object ID of a parent object."
::= { outletParentEntry 3 }
outletVoltageTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of outlet voltage measurements."
::= { outlets 3 }
outletVoltageEntry OBJECT-TYPE
SYNTAX OutletVoltageEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for an outlet voltage measurement."
INDEX { strappingIndex,
outletIndex }
::= { outletVoltageTable 1 }
OutletVoltageEntry ::= SEQUENCE {
outletVoltage
Integer32,
outletVoltageThStatus
INTEGER,
outletVoltageThLowerWarning
Integer32,
outletVoltageThLowerCritical
Integer32,
outletVoltageThUpperWarning
Integer32,
outletVoltageThUpperCritical
Integer32
}
outletVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are millivolts."
::= { outletVoltageEntry 2 }
outletVoltageThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured outlet voltage relative to the configured thresholds."
::= { outletVoltageEntry 3 }
outletVoltageThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { outletVoltageEntry 4 }
outletVoltageThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { outletVoltageEntry 5 }
outletVoltageThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { outletVoltageEntry 6 }
outletVoltageThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..500000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are millivolts. A negative value indicates
that this object is not available."
::= { outletVoltageEntry 7 }
outletCurrentTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of outlet current measurements."
::= { outlets 4 }
outletCurrentEntry OBJECT-TYPE
SYNTAX OutletCurrentEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for an outlet current measurement."
INDEX { strappingIndex,
outletIndex }
::= { outletCurrentTable 1 }
OutletCurrentEntry ::= SEQUENCE {
outletCurrentCapacity
Integer32,
outletCurrent
Integer32,
outletCurrentThStatus
INTEGER,
outletCurrentThLowerWarning
Integer32,
outletCurrentThLowerCritical
Integer32,
outletCurrentThUpperWarning
Integer32,
outletCurrentThUpperCritical
Integer32,
outletCurrentCrestFactor
Integer32,
outletCurrentPercentLoad
Integer32
}
outletCurrentCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rated current capacity of the outlet. Units are milliamps. A negative
value indicates that the hardware current capacity is unknown."
::= { outletCurrentEntry 2 }
outletCurrent OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An outlet current measurement value. Units are milliamps."
::= { outletCurrentEntry 3 }
outletCurrentThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured outlet current relative to the configured thresholds.
A negative value indicates that this object is not available."
::= { outletCurrentEntry 4 }
outletCurrentThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { outletCurrentEntry 5 }
outletCurrentThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { outletCurrentEntry 6 }
outletCurrentThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { outletCurrentEntry 7 }
outletCurrentThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..100000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are milliamps. A negative value indicates
that this object is not available."
::= { outletCurrentEntry 8 }
outletCurrentCrestFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current crest factor. Units are in milli, for example a crest factor of
1.414 will be returned as 1414. A negative value indicates
that this object is not available."
::= { outletCurrentEntry 9 }
outletCurrentPercentLoad OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current percent load, based on the rated current capacity. Units are
percentage, for example 80% will be returned as 80. A negative
value indicates that this object is not available."
::= { outletCurrentEntry 10 }
outletPowerTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of outlet power measurements."
::= { outlets 5 }
outletPowerEntry OBJECT-TYPE
SYNTAX OutletPowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for an outlet power measurement."
INDEX { strappingIndex,
outletIndex }
::= { outletPowerTable 1 }
OutletPowerEntry ::= SEQUENCE {
outletVA
Integer32,
outletWatts
Integer32,
outletWh
Unsigned32,
outletWhTimer
UnixTimeStamp,
outletPowerFactor
Integer32,
outletVAR
Integer32
}
outletVA OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An outlet VA value. Units are VA. A negative value indicates
that this object is not available."
::= { outletPowerEntry 2 }
outletWatts OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An outlet Watts value. Units are Watts. A negative value indicates
that this object is not available."
::= { outletPowerEntry 3 }
outletWh OBJECT-TYPE
SYNTAX Unsigned32 (0..4294967295)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Units are Watt-hours. This object is writable so that it can be reset to 0. When it is
written to, the inputWhTotalTimer will be reset to 0 as well."
::= { outletPowerEntry 4 }
outletWhTimer OBJECT-TYPE
SYNTAX UnixTimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Timestamp of when outlet Watt-hours (outletWh) was last reset."
::= { outletPowerEntry 5 }
outletPowerFactor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An outlet PF value. Units are in thousandths, for example a power factor
of 0.958 would be returned as 958, and 0.92 would be returned
as 920. A negative value indicates that this object is not available."
::= { outletPowerEntry 6 }
outletVAR OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An outlet VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { outletPowerEntry 7 }
outletControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of controllable outlets."
::= { outlets 6 }
outletControlEntry OBJECT-TYPE
SYNTAX OutletControlEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a controllable outlet."
INDEX { strappingIndex,
outletIndex }
::= { outletControlTable 1 }
OutletControlEntry ::= SEQUENCE {
outletControlStatus
INTEGER,
outletControlOffCmd
Integer32,
outletControlOnCmd
Integer32,
outletControlRebootCmd
Integer32,
outletControlPowerOnState
INTEGER,
outletControlSequenceDelay
Integer32,
outletControlRebootOffTime
Integer32,
outletControlSwitchable
INTEGER,
outletControlShutoffDelay
Integer32
}
outletControlStatus OBJECT-TYPE
SYNTAX INTEGER {
off (0),
on (1),
pendingOff (2),
pendingOn (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current state of a controlled outlet."
::= { outletControlEntry 2 }
outletControlOffCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Outlet control command.
Once the command is issued, the outlet will turn Off immediately.
0-n : Time in seconds until the outlet command is issued
-1 : Cancel a pending outlet Off command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { outletControlEntry 3 }
outletControlOnCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Outlet control command.
Once the command is issued, the outlet will turn On immediately.
0-n : Time in seconds until the outlet command is issued
-1 : Cancel a pending outlet On command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { outletControlEntry 4 }
outletControlRebootCmd OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Outlet control command.
For outlets that are On prior to this Reboot command, they will switch Off immediately when the command is
issued, remain Off for outletControlRebootOffTime seconds, and then turn back On.
For outlets that are Off prior to the Reboot command, they will turn On after a delay of outletControlRebootOffTime
seconds from when the command is issued.
0-n : Time in seconds until the Reboot command is issued
-1 : Cancel a pending outlet Reboot command
When read, returns -1 if no command is pending, or the current downcount in seconds of a pending command.
Certain ePDUs (mainly those with part numbers beginning with IPV or IPC) do not support delayed control
commands. These will respond with an error if a command value of > 0 is written to this object."
::= { outletControlEntry 5 }
outletControlPowerOnState OBJECT-TYPE
SYNTAX INTEGER {
off (0),
on (1),
lastState (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the outlet state when power is applied to the unit.
0 : not restart at device startup
1 : should sequence back ON in line with outletControlSequenceTime
2 : should take the state the outlet had when power was lost.
If the state was ON, should sequence back ON in line with outletControlSequenceTime."
::= { outletControlEntry 6 }
outletControlSequenceDelay OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time delay in seconds from when a Global Sequence On command is issued to
when the command is executed on this outlet. This delay is also used as a power-on
delay. Set to -1 to exclude this outlet from Global Sequence On
commands."
::= { outletControlEntry 7 }
outletControlRebootOffTime OBJECT-TYPE
SYNTAX Integer32 (1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time delay in seconds that the outlet should remain in the Off state when executing a Reboot command."
::= { outletControlEntry 8 }
outletControlSwitchable OBJECT-TYPE
SYNTAX INTEGER {
switchable (1),
notSwitchable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the outlet capability to be controlled On/Off from the communication channels.
1 : control On/Off enabled
2 : control On/Off disabled."
::= { outletControlEntry 9 }
outletControlShutoffDelay OBJECT-TYPE
SYNTAX Integer32 (-1..99999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time delay in seconds that could be taken in account before shutting of the outlet.
An application which need to shutoff properly an outlet will read this parameter first
then write it to the command outletControlOffCmd."
::= { outletControlEntry 10 }
outletGlobalTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of globlal configuration on all outlets."
::= { outlets 7 }
outletGlobalEntry OBJECT-TYPE
SYNTAX OutletGlobalEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a global variable on all outlets."
INDEX { strappingIndex
}
::= { outletGlobalTable 1 }
OutletGlobalEntry ::= SEQUENCE {
outletAutomaticShutoff
INTEGER
}
outletAutomaticShutoff OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (0),
keepTheCurrentPosition (1),
shutoffTheOutlets (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Determines the state of all outlets when the unit is power off:
0 : not applicable (read only)
1 : Keep the outlet relays in the current position when the PDU is powered down
2 : Makes the outlet relays go to the position that shutoffs the outlets when the PDU is powered down"
::= { outletGlobalEntry 2 }
temperatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF TemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of temperature probe measurements. The number of entries is
given by temperatureCount."
::= { environmental 1 }
temperatureEntry OBJECT-TYPE
SYNTAX TemperatureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a temperature measurement."
INDEX { strappingIndex,
temperatureIndex }
::= { temperatureTable 1 }
TemperatureEntry ::= SEQUENCE {
temperatureIndex
Integer32,
temperatureName
OCTET STRING,
temperatureProbeStatus
INTEGER,
temperatureValue
Integer32,
temperatureThStatus
INTEGER,
temperatureThLowerWarning
Integer32,
temperatureThLowerCritical
Integer32,
temperatureThUpperWarning
Integer32,
temperatureThUpperCritical
Integer32
}
temperatureIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each temperature probe measurement. Its value
ranges from 1 to temperatureCount."
::= { temperatureEntry 1 }
temperatureName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A descriptive name for the temperature probe."
::= { temperatureEntry 2 }
temperatureProbeStatus OBJECT-TYPE
SYNTAX INTEGER {
bad (-1),
disconnected (0),
connected (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { temperatureEntry 3 }
temperatureValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are in tenths of a degree according to the scale specified by
temperatureScale (either Fahrenheit or Celsius). Divide by ten to get
degrees."
::= { temperatureEntry 4 }
temperatureThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured temperature relative to the configured
thresholds."
::= { temperatureEntry 5 }
temperatureThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..150000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are tenths of a degree. A negative value
indicates that this object is not available."
::= { temperatureEntry 6 }
temperatureThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..150000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are tenths of a degree. A negative value
indicates that this object is not available."
::= { temperatureEntry 7 }
temperatureThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..150000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are tenths of a degree. A negative value
indicates that this object is not available."
::= { temperatureEntry 8 }
temperatureThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..150000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are tenths of a degree. A negative value
indicates that this object is not available."
::= { temperatureEntry 9 }
humidityTable OBJECT-TYPE
SYNTAX SEQUENCE OF HumidityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of humidity probe measurements. The number of entries is
given by humidityCount."
::= { environmental 2 }
humidityEntry OBJECT-TYPE
SYNTAX HumidityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a humidity measurement."
INDEX { strappingIndex,
humidityIndex }
::= { humidityTable 1 }
HumidityEntry ::= SEQUENCE {
humidityIndex
Integer32,
humidityName
OCTET STRING,
humidityProbeStatus
INTEGER,
humidityValue
Integer32,
humidityThStatus
INTEGER,
humidityThLowerWarning
Integer32,
humidityThLowerCritical
Integer32,
humidityThUpperWarning
Integer32,
humidityThUpperCritical
Integer32
}
humidityIndex OBJECT-TYPE
SYNTAX Integer32 (1..2)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each humidity probe measurement. Its value
ranges from 1 to humidityCount."
::= { humidityEntry 1 }
humidityName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A descriptive name for the humidity probe."
::= { humidityEntry 2 }
humidityProbeStatus OBJECT-TYPE
SYNTAX INTEGER {
bad (-1),
disconnected (0),
connected (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { humidityEntry 3 }
humidityValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Units are tenths of a percent relative humidity. Divide the value by 10 to get %RH."
::= { humidityEntry 4 }
humidityThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (0),
lowWarning (1),
lowCritical (2),
highWarning (3),
highCritical (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of the measured humidity relative to the configured
thresholds."
::= { humidityEntry 5 }
humidityThLowerWarning OBJECT-TYPE
SYNTAX Integer32 (-1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower warning threshold. Units are 0.1 %RH. A negative value
indicates that this object is not available."
::= { humidityEntry 6 }
humidityThLowerCritical OBJECT-TYPE
SYNTAX Integer32 (-1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Lower critical threshold. Units are 0.1 %RH. A negative value
indicates that this object is not available."
::= { humidityEntry 7 }
humidityThUpperWarning OBJECT-TYPE
SYNTAX Integer32 (-1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper warning threshold. Units are 0.1 %RH. A negative value
indicates that this object is not available."
::= { humidityEntry 8 }
humidityThUpperCritical OBJECT-TYPE
SYNTAX Integer32 (-1..1000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Upper critical threshold. Units are 0.1 %RH. A negative value
indicates that this object is not available."
::= { humidityEntry 9 }
contactTable OBJECT-TYPE
SYNTAX SEQUENCE OF ContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of contact sensors. The number of entries is
given by contactCount."
::= { environmental 3 }
contactEntry OBJECT-TYPE
SYNTAX ContactEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry for a contact sensor"
INDEX { strappingIndex,
contactIndex }
::= { contactTable 1 }
ContactEntry ::= SEQUENCE {
contactIndex
Integer32,
contactName
OCTET STRING,
contactProbeStatus
INTEGER,
contactState
INTEGER
}
contactIndex OBJECT-TYPE
SYNTAX Integer32 (1..3)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"A unique value for each contact sensor. Its value ranges from 1 to
contactCount."
::= { contactEntry 1 }
contactName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(1..31))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A descriptive name for the contact sensor."
::= { contactEntry 2 }
contactProbeStatus OBJECT-TYPE
SYNTAX INTEGER {
bad (-1),
disconnected (0),
connected (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether a probe is connected or not.
Will not be returned if the contact sensor is internal to the ePDU,
in that case only contactState should be read."
::= { contactEntry 3 }
contactState OBJECT-TYPE
SYNTAX INTEGER {
contactBad (-1),
contactOpen (0),
contactClosed (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the contact sensor."
::= { contactEntry 4 }
eatonEpduCompliances MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The requirements for conforming to the ePDU MIB."
MODULE
MANDATORY-GROUPS { epduRequiredGroup }
GROUP epduOptionalGroup
DESCRIPTION
"Different ePDUs will support a subset of the defined objects."
GROUP epduNotifyGroup
DESCRIPTION
"Different ePDUs will support a subset of the defined notifications."
::= { conformance 1 }
epduRequiredGroup OBJECT-GROUP
OBJECTS { unitName,
firmwareVersion }
STATUS current
DESCRIPTION
"Minimal objects are required to conform to this MIB."
::= { objectGroups 1 }
epduOptionalGroup OBJECT-GROUP
OBJECTS { clockValue,
commInterface,
communicationStatus,
contactCount,
contactIndex,
contactName,
contactProbeStatus,
contactState,
groupBreakerStatus,
groupChildCount,
groupChildOID,
groupChildType,
groupColor,
groupControlOnCmd,
groupControlOffCmd,
groupControlRebootCmd,
groupControlStatus,
groupCount,
groupCurrent,
groupCurrentCapacity,
groupCurrentCrestFactor,
groupCurrentPercentLoad,
groupCurrentThLowerCritical,
groupCurrentThLowerWarning,
groupCurrentThStatus,
groupCurrentThUpperCritical,
groupCurrentThUpperWarning,
groupDesignator,
groupID,
groupIndex,
groupInputIndex,
groupName,
groupPowerFactor,
groupType,
groupVA,
groupVAR,
groupVoltage,
groupVoltageMeasType,
groupVoltageThLowerCritical,
groupVoltageThLowerWarning,
groupVoltageThStatus,
groupVoltageThUpperCritical,
groupVoltageThUpperWarning,
groupWatts,
groupWh,
groupWhTimer,
humidityCount,
humidityIndex,
humidityName,
humidityProbeStatus,
humidityThLowerCritical,
humidityThLowerWarning,
humidityThStatus,
humidityThUpperCritical,
humidityThUpperWarning,
humidityValue,
inputCount,
inputCurrent,
inputCurrentCapacity,
inputCurrentCount,
inputCurrentCrestFactor,
inputCurrentIndex,
inputCurrentMeasType,
inputCurrentPercentLoad,
inputCurrentThLowerCritical,
inputCurrentThLowerWarning,
inputCurrentThStatus,
inputCurrentThUpperCritical,
inputCurrentThUpperWarning,
inputFeedColor,
inputFeedName,
inputFrequency,
inputFrequencyStatus,
inputIndex,
inputPhaseDesignator,
inputPlugType,
inputPowerCapacity,
inputPowerCount,
inputPowerFactor,
inputPowerMeasType,
inputTotalPowerFactor,
inputTotalVA,
inputTotalVAR,
inputTotalWatts,
inputTotalWh,
inputTotalWhTimer,
inputType,
inputVA,
inputVAR,
inputVoltage,
inputVoltageCount,
inputVoltageIndex,
inputVoltageMeasType,
inputVoltageThLowerCritical,
inputVoltageThLowerWarning,
inputVoltageThStatus,
inputVoltageThUpperCritical,
inputVoltageThUpperWarning,
inputWatts,
inputWh,
inputWhTimer,
internalStatus,
lcdControl,
outletAutomaticShutoff,
outletControlSwitchable,
outletControlShutoffDelay,
outletControlOffCmd,
outletControlOnCmd,
outletControlPowerOnState,
outletControlRebootCmd,
outletControlRebootOffTime,
outletControlSequenceDelay,
outletControlStatus,
outletCount,
outletCurrent,
outletCurrentCapacity,
outletCurrentCrestFactor,
outletCurrentPercentLoad,
outletCurrentThLowerCritical,
outletCurrentThLowerWarning,
outletCurrentThStatus,
outletCurrentThUpperCritical,
outletCurrentThUpperWarning,
outletDesignator,
outletID,
outletIndex,
outletName,
outletParentCount,
outletParentOID,
outletParentType,
outletPhaseID,
outletPowerFactor,
outletType,
outletVA,
outletVAR,
outletVoltage,
outletVoltageThLowerCritical,
outletVoltageThLowerWarning,
outletVoltageThStatus,
outletVoltageThUpperCritical,
outletVoltageThUpperWarning,
outletWatts,
outletWh,
outletWhTimer,
partNumber,
productName,
serialNumber,
strappingIndex,
strappingStatus,
systemType,
temperatureCount,
temperatureIndex,
temperatureName,
temperatureProbeStatus,
temperatureScale,
temperatureThLowerCritical,
temperatureThLowerWarning,
temperatureThStatus,
temperatureThUpperCritical,
temperatureThUpperWarning,
temperatureValue,
unitControlOffCmd,
unitControlOnCmd,
unitName,
unitsPresent,
unitType,
userName }
STATUS current
DESCRIPTION
"Most objects in this MIB are optional."
::= { objectGroups 2 }
epduNotifyGroup NOTIFICATION-GROUP
NOTIFICATIONS { notifyBootUp,
notifyCommunicationStatus,
notifyContactState,
notifyFailedLogin,
notifyGroupCurrentThStatus,
notifyGroupVoltageThStatus,
notifyGroupBreakerStatus,
notifyHumidityThStatus,
notifyInputCurrentThStatus,
notifyInputFrequencyStatus,
notifyInputVoltageThStatus,
notifyInternalStatus,
notifyOutletControlStatus,
notifyOutletCurrentThStatus,
notifyOutletVoltageThStatus,
notifyProbeStatus,
notifyStrappingStatus,
notifyTemperatureThStatus,
notifyTest,
notifyUserLogin,
notifyUserLogout }
STATUS current
DESCRIPTION
"These notifications will be supported depending on the features of the ePDU.
Check the web interface for options to turn these notifications on/off. If
an option is not listed, then the ePDU likely does not support that
notification."
::= { objectGroups 3 }
END
-- This MIB was created using NuDesign Team's Visual MIBuilder (Ver 4.7).
|