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
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
|
-- ============================================================================
-- Copyright (C)2013 by HUAWEI TECHNOLOGIES. All rights reserved.
-- Description: This MIB is used for defining Power Monitor management
-- MIB objects.
-- Reference:
-- Version: V3.35
-- ============================================================================
HUAWEI-POWER-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwEnvEmuIndex,hwEnvEmuType,hwDigChannelIndex
FROM HUAWEI-ENVIRONMENT-MIB
huaweiUtility
FROM HUAWEI-MIB
Integer32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DisplayString, RowStatus, TruthValue, DateAndTime, TEXTUAL-CONVENTION
FROM SNMPv2-TC
hwFrameIndex
FROM HUAWEI-DEVICE-MIB;
hwPower MODULE-IDENTITY
LAST-UPDATED "201312280000Z"
ORGANIZATION "Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"
This MIB is used for defining Power Monitor management MIB objects.
"
-- Revision history
REVISION "201312280000Z"
DESCRIPTION "V3.35, modify the leaf of hwRectifierOperState."
REVISION "201311160000Z"
DESCRIPTION "V3.34, modify the leaf of hwRectifierOperState."
REVISION "201212280000Z"
DESCRIPTION "V3.33, added enumerate etp48150(128) in hwPowerType leaf for smu EMU,
added enumerate h801pmu(127) in hwPowerType leaf for H801PMU."
REVISION "201212140000Z"
DESCRIPTION "V3.32, add the leaf of hwBatteryLogTestBatteryTemperature, hwBatteryLogTestBatteryCurrent
and hwBatteryGroupBomCode for battery smart manage.
add enumerate sleep(6) in hwChargeOperStatus leaf.
add enumerate supplyRecoverAutotestTerminated(7) in hwBatteryTestResult leaf."
REVISION "201207240000Z"
DESCRIPTION "V3.31, add the leaf of hwPowerModuleRestoreTrap and hwPowerModuleMismatchTrap for SMU digital alarm."
REVISION "201206250000Z"
DESCRIPTION "V3.30, add enumerate smu(124) in hwPowerType leaf for smu EMU,
modified the name of hwBatteryTestPrealarmThreshold to hwBatteryTestAlarmThreshold,
modified description of hwBatteryTestDuration,hwBatteryTestTerminateVoltage and hwBatteryTestAlarmThreshold,
delete enumerate smu(124),
add enumerate etp4830(125) and enumerate etp4890(126) in hwPowerType leaf for smu EMU"
REVISION "201201090000Z"
DESCRIPTION "V3.29, add the leafs of hwEmmBatt1TempFaultTrap, hwEmmBatt1TempRestoreTrap, hwEmmEnviHumFaultTrap,
hwEmmEnviHumRestoreTrap, hwEmmEnvi1TempFaultTrap, hwEmmEnvi1TempRestoreTrap, hwEmmBattTemFaultTrap,
hwEmmBattTemRecoverTrap and hwEmmPowerBatteryOffRecoverTrap"
REVISION "201112170000Z"
DESCRIPTION "V3.28, added hwBatteryLogTestEfficiency the objects of hwEmmPowerBattaryTestStopTrap.
add the leaf of hwEmmPowerBatteryUnDetectTrap and ch_hwEmmPowerBatteryDetectRecoverTrap for SMU digital alarm."
REVISION "201112080000Z"
DESCRIPTION "V3.27, added hwBatteryTestPrealarmThreshold leaf node for getting and setting battery test prealarm threshold.
added hwBatteryLogTestEfficiency leaf node for inquiry efficiency setting. "
REVISION "201108170000Z"
DESCRIPTION "V3.25, add the leaf of hwEmmPowerBatteryOffTrap for battary power-off."
REVISION "201103160000Z"
DESCRIPTION "V3.25, added enumerate discharge(5) in hwChargeOperStatus leaf for discharge.
add enumerate LiFeBattery(123) in hwPowerType leaf for LiFeBattery EMU"
REVISION "201012170000Z"
DESCRIPTION "V3.24, added Objects hwBatteryLogTestBatteryStatus of hwEmmPowerBattaryTestStopTrap node."
REVISION "201011100000Z"
DESCRIPTION "V3.23, added enumerate power3000(122) in hwPowerType leaf for Power3000 EMU.
Modified the objects of hwEmmPowerBattloopFaultTrap and hwEmmPowerBattloopRecoverTrap.
Added hwEmmDigMainsupplyFaultTrap and hwEmmDigMainsupplyRecoverTrap."
REVISION "201007180900Z"
DESCRIPTION "V3.22, added enumerate power3000(122) in hwPowerType leaf for Power3000 EMU.
Modified the objects of hwEmmPowerBattloopFaultTrap and hwEmmPowerBattloopRecoverTrap.
Added hwEmmDigMainsupplyFaultTrap and hwEmmDigMainsupplyRecoverTrap."
REVISION "201006120900Z"
DESCRIPTION "V3.21, modified description of hwBatteryGroupOperStatus node."
REVISION "201004210900Z"
DESCRIPTION "V3.20, modified node name to avoid conflict."
REVISION "201004080900Z"
DESCRIPTION "V3.19, modified this MIB for clearing simple tester errors and warnings."
REVISION "201003090900Z"
DESCRIPTION "V3.18, added hwBatteryInstallTime leaf node for getting the battery installation time"
REVISION "201002060900Z"
DESCRIPTION "V3.17,Modified the description."
REVISION "201001290900Z"
DESCRIPTION "V3.16,Deleted simple tester MIB compile errors and warnings."
REVISION "200611100900Z"
DESCRIPTION "V3.09,Added hwBatteryHardwareState."
REVISION "200610250900Z"
DESCRIPTION "V3.08,Added hwBatteryVoltageState."
::= { huaweiUtility 2 }
MeasuresRange ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Basic unit of measure:
1.pressure:indicated by mV, 1V = 1000 mV
2.current:indicated by mA, 1A = 1000 mA
3.temperature: indicated by 1% degree centigrade
"
SYNTAX Integer32
hwPowerMonObjects OBJECT IDENTIFIER ::= { hwPower 1 }
hwPowerSysInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwPowerSysInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Power basic information table. The indexes of this table are hwEnvEmuIndex
and hwPowerIndex. hwEnvEmuIndex comes from hwEnvironmentInfoTable and is
the index of the monitoring unit. hwPowerIndex is the index of the power
supply monitored by the monitoring unit.
"
::= { hwPowerMonObjects 1 }
hwPowerSysInfoEntry OBJECT-TYPE
SYNTAX HwPowerSysInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Power basic information table. The indexes of this entry are hwEnvEmuIndex
and hwPowerIndex. hwEnvEmuIndex comes from hwEnvironmentInfoTable and is
the index of the monitoring unit. hwPowerIndex is the index of the power
supply monitored by the monitoring unit.
"
INDEX { hwEnvEmuIndex, hwPowerIndex }
::= { hwPowerSysInfoTable 1 }
HwPowerSysInfoEntry ::=
SEQUENCE {
hwPowerIndex
Integer32,
hwPowerType
INTEGER,
hwPowerName
DisplayString,
hwPowerState
INTEGER,
hwPowerRowStatus
RowStatus,
hwPowerControlMode
INTEGER,
hwPowerRemoteFrameID
Integer32,
hwPowerProtect
INTEGER,
hwPowerVersion
DisplayString,
hwPowerSupplyState
INTEGER
}
hwPowerIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the power supply monitored by the monitoring unit"
::= { hwPowerSysInfoEntry 1 }
hwPowerType OBJECT-TYPE
SYNTAX INTEGER
{
power4875(1),
power4810(2),
power48100(3),
power4850(4),
power48240(5),
power48120(6),
power48300(7),
power48240SinglePhase(8),
universalPower(9),
power4845(10),
rpower(11),
power4805(15),
power4820(16),
onps(17),
power4875l(18),
psma(100),
perm-al175nt(101),
mcs1800(102),
mcs1800A(103),
mcs3000(104),
sm40sm60(105),
scu(106),
eltek(107),
dk04(108),
dk04C(109),
dpc(110),
power4830(120),
h831pmua(121),
power3000(122),
liFeBattery(123),
etp4830(125),
etp4890(126),
h801pmu(127),
etp48150(128),
other(255)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Type of the Power emu device.
Options:
1.power4875(1) - Type of the Power emu device is power4875
2.power4810(2) - Type of the Power emu device is power4810
3.power48100(3) - Type of the Power emu device is power48100
4.power4850(4) - Type of the Power emu device is power4850
5.power48240(5) - Type of the Power emu device is power48240
6.power48120(6) - Type of the Power emu device is power48120
7.power48300(7) - Type of the Power emu device is power48300
8.power48240SinglePhase(8) - Type of the Power emu device is power48240SinglePhase
9.universalPower(9) - Type of the Power emu device is universalPower
10.power4845(10) - Type of the Power emu device is power4845
11.rpower(11) - Type of the Power emu device is rpower
12.power4805(15) - Type of the Power emu device is power4805
13.power4820(16) - Type of the Power emu device is power4820
14.onps(17) - Type of the Power emu device is onps
15.power4875l(18) - Type of the Power emu device is power4875l
16.psma(100) - Type of the Power emu device is psma
17.perm-al175nt(101) - Type of the Power emu device is perm-al175nt
18.mcs1800(102) - Type of the Power emu device is mcs1800
19.mcs1800A(103) - Type of the Power emu device is mcs1800A
20.mcs3000(104) - Type of the Power emu device is mcs3000
21.sm40sm60(105) - Type of the Power emu device is sm40sm60
22.scu(106) - Type of the Power emu device is scu
23.eltek(107) - Type of the Power emu device is eltek
24.dk04(108) - Type of the Power emu device is dk04
25.dk04C(109) - Type of the Power emu device is dk04C
26.dpc(110) - Type of the Power emu device is dpc
27.power4830(120) - Type of the Power emu device is power4830
28.h831pmua(121) - Type of the Power emu device is h831pmua
29.power3000(122) - Type of the Power emu device is power3000
30.liFeBattery(123) - Type of the Power emu device is LiFeBattery
31.etp4830(125), - Type of SMU Power emu device is etp4830
32.etp4890(126), - Type of SMU Power emu device is etp4890
33.h801pmu(127), - Type of the Power emu device is h801pmua
34.etp48150(128), - Type of SMU Power emu device is etp48150
35.other(255) - other Power Type
"
::= { hwPowerSysInfoEntry 2 }
hwPowerName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
Power name.
"
::= { hwPowerSysInfoEntry 3 }
hwPowerState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
fault(2),
protecting(3),
switched(4),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power board status:
Refers to the status of communication between the internal monitor board
of the power device and the external upper board.
Options:
1.normal(1) - indicates the normal state
2.fault(2) - indicates the faulty state
3.protecting(3)- indicates that the backup power supply works in the protection state
4.switched(4) - indicates that the main power supply is faulty, and is protected by backup power supply
5.invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwPowerSysInfoEntry 4 }
hwPowerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation. The values 1 and 2 are supported currently.
1 indicates the activation status, and 2 indicates the non-activation status."
::= { hwPowerSysInfoEntry 5 }
hwPowerControlMode OBJECT-TYPE
SYNTAX INTEGER
{
manualControl(1),
autoControl(2),
invalid(-1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Control mode of the power monitor module.
Options:
1.manualControl(1) - control by manual, the remote mode
2.autoControl(2) - auto control mode, the default is auto control mode
3.invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
DEFVAL { 1 }
::= { hwPowerSysInfoEntry 6 }
hwPowerRemoteFrameID OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Apply for remote power system.
It is the frame ID that the remote unit exists in"
::= { hwPowerSysInfoEntry 7 }
hwPowerProtect OBJECT-TYPE
SYNTAX INTEGER
{
protect(1),
undoProtect(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Apply for remote power system.
It is used to enable or disable N+1 protection function.
Options:
1.protect(1) - enables the N+1 protection function
2.undoProtect(2) - disables the N+1 protection function"
::= { hwPowerSysInfoEntry 8 }
hwPowerVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Version of power"
::= { hwPowerSysInfoEntry 9 }
hwPowerSupplyState OBJECT-TYPE
SYNTAX INTEGER
{
ac(1),
battery(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Power supply modes.
Options:
1.ac(1) - indicates the AC power supply
2.battery(2) - indicates power supply by the batteries
"
::= { hwPowerSysInfoEntry 10 }
hwACInputTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwACInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"AC input table. Through this table,
AC input monitoring parameters of 4875 power supply, 4845 power supply,
4810 power supply, 48100 power supply, and 48240 power supply can
be set and queried.
The indexes of this table are hwEnvEmuIndex, hwPowerIndex, and hwACLoopIndex.
hwEnvEmuIndex is the index of the monitoring unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwACLoopIndex is the index of the AC input power supply monitored by the monitoring unit.
"
::= { hwPowerMonObjects 2 }
hwACInputEntry OBJECT-TYPE
SYNTAX HwACInputEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"AC input table. Through this table,
AC input monitoring parameters of 4875 power supply, 4845 power supply,
4810 power supply, 48100 power supply, and 48240 power supply can
be set and queried.
The indexes of this entry are hwEnvEmuIndex, hwPowerIndex, and hwACLoopIndex.
hwEnvEmuIndex is the index of the monitoring unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwACLoopIndex is the index of the AC input power supply monitored by the monitoring unit."
INDEX { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
::= { hwACInputTable 1 }
HwACInputEntry ::=
SEQUENCE {
hwACLoopIndex
Integer32,
hwACPowerState
INTEGER,
hwACVoltA
MeasuresRange,
hwACCurrentA
MeasuresRange,
hwACVoltB
MeasuresRange,
hwACCurrentB
MeasuresRange,
hwACVoltC
MeasuresRange,
hwACCurrentC
MeasuresRange,
hwACVoltageHigh
MeasuresRange,
hwACVoltageLow
MeasuresRange,
hwACRowStatus
RowStatus,
hwACVoltageAState
INTEGER,
hwACVoltageBState
INTEGER,
hwACVoltageCState
INTEGER
}
hwACLoopIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Input loop index. There are two channels of AC current input,
which are the backup for each other."
::= { hwACInputEntry 1 }
hwACPowerState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
offline(2),
exceedVoltage(3),
belowVoltage(4),
backup(5),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of power supply.
Options:
1.normal(1) - indicates that the power supply is normal
2.offline(2) - indicates that the power supply is offline
3.exceedVoltage(3) - indicates that the power supply is overvoltage
4.belowVoltage(4) - indicates that the power supply is undervoltage
5.backup(5) - indicates that the power supply is not supported currently
6.invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwACInputEntry 2 }
hwACVoltA OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC Inuput voltage A.
Unit: mV"
::= { hwACInputEntry 3 }
hwACCurrentA OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC input Current A.
Unit: mA"
::= { hwACInputEntry 4 }
hwACVoltB OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC input voltage B.
Unit: mv"
::= { hwACInputEntry 5 }
hwACCurrentB OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC input current B.
Unit: mA"
::= { hwACInputEntry 6 }
hwACVoltC OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC input voltage C.
Unit: mV"
::= { hwACInputEntry 7 }
hwACCurrentC OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC input current C.
Unit: mA"
::= { hwACInputEntry 8 }
hwACVoltageHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"AC input over-voltage alarm threshold.
Unit: mV"
DEFVAL { 280000 }
::= { hwACInputEntry 9 }
hwACVoltageLow OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"AC input under-voltage alarm threshold.
Unit: mV"
DEFVAL { 180000 }
::= { hwACInputEntry 10 }
hwACRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Only the add operation, delete operation, and status query operation are supported."
::= { hwACInputEntry 11 }
hwACVoltageAState OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
belowVoltage(1) ,
exceedVoltage(2),
missing-phase(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Phase AB/A of AC input state.
Options:
1. normal(0) - indicates that the Phase AB/A of AC input state is normal
2. belowVoltage(1) - indicates that the Phase AB/A of AC input state is belowVoltage
3. exceedVoltage(2) - indicates that the Phase AB/A of AC input state is exceedVoltage
4. missing-phase(3) - indicates that the Phase AB/A of AC input state is missing-phase
"
::= { hwACInputEntry 12 }
hwACVoltageBState OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
belowVoltage(1) ,
exceedVoltage(2),
missing-phase(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Phase BC/B of AC input state.
Options:
1. normal(0) - indicates that the Phase BC/B of AC input state is normal
2. belowVoltage(1) - indicates that the Phase BC/B of AC input state is belowVoltage
3. exceedVoltage(2) - indicates that the Phase BC/B of AC input state is exceedVoltage
4. missing-phase(3) - indicates that the Phase BC/B of AC input state is missing-phase
"
::= { hwACInputEntry 13 }
hwACVoltageCState OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
belowVoltage(1) ,
exceedVoltage(2),
missing-phase(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Phase CA/C of AC input state.
Options:
1. normal(0) - indicates that the Phase CA/C of AC input state is normal
2. belowVoltage(1) - indicates that the Phase CA/C of AC input state is belowVoltage
3. exceedVoltage(2) - indicates that the Phase CA/C of AC input state is exceedVoltage
4. missing-phase(3) - indicates that the Phase CA/C of AC input state is missing-phase
"
::= { hwACInputEntry 14 }
hwDCOutTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwDCOutEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DC output table. Through this table,
DC output monitoring parameters of 4875 power supply, 4845 power supply,
4810 power supply, 482400 power supply, and 48100 power supply can
be set and queried.
The indexes of this table are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex, which comes from hwEnvironmentInfoTable,
is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
::= { hwPowerMonObjects 3 }
hwDCOutEntry OBJECT-TYPE
SYNTAX HwDCOutEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"DC output table. Through this table,
DC output monitoring parameters of 4875 power supply, 4845 power supply,
4810 power supply, 482400 power supply, and 48100 power supply can
be set and queried.
The indexes of this entry are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex, which comes from hwEnvironmentInfoTable,
is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
INDEX { hwEnvEmuIndex, hwPowerIndex }
::= { hwDCOutTable 1 }
HwDCOutEntry ::=
SEQUENCE {
hwDCVoltageOut
MeasuresRange,
hwDCCurrentOut
MeasuresRange,
hwDCVoltageOutHigh
MeasuresRange,
hwDCVoltageOutLow
MeasuresRange,
hwDCVoltageOutState
INTEGER,
hwDCCurrentOutHigh
MeasuresRange,
hwDCCurrentOutLow
MeasuresRange,
hwDCCurrentOutState
INTEGER,
hwDCOutRowStatus
RowStatus,
hwDCOutLoadCurrent
MeasuresRange,
hwDCOutLoadTmpHigh
MeasuresRange,
hwDCOutRunState
BITS ,
hwDCCommunicationState
INTEGER
}
hwDCVoltageOut OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DC voltage output.
Unit: mV"
::= { hwDCOutEntry 1 }
hwDCCurrentOut OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DC current output.
Unit: mA"
::= { hwDCOutEntry 2 }
hwDCVoltageOutHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Output DC exceed-voltage alarm point.
Default: 58000
Unit: mV"
DEFVAL { 58000 }
::= { hwDCOutEntry 3 }
hwDCVoltageOutLow OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Output DC below-voltage alarm point . Default value is 45V.
Unit: mV"
DEFVAL { 45000 }
::= { hwDCOutEntry 4 }
hwDCVoltageOutState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
exceedVoltage(2),
belowVoltage(3),
invalid(-1)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"DC output voltage status.
Options:
1. normal(1) - indicates that the DC output voltage state is normal
2. exceedVoltage(2) - indicates that the DC output voltage state is exceedVoltage
3. belowVoltage(3) - indicates that the DC output voltage state is belowVoltage
4.invalid(-1) - indicates that device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwDCOutEntry 5 }
hwDCCurrentOutHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Output DC exceed-current alarm point .
Unit: mA"
::= { hwDCOutEntry 6 }
hwDCCurrentOutLow OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Output below-current alarm point .
Unit: mA"
::= { hwDCOutEntry 7 }
hwDCCurrentOutState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
exceedVoltage(2),
belowVoltage(3),
invalid(-1)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"DC output current status.
Options:
1.normal(1) - indicates that the DC output current state is normal
2.exceedVoltage(2) - indicates that the DC output current state is exceedVoltage
3.belowVoltage(3) - indicates that the DC output current state is belowVoltage
4.invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwDCOutEntry 8 }
hwDCOutRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation"
::= { hwDCOutEntry 9 }
hwDCOutLoadCurrent OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total load current of DC output .
Unit: mA"
::= { hwDCOutEntry 10 }
hwDCOutLoadTmpHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "0.01 degree"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The off protection point under the load temperature, by default,
it is 65 degrees centigrade.
Unit: 0.01 degree"
DEFVAL { 6500 }
::= { hwDCOutEntry 11 }
hwDCOutRunState OBJECT-TYPE
SYNTAX BITS
{
battery1ChargeCurOver(0),
battery2ChargeCurOver(1),
batteryVoltageOver(2),
batteryVoltageLack(3),
loadOff(4),
batteryOff(5),
communicationFailure(6),
dcOutManual(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DC output running status.
Options:
1.battery1ChargeCurOver(0) - indicates battery 1 charge over-current
2.battery2ChargeCurOver(1) - indicates battery 2 charge over-current
3.batteryVoltageOver(2) - indicates output over-voltage
4.batteryVoltageLack(3) - indicates battery lack-voltage
5.loadOff(4) - indicates load off twice
6.batteryOff(5) - indictes battery protection (off once)
7.communicationFailure(6) - indicates that the communication fails
8.dcOutManual(7) - indicates DC by manual"
::= { hwDCOutEntry 12 }
hwDCCommunicationState OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
fault(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DC communication status.
Options:
1.normal(0) - indicates that the DC communication state is normal
2.fault(1) - indicates that the DC communication state is fault
"
::= { hwDCOutEntry 13 }
hwLoadinfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwLoadinfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Load information table. Through this table, the load parameter can be set and queried.
The indexes of this table are hwEnvEmuIndex, hwPowerIndex, and hwLoadIndex.
hwEnvEmuIndex, which comes from hwEnvironmentInfoTable, is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwLoadIndex is the index of the monitored load.
"
::= { hwPowerMonObjects 4 }
hwLoadinfoEntry OBJECT-TYPE
SYNTAX HwLoadinfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Load information table. Through this table, the load parameter can be set and queried.
The indexes of this entry are hwEnvEmuIndex, hwPowerIndex, and hwLoadIndex.
hwEnvEmuIndex, which comes from hwEnvironmentInfoTable, is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwLoadIndex is the index of the monitored load.
"
INDEX { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
::= { hwLoadinfoTable 1 }
HwLoadinfoEntry ::=
SEQUENCE {
hwLoadIndex
Integer32,
hwLoadInfoAdminState
INTEGER,
hwLoadInfoOperStatus
INTEGER,
hwLoadCurrent
MeasuresRange,
hwLoadVoltage
MeasuresRange,
hwLoadVoltageHigh
MeasuresRange,
hwLoadLoadName
DisplayString,
hwLoadInfoRowStatus
RowStatus,
hwLoadFuseState
INTEGER,
hwLoadHoreIndex
Integer32
}
hwLoadIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Loop index: usually each DC output loop corresponds to a load."
::= { hwLoadinfoEntry 1 }
hwLoadInfoAdminState OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Load operation.
Options:
1. on(1) - indicates that the Load is enabled
2. off(2) - indicates that the Load is disabled
3. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
DEFVAL { 1 }
::= { hwLoadinfoEntry 2 }
hwLoadInfoOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
abnormal(2),
stop(3),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Status of power supply.
Options:
1. normal(1) - indicates that the state of power supply is normal
2. abnormal(2) - indicates that the state of power supply is abnormal
3. stop(3) - indicates that the state of power supply is stopping power supply
4. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwLoadinfoEntry 3 }
hwLoadCurrent OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Present current .
Unit: mA"
::= { hwLoadinfoEntry 4 }
hwLoadVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Present voltage .
Unit: mV"
::= { hwLoadinfoEntry 5 }
hwLoadVoltageHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Off voltage (Stop external voltage), in unit of mV,
When DC output voltage exceeds the value, the load will be automatically cut off.
Default: 43500
Unit: mV
"
DEFVAL { 43500 }
::= { hwLoadinfoEntry 6 }
hwLoadLoadName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Load name: usually each DC output loop corresponds to a load."
::= { hwLoadinfoEntry 7 }
hwLoadInfoRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation"
::= { hwLoadinfoEntry 8 }
hwLoadFuseState OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Load fuse state, including the auxiliary load fuse.
Options:
1. on(1) - indicates that the fuse is connected
2. off(2) - indicates that the fuse is disconnected
3. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwLoadinfoEntry 9 }
hwLoadHoreIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
load hore index
"
::= { hwLoadinfoEntry 10 }
hwRectifierTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRectifierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rectifier module table.
Through this table, the status information of the rectifier module
can be set and queried.
The indexes of this table are hwEnvEmuIndex, hwPowerIndex, and hwRectifierIndex.
hwEnvEmuIndex, which comes from hwEnvironmentInfoTable,
is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwRectifierIndex is the index of the monitored rectifier module under the power supply.
"
::= { hwPowerMonObjects 5 }
hwRectifierEntry OBJECT-TYPE
SYNTAX HwRectifierEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rectifier module table.
Through this table, the status information of the rectifier module
can be set and queried.
The indexes of this entry are hwEnvEmuIndex, hwPowerIndex, and hwRectifierIndex.
hwEnvEmuIndex, which comes from hwEnvironmentInfoTable,
is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwRectifierIndex is the index of the monitored rectifier module under the power supply.
"
INDEX { hwEnvEmuIndex, hwPowerIndex, hwRectifierIndex }
::= { hwRectifierTable 1 }
HwRectifierEntry ::=
SEQUENCE {
hwRectifierIndex
Integer32,
hwRectifierAdminState
INTEGER,
hwRectifierOperState
INTEGER,
hwRectifierVoltage
MeasuresRange,
hwRectifierCurrent
MeasuresRange,
hwRectifierRowStatus
RowStatus,
hwRectifierCurrentLimit
TruthValue,
hwRectifierRunState
BITS,
hwRectifierChargeState
INTEGER
}
hwRectifierIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Rectifier Module index. There are multiple rectifier
modules to a power source.
"
::= { hwRectifierEntry 1 }
hwRectifierAdminState OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Switch operation of rectifier module.
Options:
1.on(1) - indicates that the Rectifier module is enabled
2.off(2) - indicates that the Rectifier module is disabled
3.invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
DEFVAL { 1 }
::= { hwRectifierEntry 2 }
hwRectifierOperState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
fault(2),
protect(3),
communicationFailure(4),
on(5),
noConfig(6),
offline(7),
close(8),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Present state, 5 and 6 respectively indicates the on/off state of the 48100 power device.
Options:
1. normal(1) - indicates that the Rectifier operation state is normal
2. fault(2) - indicates that the Rectifier operation state is fault
3. protect(3) - indicates that the Rectifier operation state is protect
4. communicationFailure(4) - indicates that the Rectifier operation state is communicationFailure
5. on(5) - indicates that the Rectifier operation state is on
6. noConfig(6) - indicates that the Rectifier operation state is not Configured
7. offline(7) - indicates that the Rectifier operation state is offline
8. close(8) - indicates that the Rectifier operation state is closed
9. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwRectifierEntry 3 }
hwRectifierVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Output voltage .
Unit: mV"
::= { hwRectifierEntry 4 }
hwRectifierCurrent OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Output current .
Unit: mA"
::= { hwRectifierEntry 5 }
hwRectifierRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation"
::= { hwRectifierEntry 6 }
hwRectifierCurrentLimit OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"current limit switch"
DEFVAL { 1 }
::= { hwRectifierEntry 7 }
hwRectifierRunState OBJECT-TYPE
SYNTAX BITS
{
rectifierOn(0),
averageCharge(1),
output(2),
isLimit(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Running state of rectifier module.
Options:
1.rectifierOn(0) - indicates that the module is on
2.averageCharge(1) - indicates that the module is being averagely charged.
3.output(2) - indicates that the module has output
4. isLimit(3) - indicates the current limit switch
"
::= { hwRectifierEntry 8 }
hwRectifierChargeState OBJECT-TYPE
SYNTAX INTEGER
{
float(0),
average(1),
test(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Charging state of rectifier.
Options:
1. float(0) - indicates that the Charge state of Rectifier is float
2. average(1) - indicates that the Charge state of Rectifier is average
3. test(2) - indicates that the Charge state of Rectifier is test
"
::= { hwRectifierEntry 9 }
hwBatteryGroup OBJECT IDENTIFIER ::= { hwPowerMonObjects 6 }
hwBatteryGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwBatteryGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Basic information table of battery group.
The indexes of this table are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
::= { hwBatteryGroup 1 }
hwBatteryGroupEntry OBJECT-TYPE
SYNTAX HwBatteryGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Basic information table of battery group.
The indexes of this entry are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
INDEX { hwEnvEmuIndex, hwPowerIndex }
::= { hwBatteryGroupTable 1 }
HwBatteryGroupEntry ::=
SEQUENCE {
hwBatteryGroupCapacity
Integer32,
hwBatteryGroupCapcaityRemain
Integer32,
hwBatteryGroups
Integer32,
hwBatteryGroupVoltageLow
MeasuresRange,
hwBatteryGroupChargeLimit
MeasuresRange,
hwBatteryGroupRowStatus
RowStatus,
hwBatteryGroupOperStatus
INTEGER,
hwBatteryGroupVoltageHigh
MeasuresRange,
hwBatteryGroupTwiceOffVoltage
MeasuresRange,
hwBatteryGroupProtectVoltage
MeasuresRange,
hwBatteryGroupTmpOffHigh
MeasuresRange,
hwBatteryInstallTime
DisplayString,
hwBatteryGroupBomCode
DisplayString
}
hwBatteryGroupCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total capacity of the present battery group.
Unit: Ah"
::= { hwBatteryGroupEntry 1 }
hwBatteryGroupCapcaityRemain OBJECT-TYPE
SYNTAX Integer32 (-1..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total remain capacity of the present battery group .
invalid(-1) indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal.
Unit: Ah"
::= { hwBatteryGroupEntry 2 }
hwBatteryGroups OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Number of battery group"
DEFVAL { 2 }
::= { hwBatteryGroupEntry 3 }
hwBatteryGroupVoltageLow OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the voltage of the battery group is lower than the value set,
the battery group will no longer supply power. Its unit is mV.
Default: 43000
Unit: mV
"
DEFVAL { 43000 }
::= { hwBatteryGroupEntry 4 }
hwBatteryGroupChargeLimit OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Charge limit point quotient, the product of which and the max capacity
of the battery group is the max charge current allowed.
Default: 15
Unit: percent
"
DEFVAL { 15 }
::= { hwBatteryGroupEntry 5 }
hwBatteryGroupRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation"
::= { hwBatteryGroupEntry 6 }
hwBatteryGroupOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The State of the battery supply which was connected with Power EMU.
To use this function,please confirm that the battery group was connected with Power EMU and the Power EMU state is Normal.
When the mains supply is abnormal, the battery group usually supplies power in an emergency.
Options:
1.on(1) - indicates that the state of the battery power supply is on
2.off(2) - indicates that the state of the battery power supply is off
3.invalid(-1) - indicates that the device can not get the value,e.g. the EMU does not support this operation, or the EMU state is abnormal"
::= { hwBatteryGroupEntry 7 }
hwBatteryGroupVoltageHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"When the voltage of the battery group is higher than the value set, the battery group
will no longer supply power. Its unit is mV.
Default: 43000
Unit: mV
"
DEFVAL { 43000 }
::= { hwBatteryGroupEntry 8 }
hwBatteryGroupTwiceOffVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The twice off protection voltage of the battery group. Its unit is mV.
Default: 44000
Unit: mV
"
DEFVAL { 44000 }
::= { hwBatteryGroupEntry 9 }
hwBatteryGroupProtectVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The first off protection voltage of the battery,
whose default is 43V.
Default: 43000
Unit: mV
"
DEFVAL { 43000 }
::= { hwBatteryGroupEntry 10 }
hwBatteryGroupTmpOffHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "0.01 degree"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The high temperature off protection point of the battery group,
whose default is 50 degrees centigrade.
Unit: 0.01 degree
"
DEFVAL { 5000 }
::= { hwBatteryGroupEntry 11 }
hwBatteryInstallTime OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The installing date of battery group.
"
::= { hwBatteryGroupEntry 12 }
hwBatteryGroupBomCode OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"
The BOM code of battery.
"
::= { hwBatteryGroupEntry 13 }
hwChargeTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwChargeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Charge management table.
Through this table, the charging parameter of the battery can be set and queried.
The indexes of this table are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
::= { hwBatteryGroup 2 }
hwChargeEntry OBJECT-TYPE
SYNTAX HwChargeEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Charge management table.
Through this table, the charging parameter of the battery can be set and queried.
The indexes of this entry are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit."
INDEX { hwEnvEmuIndex, hwPowerIndex }
::= { hwChargeTable 1 }
HwChargeEntry ::=
SEQUENCE {
hwChargeAdminStatus
INTEGER,
hwChargeOperStatus
INTEGER,
hwAverageChargeVoltage
MeasuresRange,
hwFloatChargeVoltage
MeasuresRange,
hwChargeControlRowStatus
RowStatus,
hwAverageChargeTime
Integer32,
hwBatteryTmpRedeemingQuotiety
Integer32
}
hwChargeAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
average(1),
float(2),
auto(3),
invalid(-1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Charge management mode.
Options:
1. average(1) - indicates that the charge management mode is average charge
2. float(2) - indicates that the charge management mode is float charge
3. auto(3) - indicates that the charge management mode is auto-control charge
4. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
DEFVAL { 2 }
::= { hwChargeEntry 1 }
hwChargeOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
average(1),
float(2),
full(3),
noCharge(4),
discharge(5),
sleep(6),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Charge operation status.
Options:
1. average(1) - indicates that the charge operation state is average charge
2. float(2) - indicates that the charge operation state is float charge
3. full(3) - indicates that the charge operation state is full
4. noCharge(4) - indicates that there is no charge in operation
5. discharge(5) - indicates that there is discharge in operation
6. sleep(6) - indicates that the charge operation state is sleep
7. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwChargeEntry 2 }
hwAverageChargeVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Voltage value of average charge, in unit of mV.
Default: 56500
Unit: mV
"
DEFVAL { 56500 }
::= { hwChargeEntry 3 }
hwFloatChargeVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Voltage value of float charge .
Default: 53500
Unit: mV
"
DEFVAL { 53500 }
::= { hwChargeEntry 4 }
hwChargeControlRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation"
::= { hwChargeEntry 5 }
hwAverageChargeTime OBJECT-TYPE
SYNTAX Integer32
UNITS "day"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Timing average charge time interval, effective range is 190 days.
Default :value is 60 days
Unit: day"
DEFVAL { 60 }
::= { hwChargeEntry 6 }
hwBatteryTmpRedeemingQuotiety OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Temperature redeeming quotient, used to set the co-relation
between the float charge voltage and the battery temperature.
It means How much will the float charge voltage decrease
with the increasing of every degree centigrade of the battery
temperature. The unit is mV.
Specific value is determined by the redeem feature curve of
floating charge for the battery group used.
Default value is 100mV
"
DEFVAL { 100 }
::= { hwChargeEntry 7 }
hwBatteryTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwBatteryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Battery group state table.
Through this table, the status parameter of a battery group can be set and queried.
The indexes of this table are hwEnvEmuIndex, hwPowerIndex, and hwBatteryIndex.
hwEnvEmuIndex is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwBatteryIndex is the index of the monitored battery group.
"
::= { hwBatteryGroup 3 }
hwBatteryEntry OBJECT-TYPE
SYNTAX HwBatteryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Battery group state table.
Through this table, the status parameter of a battery group can be set and queried.
The indexes of this entry are hwEnvEmuIndex, hwPowerIndex, and hwBatteryIndex.
hwEnvEmuIndex is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwBatteryIndex is the index of the monitored battery group.
"
INDEX { hwEnvEmuIndex, hwPowerIndex, hwBatteryIndex }
::= { hwBatteryTable 1 }
HwBatteryEntry ::=
SEQUENCE {
hwBatteryIndex
Integer32,
hwBatteryCapacity
Integer32,
hwBatteryLoopState
INTEGER,
hwBatteryVoltage
MeasuresRange,
hwBatteryState
INTEGER,
hwBatteryCurrent
MeasuresRange,
hwBatteryTemperature
Integer32,
hwBatteryRowStatus
RowStatus,
hwBatteryCurrentHigh
MeasuresRange,
hwBatteryFuseState
INTEGER,
hwBatteryContactState
INTEGER,
hwBatteryRemainCapacity
Integer32,
hwBatteryProtectState
INTEGER,
hwBatteryVoltageState
INTEGER,
hwBatteryHardwareState
INTEGER
}
hwBatteryIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery group loop index"
::= { hwBatteryEntry 1 }
hwBatteryCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The permitted max battery capacity of the battery group loop charge.
Unit: Ah"
DEFVAL { 100 }
::= { hwBatteryEntry 2 }
hwBatteryLoopState OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The battery group present status.
Options:
1. on(1) - indicates that the present state of battery group is on
2. off(2) - indicates that the present state of battery group is off
3. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwBatteryEntry 3 }
hwBatteryVoltage OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The loop voltage of the battery group.
Unit: mV"
::= { hwBatteryEntry 4 }
hwBatteryState OBJECT-TYPE
SYNTAX INTEGER
{
charge(1),
discharge(2),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the battery group loop.
Options:
1. charge(1) - indicates that the present state of the battery group loop is charge
2. discharge(2) - indicates that the present state of the battery group loop is discharge
3. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwBatteryEntry 5 }
hwBatteryCurrent OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Present current .
Unit: mA"
::= { hwBatteryEntry 6 }
hwBatteryTemperature OBJECT-TYPE
SYNTAX Integer32
UNITS "degree"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The loop temperature of the battery group.
Unit: degree"
::= { hwBatteryEntry 7 }
hwBatteryRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation"
::= { hwBatteryEntry 8 }
hwBatteryCurrentHigh OBJECT-TYPE
SYNTAX MeasuresRange
UNITS "mA"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The over-current alarm point of the battery group.
Unit: mA"
::= { hwBatteryEntry 9 }
hwBatteryFuseState OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery fuse state.
Options:
1. on(1) - indicates that the fuse is connected
2. off(2) - indicates that the fuse is disconnected
3. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal
"
::= { hwBatteryEntry 10 }
hwBatteryContactState OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2),
invalid(-1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the battery contactor.
Options:
1. on(1) - indicates that the contactor is connected
2. off(2) - indicates that the contactor is disconnected
3. invalid(-1) - indicates that the device can not get the value, e.g. the EMU does not support this operation, or the EMU state is abnormal"
::= { hwBatteryEntry 11 }
hwBatteryRemainCapacity OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Remain capacity of the battery
"
::= { hwBatteryEntry 12 }
hwBatteryProtectState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
overtemperature(2),
overCurrent(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Protection status of the battery.
Options:
1. normal(1) - indicates that the Protection status of the battery is normal
2. overtemperature(2) - indicates that the Protection status of the battery is overtemperature
3. overCurrent(3) - indicates that the Protection status of the battery is overCurrent
"
::= { hwBatteryEntry 13 }
hwBatteryVoltageState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
exceedVoltage(2),
belowVoltage(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Voltage state of Battery.
Options:
1. normal(1) - indicates that Voltage state of Battery is normal
2. exceedVoltage(2) - indicates that Voltage state of Battery is exceedVoltage
3. belowVoltage(3) - indicates that Voltage state of Battery is belowVoltage
"
::= { hwBatteryEntry 14 }
hwBatteryHardwareState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
fault(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware State of Battery.
Options:
1. normal(1) - indicates that the hardware state of Battery is normal
2. fault(2) - indicates that the hardware state of Battery is fault
"
::= { hwBatteryEntry 15 }
hwBatteryTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwBatteryTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Battery test table.
The indexes of this table are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
::= { hwBatteryGroup 4 }
hwBatteryTestEntry OBJECT-TYPE
SYNTAX HwBatteryTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Battery test table.
The indexes of this entry are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
INDEX { hwEnvEmuIndex, hwPowerIndex }
::= { hwBatteryTestTable 1 }
HwBatteryTestEntry ::=
SEQUENCE {
hwBatteryTestAdminStatus
INTEGER,
hwBatteryTestAutoDischargePeriod
Integer32,
hwBatteryTestResult
INTEGER,
hwBatteryTestStartTime
DateAndTime,
hwBatteryTestDuration
Integer32,
hwBatteryTestTerminateVoltage
Integer32,
hwBatteryTestTotalDischargeAH
Integer32,
hwBatteryTestOperStatus
INTEGER,
hwBatteryTestPhase
INTEGER,
hwBatteryTestStartHour
Integer32,
hwBatteryTestAlarmThreshold
Integer32
}
hwBatteryTestAdminStatus OBJECT-TYPE
SYNTAX INTEGER
{
start(1),
terminate(2),
enableAutoTest(3),
disableAutoTest(4),
timeautoTest(5),
offautoTest(6),
timeoffautoTest(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Battery test admin status.
Options:
1. start(1) - indicates that the Battery starts testing
2. terminate(2) - indicates that the Battery terminates testing
3. enableAutoTest(3) - indicates that the Battery enables auto test function
4. disableAutoTest(4) - indicates that the Battery disables auto test function
5. timeautoTest(5) - indicates that the Battery enable timing auto test function
6. offautoTest(6) - indicates that the Battery enable off auto test function
7. timeoffautoTest(7) - indicates that the Battery enable timing+off auto test
"
::= { hwBatteryTestEntry 1 }
hwBatteryTestAutoDischargePeriod OBJECT-TYPE
SYNTAX Integer32
UNITS "day"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Auto discharge test period.
Effective range is 30 -240 days.
Default: 120
Unit: day
"
DEFVAL { 120 }
::= { hwBatteryTestEntry 2 }
hwBatteryTestResult OBJECT-TYPE
SYNTAX INTEGER
{
testing(1),
complete(2),
alarmTerminated(3),
hostTerminated(4),
overtimeTerminated(5),
normal(6),
supplyRecoverAutotestTerminated(7)
}
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Test result:
Options:
1. testing(1) - indicates that the Battery test is in operation
2. complete(2) - indicates that the Battery test is completed normally
3. alarmTerminated(3) - indicates that the Battery test is stopped by alarms
4. hostTerminated(4) - indicates that the Battery test is stopped by the host
5. overtimeTerminated(5) - indicates that the Battery test is stopped because of over time
6. normal(6) - indicates that the Battery test is not started
7. supplyRecoverAutotestTerminated(7) - indicates that the Battery test is stopped because of supply recover
"
::= { hwBatteryTestEntry 3 }
hwBatteryTestStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Time of starting test"
::= { hwBatteryTestEntry 4 }
hwBatteryTestDuration OBJECT-TYPE
SYNTAX Integer32
UNITS "hour"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Battery discharge test duration .
Effective range is 1�C100 hours.
Default :value is 10 hours
Unit: hour
"
::= { hwBatteryTestEntry 5 }
hwBatteryTestTerminateVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "mV"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Battery discharge test end voltage.
Effective range (DC lack alarm voltage+0.5V�Cvoltage of floating charge).
Default: 45600
Unit: mV
"
::= { hwBatteryTestEntry 6 }
hwBatteryTestTotalDischargeAH OBJECT-TYPE
SYNTAX Integer32
UNITS "mAH"
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"
Total discharge AH.
Unit: mAH
"
::= { hwBatteryTestEntry 7 }
hwBatteryTestOperStatus OBJECT-TYPE
SYNTAX INTEGER
{
autoTestPermit(1),
autoTestForbid(2),
timeautoTestPermit(3),
offautoTestPermit(4),
timeoffautoTestPermit(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Battery discharge test operate status.
Options:
1. autoTestPermit(1) - indicates that auto discharge test is enabled
2. autoTestForbid(2) - indicates that auto discharge test is disabled
3. timeautoTestPermit(3) - indicates that timing auto discharge test is enabled
4. offautoTestPermit(4) - indicates that off auto discharge test is enabled
5. timeoffautoTestPermit(5) - indicates that timing-off auto discharge test is enabled"
::= { hwBatteryTestEntry 8 }
hwBatteryTestPhase OBJECT-TYPE
SYNTAX INTEGER
{
charge(1),
discharge(2),
record(3),
finish(4),
waitingfordischarge(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery test phase.
Options:
1. charge(1) - indicates the batter test phase is charge
2. discharge(2) - indicates the batter test phase is discharge
3. record(3) - indicates the power equipment recording test result
4. finish(4) - indicates that the discharge is complete
5.waitingfordischarge(5) - indicates that preparation is ready for discharge command
"
::= { hwBatteryTestEntry 9 }
hwBatteryTestStartHour OBJECT-TYPE
SYNTAX Integer32
UNITS "hour"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Discharge start time.
Effective range is 0 23
Default: 0
Unit: hour
"
DEFVAL { '0'b }
::= { hwBatteryTestEntry 10 }
hwBatteryTestAlarmThreshold OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The battery discharge test alarm threshold in ratio of the range:1~79."
DEFVAL { 70 }
::= { hwBatteryTestEntry 11 }
hwBatteryLogTestTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwBatteryLogTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Battery test result table,
Through this table, the discharging test result of the battery group can be saved and queried.
The indexes of this table are hwEnvEmuIndex, hwPowerIndex, and hwBatteryLogTestIndex.
hwEnvEmuIndex is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwBatteryLogTestIndex is the index of the monitored battery.
"
::= { hwBatteryGroup 5 }
hwBatteryLogTestEntry OBJECT-TYPE
SYNTAX HwBatteryLogTestEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Battery test result table,
Through this table, the discharging test result of the battery group can be saved and queried.
The indexes of this entry are hwEnvEmuIndex, hwPowerIndex, and hwBatteryLogTestIndex.
hwEnvEmuIndex is the index of the monitored unit.
hwPowerIndex is the index of the power supply monitored by the monitoring unit.
hwBatteryLogTestIndex is the index of the monitored battery.
"
INDEX { hwEnvEmuIndex, hwPowerIndex, hwBatteryLogTestIndex }
::= { hwBatteryLogTestTable 1 }
HwBatteryLogTestEntry ::=
SEQUENCE {
hwBatteryLogTestIndex
Integer32,
hwBatteryLogTestStartTime
DateAndTime,
hwBatteryLogTestDischargeDuration
Integer32,
hwBatteryLogTestTerminateVoltage
Integer32,
hwBatteryLogTestBatteryStatus
INTEGER,
hwBatteryLogTestTotalDischargeAH
Integer32,
hwBatteryLogTestFinish
INTEGER,
hwBatteryLogTestEfficiency
Integer32,
hwBatteryLogTestBatteryTemperature
Integer32,
hwBatteryLogTestBatteryCurrent
Integer32
}
hwBatteryLogTestIndex OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery discharge test result index"
::= { hwBatteryLogTestEntry 1 }
hwBatteryLogTestStartTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery discharge test start time"
::= { hwBatteryLogTestEntry 2 }
hwBatteryLogTestDischargeDuration OBJECT-TYPE
SYNTAX Integer32
UNITS "minute"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of discharge.
Unit: minute"
::= { hwBatteryLogTestEntry 3 }
hwBatteryLogTestTerminateVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"End voltage of battery discharge test .
Unit: mV"
::= { hwBatteryLogTestEntry 4 }
hwBatteryLogTestBatteryStatus OBJECT-TYPE
SYNTAX INTEGER
{
expectant(1),
unexpected(2),
unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery status.
Options:
1. expectant(1) - indicates the batter test state is expectant
2. unexpected(2) - indicates the batter test state is unexpected
3. unknown(3) - indicates the batter test state is unknown
"
::= { hwBatteryLogTestEntry 5 }
hwBatteryLogTestTotalDischargeAH OBJECT-TYPE
SYNTAX Integer32
UNITS "mAH"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
Discharge cumulate AH.
Unit: mAH
"
::= { hwBatteryLogTestEntry 6 }
hwBatteryLogTestFinish OBJECT-TYPE
SYNTAX INTEGER
{
testing(1),
completed(2),
alarmTerminated (3),
hostTerminated(4),
overtimeTerminated(5),
notTest(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery Test result.
Options:
1. testing(1) - indicates that it is during testing
2. completed(2) - indicates that the test is completed normally
3. alarmTerminated(3) - indicates that the test is stopped by alarms
4. hostTerminated(4) - indicates that the test is stopped by the host
5. overtimeTerminated(5) - indicates that the test is stopped because of over 100 hours
6. notTest(6) - indicates that the test is not started
"
::= { hwBatteryLogTestEntry 7 }
hwBatteryLogTestEfficiency OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"
The information of battery test efficiency.
"
::= { hwBatteryLogTestEntry 8 }
hwBatteryLogTestBatteryTemperature OBJECT-TYPE
SYNTAX Integer32
UNITS "0.01 Degree"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery discharge test end Temperature.
Unit: 0.01 Degree
"
::= { hwBatteryLogTestEntry 9 }
hwBatteryLogTestBatteryCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery discharge test average Current.
Unit: mA
"
::= { hwBatteryLogTestEntry 10 }
hwRemoteProvidePowerInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRemoteProvidePowerInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Remote provide power basic information table.
The indexes of this table are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
::= { hwPowerMonObjects 7 }
hwRemoteProvidePowerInfoEntry OBJECT-TYPE
SYNTAX HwRemoteProvidePowerInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Remote provide power basic information table.
The indexes of this entry are hwEnvEmuIndex and hwPowerIndex.
hwEnvEmuIndex is the index of the monitored unit,
and hwPowerIndex is the index of the power supply monitored by the monitoring unit.
"
INDEX { hwEnvEmuIndex,hwPowerIndex }
::= { hwRemoteProvidePowerInfoTable 1 }
HwRemoteProvidePowerInfoEntry ::=
SEQUENCE {
hwPowerCentralState
INTEGER,
hwPowerCentralDCInPutState
INTEGER,
hwPowerCentralDCOutputState
INTEGER,
hwPowerCentralDCOutputMode
INTEGER,
hwPowerRemoteCommState
INTEGER,
hwPowerRemoteDCInputState
INTEGER,
hwPowerRemoteLineCurState
INTEGER,
hwPowerRemotePowerState
INTEGER,
hwPowerRemoteLineState
BITS,
hwPowerCentralLoadState
INTEGER
}
hwPowerCentralState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
temOver(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the central module.
Options:
1. normal(1) - indicates the normal state
2. temOver(2) - indicates the over-temperature
"
::= { hwRemoteProvidePowerInfoEntry 1 }
hwPowerCentralDCInPutState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
lack(2),
over(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of central module DC input:
Options:
1.normal(1) - indicates the normal state
2.lack(2) - indicates the voltage underflow
3.over(3) - indicates the voltage overflow
"
::= { hwRemoteProvidePowerInfoEntry 2}
hwPowerCentralDCOutputState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
volLack(2),
volOver(3),
loadOver(4),
shortCircuit(5),
noLoad(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of central module DC output.
Options:
1. normal(1) - indicates the normal state
2. volLack(2) - indicates the voltage underflow
3. volOver(3) - indicates the voltage overflow
4. loadOver(4) - indicates the over-loading
5. shortCircuit(5) - indicates the short circuit
6. noLoad(6) - indicates no load
"
::= { hwRemoteProvidePowerInfoEntry 3 }
hwPowerCentralDCOutputMode OBJECT-TYPE
SYNTAX INTEGER
{
highVolMode(1),
lowVolMode(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Mode of central module DC output.
Options:
1. highVolMode(1) - indicates the high voltage output mode
2. lowVolMode(2) - indicates the low voltage output mode
"
::= { hwRemoteProvidePowerInfoEntry 4 }
hwPowerRemoteCommState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
revfault(2),
sendfault(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Remote power module communications state.
Options:
1. normal(1) - indicates the normal state
2. revfault(2) - indicates the receiving of fault
3. sendfault(3) - indicates the sending of fault"
::= { hwRemoteProvidePowerInfoEntry 5 }
hwPowerRemoteDCInputState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
lack(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"State of remote module DC input.
Options:
1. normal(1) - indicates the normal state
2. lack(2) - indicates that the voltage is underflow
"
::= { hwRemoteProvidePowerInfoEntry 6 }
hwPowerRemoteLineCurState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
cablejoining(2),
curLeakage(3),
curOver(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"state of line between central and remote module.
Options:
1.normal(1) - indicates the normal state
2.cablejoining(2) - indicates the cable joining
3.curLeakage(3) - indicates the cur Leakage
4.curOver(4) - indicates the cur Over
"
::= { hwRemoteProvidePowerInfoEntry 7 }
hwPowerRemotePowerState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
fault(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"state of remote UA60 power.
Options:
1. normal(1) - indicates the normal state
2. fault(2) - indicates the faulty state
"
::= { hwRemoteProvidePowerInfoEntry 8 }
hwPowerRemoteLineState OBJECT-TYPE
SYNTAX BITS
{
u1state(0),
u2state(1),
u3state(2),
u4state(3),
a1state(4),
a2state(5),
a3state(6),
a4state(7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"State of line U1.
Options:
1. u1state(0) - indicates the power remote line state is u1 state
2. u2state(1) - indicates the power remote line state is u2 state
3. u3state(2) - indicates the power remote line state is u3 state
4. u4state(3) - indicates the power remote line state is u4 state
5. a1state(4) - indicates the power remote line state is a1 state
6. a2state(5) - indicates the power remote line state is a2 state
7. a3state(6) - indicates the power remote line state is a3 state
8. a4state(7) - indicates the power remote line state is a4 state
"
::= { hwRemoteProvidePowerInfoEntry 9 }
hwPowerCentralLoadState OBJECT-TYPE
SYNTAX INTEGER
{
normal(1),
overload(2),
nonload(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"state of central load.
Options:
1. normal(1) - indicates the normal state
2. overload(2) - indicates overload
3. nonload(3) - indicates non-load
"
::= { hwRemoteProvidePowerInfoEntry 10 }
hwPowerMibTrap OBJECT IDENTIFIER ::= { hwPower 2 }
hwPowerTrapOid OBJECT IDENTIFIER ::= { hwPowerMibTrap 1 }
hwPowerTrapsDefine OBJECT IDENTIFIER ::= { hwPowerMibTrap 2 }
hwPowerTraps OBJECT IDENTIFIER ::= { hwPowerTrapsDefine 0 }
powerConnFaultAlarm NOTIFICATION-TYPE
OBJECTS {hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
" This trap message is reported when the communication between
the power module and the monitoring board is fault."
::= { hwPowerTraps 1 }
powerConnFaultAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the communication between
the power module and the monitoring board resumes."
::= { hwPowerTraps 2 }
acInputVoltageAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when there is a exception of AC input voltage."
::= { hwPowerTraps 3 }
acInputVoltageAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the state of AC input voltage resumes."
::= { hwPowerTraps 4 }
acInputVoltageHighAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the input voltage is too high."
::= { hwPowerTraps 5 }
acInputVoltageHighAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the input voltage
resumes to the normal range from a high value."
::= { hwPowerTraps 6 }
acInputVoltageLowAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the input voltage is too low."
::= { hwPowerTraps 7 }
acInputVoltageLowAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the input voltage
resumes to the normal range from a low value."
::= { hwPowerTraps 8 }
dcOutputVoltageHighAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output voltage is too high."
::= { hwPowerTraps 9 }
dcOutputVoltageHighAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output voltage
resumes to the normal range from a high value."
::= { hwPowerTraps 10 }
dcOutputCurrentHighAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output current is too high."
::= { hwPowerTraps 11 }
dcOutputCurrentHighAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output current
resumes to the normal range from a high value."
::= { hwPowerTraps 12 }
dcOutputVoltageLowAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output voltage is too low."
::= { hwPowerTraps 13 }
dcOutputVoltageLowAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output voltage
resumes to the normal range from a low value."
::= { hwPowerTraps 14 }
dcOutputCurrentLowAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output current is too low."
::= { hwPowerTraps 15 }
dcOutputCurrentLowAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the output current
resumes to the normal range from a low value."
::= { hwPowerTraps 16 }
overLoadPowerAbnormalAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the state of load power is abnormal."
::= { hwPowerTraps 17 }
overLoadPowerAbnormalAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the state of load power recovers to normal."
::= { hwPowerTraps 18 }
overBattPowerOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the battery is powered off."
::= { hwPowerTraps 19 }
overBattPowerOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the battery is powered on."
::= { hwPowerTraps 20 }
overLoadPowerOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the loadpower is powered off."
::= { hwPowerTraps 21 }
overLoadPowerOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the loadpower is powered on."
::= { hwPowerTraps 22 }
acMainsSupplyAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC mains supply is abnormal."
::= { hwPowerTraps 23 }
acMainsSupplyAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwACLoopIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC mains supply recovers to normal."
::= { hwPowerTraps 24 }
batteryLoopAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the loop of battery group disconnects."
::= { hwPowerTraps 25 }
batteryLoopAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the loop of battery group connects."
::= { hwPowerTraps 26 }
batteryFuseAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the fuse of battery group disconnects."
::= { hwPowerTraps 27 }
batteryFuseAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the fuse of battery group connects. "
::= { hwPowerTraps 28 }
batteryContachAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the contactor of battery group disconnects."
::= { hwPowerTraps 29 }
batteryContachAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the contactor of battery group connects."
::= { hwPowerTraps 30 }
userModuleOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the user module is powered off."
::= { hwPowerTraps 31 }
userModuleOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the user module is powered on."
::= { hwPowerTraps 32 }
transferModuleOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the transfer module is powered off."
::= { hwPowerTraps 33 }
transferModuleOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the transfer module is powered on."
::= { hwPowerTraps 34 }
userModuleSwitchAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the user module is switched off."
::= { hwPowerTraps 35 }
transferModuleSwitchAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the transfer module is switched off."
::= { hwPowerTraps 37 }
loadFuseAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the load fuse is abnormal."
::= { hwPowerTraps 39 }
loadFuseAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the load fuse resumes."
::= { hwPowerTraps 40 }
chargeCtrlStateAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the control state of average or floating charge converts."
::= { hwPowerTraps 41 }
chargeModeAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the charge state converts."
::= { hwPowerTraps 42 }
acCommFailAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC panel communication fails."
::= { hwPowerTraps 43 }
acCommFailAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC panel communication resumes."
::= { hwPowerTraps 44 }
batteryChargeOverAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the Over-current of battery group happens."
::= { hwPowerTraps 45 }
batteryChargeOverAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"OThis trap message is reported when the Over-current of battery group resumes."
::= { hwPowerTraps 46 }
batteryVoltageLackAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the voltage of battery group lacks."
::= { hwPowerTraps 47 }
batteryVoltageLackAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the voltage of battery group recovers from lack."
::= { hwPowerTraps 48 }
loadTwiceOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the load is powered off twice."
::= { hwPowerTraps 49 }
loadTwiceOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the load recovers from powering off twice."
::= { hwPowerTraps 50 }
loadOnceOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the load is powered off once."
::= { hwPowerTraps 51 }
loadOnceOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwBatteryIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the load recovers from powering off once."
::= { hwPowerTraps 52 }
acInputPowerOffAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC input is powered off."
::= { hwPowerTraps 53 }
acInputPowerOffAlarmResume NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC input power is powered off."
::= { hwPowerTraps 54 }
acInputLoopSwtichAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex, hwLoadIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the AC input loop switches to another one."
::= { hwPowerTraps 55 }
batteryDischargeTestStartAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the battery discharge test starts."
::= { hwPowerTraps 56 }
batteryDischargeTestStopAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the battery discharge test stops."
::= { hwPowerTraps 57 }
powerProtectAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the power protection function is enbaled."
::= { hwPowerTraps 58 }
powerUndoProtectAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the power protection function is disabled."
::= { hwPowerTraps 59 }
powerCentralOutputModeSwtichAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the central output mode swtiches to another one."
::= { hwPowerTraps 60 }
powerCentralTempretaureAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the central tempretaure is abnormal."
::= { hwPowerTraps 61 }
powerCentralInputAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the central input voltage is abnormal."
::= { hwPowerTraps 62 }
powerCentralOutputAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the central output voltage is abnormal."
::= { hwPowerTraps 63 }
powerRemoteCommFaultAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the communiction between the remote and central fails."
::= { hwPowerTraps 64 }
powerRemoteVoltageAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the remote voltage is abnormal."
::= { hwPowerTraps 65}
powerLineAlarm NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the power line is abnormal."
::= { hwPowerTraps 66 }
powerRemotePowerAlarm1 NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the remote power is abnormal."
::= { hwPowerTraps 67 }
powerRemotePowerAlarm2 NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the Line UA is abnormal."
::= { hwPowerTraps 68 }
powerRemotePowerAlarm3 NOTIFICATION-TYPE
OBJECTS { hwEnvEmuIndex, hwPowerIndex }
STATUS current
DESCRIPTION
"This trap message is reported when the Central load is abnormal."
::= { hwPowerTraps 69 }
hwACInfomationTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwACInfomationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"AC infomation table. The table is not supported.
The indexes of this table are hwEnvEmuIndex and hwPowerIndex."
::= { hwPowerMonObjects 8 }
hwACInfomationEntry OBJECT-TYPE
SYNTAX HwACInfomationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"AC infomation table. The table is not supported.
The indexes of this entry are hwEnvEmuIndex and hwPowerIndex."
INDEX { hwEnvEmuIndex, hwPowerIndex }
::= { hwACInfomationTable 1 }
HwACInfomationEntry ::=
SEQUENCE {
hwACInfoCommState
INTEGER,
hwACInfoThunderState
INTEGER,
hwACInfoCurrentLoop
Integer32,
hwACInfoMCBTrigger
INTEGER,
hwACInfoFrequency
Integer32,
hwACInfoRowStatus
RowStatus
}
hwACInfoCommState OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
fault(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"communication state of AC input module.
The node is not supported.
Options:
1. normal(0) - indicates the communication state of AC is normal
2. fault(1) - indicates the communication state of AC is fault
"
::= { hwACInfomationEntry 1 }
hwACInfoThunderState OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
fault(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Thunder's state.
The node is not supported.
Options:
1. normal(0) - indicates the state of Thunder is normal
2. fault(1) - indicates the state of Thunder is fault
"
::= { hwACInfomationEntry 2 }
hwACInfoCurrentLoop OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current AC input working loop.
The leaf is not supported.
"
::= { hwACInfomationEntry 3 }
hwACInfoMCBTrigger OBJECT-TYPE
SYNTAX INTEGER
{
normal(0),
break-down(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"AC input MCB trigger state.
The leaf is not supported.
Options:
1. normal(0) - indicates the AC input MCB trigger state is normal
2. break-down(1)- indicates the AC input MCB trigger state is break-down
"
::= { hwACInfomationEntry 4 }
hwACInfoFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "HZ"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The infomation of AC input frequency.
This leaf is not supported.
Unit: HZ
"
::= { hwACInfomationEntry 5 }
hwACInfoRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"RowStatus standard operation
The leaf is not supported.
"
::= { hwACInfomationEntry 6 }
powerConformance OBJECT IDENTIFIER ::= { hwPower 3 }
powerCompliances OBJECT IDENTIFIER ::= { powerConformance 1 }
powerGroups OBJECT IDENTIFIER ::= { powerConformance 2 }
hwEnvironPowerTraps OBJECT IDENTIFIER ::= { hwPower 4 }
hwEnvironPowerCommonTraps OBJECT IDENTIFIER ::= { hwEnvironPowerTraps 1 }
hwEnvironPowerAlarmTraps OBJECT IDENTIFIER ::= { hwEnvironPowerTraps 2 }
hwEnvironPowerAlarmTrapsPrefix OBJECT IDENTIFIER ::= { hwEnvironPowerAlarmTraps 0 }
hwEmmPowerBattaryTestStartTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device battary discharge test starts.
"
::= { hwEnvironPowerAlarmTrapsPrefix 1 }
hwEmmPowerBattaryTestStopTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType,
hwBatteryLogTestBatteryStatus,
hwBatteryLogTestEfficiency
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device battary discharge test ends.
"
::= { hwEnvironPowerAlarmTrapsPrefix 2 }
hwEmmPowerAcvolFaultTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwACLoopIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device AC input voltage is abnormal.
"
::= { hwEnvironPowerAlarmTrapsPrefix 3 }
hwEmmPowerAcvolRecoverTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwACLoopIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device AC input voltage recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 4 }
hwEmmPowerDcvolFaultTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device DC output voltage is abnormal.
"
::= { hwEnvironPowerAlarmTrapsPrefix 5 }
hwEmmPowerDcvolRecoverTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device DC output voltage recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 6 }
hwEmmPowerBattloopFaultTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwBatteryIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device the battery loop is broken.
In this case, the function of he backup power is lost.
"
::= { hwEnvironPowerAlarmTrapsPrefix 7 }
hwEmmPowerBattloopRecoverTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwBatteryIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
device battery loop recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 8 }
hwEmmPowerLoadfuseFaultTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwLoadIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the fuse of the power device
is broken. In this case, the device is powered off.
"
::= { hwEnvironPowerAlarmTrapsPrefix 9 }
hwEmmPowerLoadfuseRecoverTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwLoadIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the fuse of the power
device recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 10 }
hwEmmPowerRectifierFaultTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwRectifierIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the rectifier
module of the power device is abnormal and the spully power may decrease.
"
::= { hwEnvironPowerAlarmTrapsPrefix 11 }
hwEmmPowerRectifierRecoverTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwRectifierIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the rectifier module of the
power device recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 12 }
hwEmmDigMainsupplyFaultTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwDigChannelIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
main supply digital is faulty.
"
::= { hwEnvironPowerAlarmTrapsPrefix 13 }
hwEmmDigMainsupplyRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwDigChannelIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
main supply digital recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 14 }
hwEmmPowerBatteryOffTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
of battary is off.
"
::= { hwEnvironPowerAlarmTrapsPrefix 15 }
hwEmmBatt1TempFaultTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
battery group 1 temperature sensor fault
occurs.
"
::= { hwEnvironPowerAlarmTrapsPrefix 16 }
hwEmmBatt1TempRestoreTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
battery group 1 temperature sensor fault
recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 17 }
hwEmmEnviHumFaultTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
environment humidity sensor fault occurs.
"
::= { hwEnvironPowerAlarmTrapsPrefix 18 }
hwEmmEnviHumRestoreTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
environment humidity sensor fault recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 19 }
hwEmmEnvi1TempFaultTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
environment 1 temperature sensor fault
occurs.
"
::= { hwEnvironPowerAlarmTrapsPrefix 20 }
hwEmmEnvi1TempRestoreTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
environment 1 temperature sensor fault
recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 21 }
hwEmmBattTemFaultTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the battery
temperature out of normal range.
"
::= { hwEnvironPowerAlarmTrapsPrefix 22 }
hwEmmBattTemRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the battery
temperature recovers to normal range.
"
::= { hwEnvironPowerAlarmTrapsPrefix 23 }
hwEmmPowerBatteryOffRecoverTrap NOTIFICATION-TYPE
OBJECTS {
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power
of battary recovers to on state.
"
::= { hwEnvironPowerAlarmTrapsPrefix 24 }
hwEmmPowerBatteryUnDetectTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
one or more batteries are not detected.
"
::= { hwEnvironPowerAlarmTrapsPrefix 25 }
hwEmmPowerBatteryDetectRecoverTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
batteries recover.
"
::= { hwEnvironPowerAlarmTrapsPrefix 26 }
hwPowerModuleMismatchTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the
the power supply system detects mismatched power module .
"
::= { hwEnvironPowerAlarmTrapsPrefix 27 }
hwPowerModuleRestoreTrap NOTIFICATION-TYPE
OBJECTS
{
hwFrameIndex,
hwEnvEmuIndex,
hwPowerIndex,
hwEnvEmuType,
hwPowerType
}
STATUS current
DESCRIPTION
"The agent generates this trap when the power module recovers.
"
::= { hwEnvironPowerAlarmTrapsPrefix 28 }
END
|