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
|
-- ****************************************************************************
-- Copyright(C) 2019 Panduit
-- G5 PDU SNMP MIB DEFINITIONS
-- ****************************************************************************
-- ====================================================================================
PANDUIT-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises FROM RFC1155-SMI
Counter FROM RFC1155-SMI
DisplayString FROM RFC1213-MIB
ifIndex FROM RFC1213-MIB
ifDescr FROM RFC1213-MIB
sysName FROM RFC1213-MIB
sysDescr FROM RFC1213-MIB
sysContact FROM RFC1213-MIB
sysLocation FROM RFC1213-MIB
OBJECT-TYPE FROM RFC-1212
NOTIFICATION-TYPE FROM RFC-1215;
panduit OBJECT IDENTIFIER ::= { enterprises 19536 }
g5 MODULE-IDENTITY
LAST-UPDATED "201902021200Z" -- 2 February 2019
ORGANIZATION "Panduit"
CONTACT-INFO "Panduit
Postal: Panduit
18900 Panduit Drive
Tinley Park, IL 60487
USA
Tel: +1 708 532-1800/888-506-5400
E-mail: techsupport@panduit.com"
DESCRIPTION
"SmartZone G5 iPDU"
REVISION "201902021200Z" -- 12 February 2019
DESCRIPTION
"Fix the index and access hub and added the Energy Thresholds"
REVISION "201801121200Z" -- 12 January 2018
DESCRIPTION
"First Major Release"
::= { panduit 10 }
--
-- pdug5 Monitored Managed PDU object identifiers
--
pdug5 OBJECT IDENTIFIER ::= {g5 1}
pdug5Ident OBJECT IDENTIFIER ::= { pdug5 1 }
pdug5Input OBJECT IDENTIFIER ::= { pdug5 2 }
pdug5Group OBJECT IDENTIFIER ::= { pdug5 3 }
pdug5Environment OBJECT IDENTIFIER ::= { pdug5 4 }
pdug5Outlet OBJECT IDENTIFIER ::= { pdug5 5 }
pdug5Traps OBJECT IDENTIFIER ::= { pdug5 6 }
pdug5TrapInfo OBJECT IDENTIFIER ::= { pdug5 7 }
-- ====================================================================================
-- ====================================================================================
-- pdug5 - monitored and managed PDU line
-- pdug5 (Panduit PDU) - Metered PDU - Switched PDU - Metered+Switched PDU
-- ====================================================================================
--
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5Ident OBJECT IDENTIFIER ::= { pdug5 1 }
-- PDU identification group
-- OID= .1.3.6.1.4.1.19536.10.1.1
pdug5NumberPDU OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of PDUs detected (in its daisy chain)."
::= { pdug5Ident 1 }
-- ======= pdug5 Identification ===========
pdug5IdentTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5IdentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Aggregate Object with number of entries equal to pdug5NumberPDU ."
::= { pdug5Ident 2 }
pdug5IdentEntry OBJECT-TYPE
SYNTAX pdug5IdentEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The Identity table entry containing the name, model, manufacturer,
firmware version, part number, etc."
INDEX { pdug5IdentIndex }
::= { pdug5IdentTable 1 }
pdug5IdentEntry ::= SEQUENCE {
pdug5IdentIndex INTEGER,
pdug5Name DisplayString,
pdug5Model DisplayString,
pdug5Manufacturer DisplayString,
pdug5FirmwareVersion DisplayString,
pdug5FirmwareVersionTimeStamp DisplayString,
pdug5PartNumber DisplayString,
pdug5SerialNumber DisplayString,
pdug5Status INTEGER,
pdug5Controllable INTEGER,
pdug5InputPhaseCount INTEGER,
pdug5GroupCount INTEGER,
pdug5OutletCount INTEGER,
pdug5MACAddress DisplayString,
pdug5IPv4Address DisplayString,
pdug5IPv6Address DisplayString
}
pdug5IdentIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index for the pdug5IdentEntry table."
::= { pdug5IdentEntry 1 }
pdug5Name OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The string identify the device in daisy chain. Example PDU A."
::= { pdug5IdentEntry 2 }
pdug5Model OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Device Model."
::= { pdug5IdentEntry 3 }
pdug5Manufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Device Manufacturer Name."
::= { pdug5IdentEntry 4 }
pdug5FirmwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The firmware revision level of the device."
::= { pdug5IdentEntry 5 }
pdug5FirmwareVersionTimeStamp OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timestamp of when the PDU firmware was last updated"
::= { pdug5IdentEntry 6 }
pdug5PartNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device part number. Example P36E09M."
::= { pdug5IdentEntry 7 }
pdug5SerialNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device serial number, 10-digit."
::= { pdug5IdentEntry 8 }
pdug5Status OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The overall status of the device. A value of OK(2) indicates the device is operating normally.
A value of degraded(3) indicates the device is operating with warning indicators. A value of
failed(4) indicates the device is operating with critical indicators."
::= { pdug5IdentEntry 9 }
pdug5Controllable OBJECT-TYPE
SYNTAX INTEGER
{
yes(1),
no(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This object indicates whether or not the device is controllable."
::= { pdug5IdentEntry 10 }
pdug5InputPhaseCount OBJECT-TYPE
SYNTAX INTEGER (1..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of input phase on this pdu 1 or 3."
::= { pdug5IdentEntry 11 }
pdug5GroupCount OBJECT-TYPE
SYNTAX INTEGER (0..12)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of groups (breakers) on this pdu."
::= { pdug5IdentEntry 12 }
pdug5OutletCount OBJECT-TYPE
SYNTAX INTEGER (1..48)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of outlets in this PDU."
::= { pdug5IdentEntry 13 }
pdug5MACAddress OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The assigned MAC address for this PDU."
::={ pdug5IdentEntry 14 }
pdug5IPv4Address OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current IPv4 Address.
A value of 0.0.0.0 indicates an error or an unset option."
::={ pdug5IdentEntry 15 }
pdug5IPv6Address OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current IPv6 Address.
A vale of 0.0.0.0.0.0 indicates an error or an unset option."
::={ pdug5IdentEntry 16 }
-- ============ pdug5 Configuration =======
pdug5ConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5ConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Aggregate Object with number of entries equal to pdug5NumberPDU."
::= { pdug5Ident 3 }
pdug5ConfigEntry OBJECT-TYPE
SYNTAX pdug5ConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Read Configuration data from the PDU being queried."
INDEX {pdug5ConfigIndex}
::= {pdug5ConfigTable 1}
pdug5ConfigEntry ::= SEQUENCE{
pdug5ConfigIndex INTEGER,
pdug5ConfigSsh INTEGER,
pdug5ConfigFtps INTEGER,
pdug5ConfigHttp INTEGER,
pdug5ConfigHttps INTEGER,
pdug5ConfigIPv4IPv6Switch INTEGER,
pdug5ConfigRedfishAPI INTEGER,
pdug5ConfigOledDispalyOrientation INTEGER,
pdug5ConfigEnergyReset INTEGER,
pdug5ConfigNetworkManagementCardReset INTEGER,
pdug5ConfigDaisyChainStatus INTEGER
}
pdug5ConfigIndex OBJECT-TYPE
SYNTAX INTEGER (1..4)
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The index of PDU configuration entry."
::={pdug5ConfigEntry 1}
pdug5ConfigSsh OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to off(0) will disable the SSH conneciton.
Setting this OID to on(1) will enable the SSH connection. iNC reboot will be required for the settings to take effect."
::={pdug5ConfigEntry 2}
pdug5ConfigFtps OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to off(0) will disable the FTPS connection.
Setting this OID to on(1) will enable the FTPS connection. iNC reboot will be required for the settings to take effect"
::={pdug5ConfigEntry 3}
pdug5ConfigHttp OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to off(0) will disable the HTTP connection.
Setting this OID to on(1) will enable the HTTP connection.iNC reboot will be required for the settings to take effect"
::={pdug5ConfigEntry 4}
pdug5ConfigHttps OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to off(0) will disable the HTTPS connection.
Setting this OID to on(1) will enable the HTTPS connection.iNC reboot will be required for the settings to take effect"
::={pdug5ConfigEntry 5}
pdug5ConfigIPv4IPv6Switch OBJECT-TYPE
SYNTAX INTEGER{
iPv4(1),
iPv6(2),
iPv4IPv6(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to IPv4(1) will enable the IPv4 configuration.
Setting this OID to IPv6(2) will enable the IPv6 configuration.
Setting this OID to IPv4&IPv6(3) will enable both IPv4 and IPv6 configuration.iNC reboot will be required for the settings to take effect"
::={pdug5ConfigEntry 6}
pdug5ConfigRedfishAPI OBJECT-TYPE
SYNTAX INTEGER{
off(0),
on(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to off(0) will disable the Redfish API.
Setting this OID to on(1) will enable the Redfish API.iNC reboot will be required for the settings to take effect"
::={pdug5ConfigEntry 7}
pdug5ConfigOledDispalyOrientation OBJECT-TYPE
SYNTAX INTEGER{
displayNormal(1),
displayReverse(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the intended physical orientation of OLED display.
displayNormal(1) indicates normal orientation.
displayReverse(2) indicates upside down orientation."
::={pdug5ConfigEntry 8}
pdug5ConfigEnergyReset OBJECT-TYPE
SYNTAX INTEGER{
noOperation(1),
reset(2),
notSupported(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID to reset(2) will cause the device energy meter value
to be reset to zero. Getting this OID in models that support this feature
will do nothing and return the noOperation(1) value. Models that do not
supported this feature will respond to this OID with a value of notSupported(3).
Attempts to set this OID in these models will fail."
::={pdug5ConfigEntry 9}
pdug5ConfigNetworkManagementCardReset OBJECT-TYPE
SYNTAX INTEGER{
noOperation(0),
reset(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Getting this OID will return noOperation(0).
Getting this OID to reset(1) will reset iNC."
::={pdug5ConfigEntry 10}
pdug5ConfigDaisyChainStatus OBJECT-TYPE
SYNTAX INTEGER{
daisychain(0),
rna(1)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Setting this OID will change daisychain mode. 0:QNA,1:DNA."
::={pdug5ConfigEntry 11}
-- ====================================================================================--
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5Ident OBJECT IDENTIFIER ::= { pdug5 2 }
-- PDU input group
-- OID= .1.3.6.1.4.1.19536.10.1.2
pdug5InputTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5InputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Aggregate Object with number of entries equal to pdug5NumberPDU ."
::= { pdug5Input 1 }
pdug5InputEntry OBJECT-TYPE
SYNTAX pdug5InputEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The ident table entry containing the VA, Watts, WH, etc."
INDEX { pdug5IdentIndex }
::= { pdug5InputTable 1 }
pdug5InputEntry ::= SEQUENCE {
pdug5InputType INTEGER,
pdug5InputFrequency INTEGER,
pdug5InputFrequencyStatus INTEGER,
pdug5InputPowerVA INTEGER,
pdug5InputPowerWatts INTEGER,
pdug5InputTotalEnergy INTEGER,
pdug5InputPowerWattHourTimer DisplayString,
pdug5InputResettableEnergy INTEGER,
pdug5InputPowerFactor INTEGER,
pdug5InputPowerVAR INTEGER,
pdug5InputTotalCurrent INTEGER
}
pdug5InputType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
splitPhase (2),
threePhaseDelta (3),
threePhaseWye (4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of input - single phase, split phase, three phase delta, or three
phase wye."
::= { pdug5InputEntry 1 }
pdug5InputFrequency OBJECT-TYPE
SYNTAX INTEGER (0..2147483647) -- UNITS RMS 0.001 Hz
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The measured input frequency from the PDU meters in tenths of Hz."
::= { pdug5InputEntry 2 }
pdug5InputFrequencyStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
outOfRange (2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured input frequency relative to the nominal frequency and the admitted tolerance."
::= { pdug5InputEntry 3 }
pdug5InputPowerVA OBJECT-TYPE
SYNTAX INTEGER -- Units in VA
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A total input VA of all phases. Units are VA. A negative value indicates
that this object is not available."
::= { pdug5InputEntry 4 }
pdug5InputPowerWatts OBJECT-TYPE
SYNTAX INTEGER -- Units in Watts
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A total input Watts of all phases. Units are Watts. A negative value indicates
that this object is not available."
::= { pdug5InputEntry 5 }
pdug5InputTotalEnergy OBJECT-TYPE
SYNTAX INTEGER -- Units in KWh
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A total input Watt-Hour value for all phases. Units are KWh. This value is accumulated since PDU in service.
A negative value indicates that this object is not available."
::= { pdug5InputEntry 6 }
pdug5InputPowerWattHourTimer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22)) -- display Date Time Since Last Reset
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A Timestamp of when the Total Input WH was last reset."
::= { pdug5InputEntry 7 }
pdug5InputResettableEnergy OBJECT-TYPE
SYNTAX INTEGER -- Units in Wh
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A total input Watt-Hour value for all phases. Units are Wh. This value can be reset to 0
using GUI. In that case, the pdug5InputPowerWattHourTimer will be reset as well
A negative value indicates that this object is not available."
::= { pdug5InputEntry 8 }
pdug5InputPowerFactor OBJECT-TYPE
SYNTAX INTEGER -- units 0.01
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input PF value. Units are in thousandths, for example a power factor
of 0.95 would be returned as 95, and 0.92 would be returned as 92.
A negative value indicates that this object is not available."
::= { pdug5InputEntry 9 }
pdug5InputPowerVAR OBJECT-TYPE
SYNTAX INTEGER -- Units in VAR
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { pdug5InputEntry 10 }
pdug5InputTotalCurrent OBJECT-TYPE
SYNTAX INTEGER -- Units are 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"All phases total current value. Units are 0.01 amps.
For 3 phase, mathematically add totally 3 phase current together."
::= { pdug5InputEntry 11 }
-- ==========Input per Phase =============
pdug5InputPhaseTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5InputPhaseEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Aggregate Object with number of entries equal to number of PDUs (pdug5NumberPDU) and
number of input phase (pdug5InputPhaseCount)."
::= {pdug5Input 2}
pdug5InputPhaseEntry OBJECT-TYPE
SYNTAX pdug5InputPhaseEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The input table entry containing the voltage, current, frequency, power for each phase.
Entries are given with number of pdu and number of input phase 1, 2, or 3."
INDEX { pdug5IdentIndex, pdug5InputPhaseIndex }
::= { pdug5InputPhaseTable 1 }
pdug5InputPhaseEntry ::= SEQUENCE {
pdug5InputPhaseIndex INTEGER,
pdug5InputPhaseVoltageMeasType INTEGER,
pdug5InputPhaseVoltage INTEGER,
pdug5InputPhaseVoltageThStatus INTEGER,
pdug5InputPhaseVoltageThLowerWarning INTEGER,
pdug5InputPhaseVoltageThLowerCritical INTEGER,
pdug5InputPhaseVoltageThUpperWarning INTEGER,
pdug5InputPhaseVoltageThUpperCritical INTEGER,
pdug5InputPhaseCurrentMeasType INTEGER,
pdug5InputPhaseCurrentRating INTEGER,
pdug5InputPhaseCurrent INTEGER,
pdug5InputPhaseCurrentThStatus INTEGER,
pdug5InputPhaseCurrentThLowerWarning INTEGER,
pdug5InputPhaseCurrentThLowerCritical INTEGER,
pdug5InputPhaseCurrentThUpperWarning INTEGER,
pdug5InputPhaseCurrentThUpperCritical INTEGER,
pdug5InputPhaseCurrentPercentLoad INTEGER,
pdug5InputPhasePowerMeasType INTEGER,
pdug5InputPhasePowerVA INTEGER,
pdug5InputPhasePowerWatts INTEGER,
pdug5InputPhasePowerWattHour INTEGER,
pdug5InputPhasePowerWattHourTimer DisplayString,
pdug5InputPhasePowerFactor INTEGER,
pdug5InputPhasePowerVAR INTEGER,
pdug5InputPhaseVoltageThResetThld INTEGER,
pdug5InputPhaseVoltageThChangeDelay INTEGER,
pdug5InputPhaseVoltageThCtrl INTEGER,
pdug5InputPhaseCurrentThResetThld INTEGER,
pdug5InputPhaseCurrentThChangeDelay INTEGER,
pdug5InputPhaseCurrentThCtrl INTEGER,
pdug5InputPowerThresholdThLowerWarning INTEGER,
pdug5InputPowerThresholdThLowerCritical INTEGER,
pdug5InputPowerThresholdThUpperWarning INTEGER,
pdug5InputPowerThresholdThUpperCritical INTEGER,
pdug5InputPowerThresholdThResetThld INTEGER,
pdug5InputPowerThresholdThChangeDelay INTEGER,
pdug5InputPowerThresholdThCtrl INTEGER,
pdug5InputEnergyThresholdThUpperWarning INTEGER,
pdug5InputEnergyThresholdThUpperCritical INTEGER,
pdug5InputEnergyThresholdThResetThld INTEGER,
pdug5InputEnergyThresholdThChangeDelay INTEGER,
pdug5InputEnergyThresholdThCtrl INTEGER
}
pdug5InputPhaseIndex OBJECT-TYPE
SYNTAX INTEGER (1..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index for the pdug5InputEntry table."
::= { pdug5InputPhaseEntry 1}
pdug5InputPhaseVoltageMeasType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
phase1toN (2),
phase2toN (3),
phase3toN (4),
phase1to2 (5),
phase2to3 (6),
phase3to1 (7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value indicates what input voltage is being measured in this table row - single phase
voltage, phase 1 to neutral, phase 2 to neutral, phase 3 to neutral, phase 1 to phase 2,
phase 2 to phase 3, or phase 3 to phase 1."
::= { pdug5InputPhaseEntry 2 }
pdug5InputPhaseVoltage OBJECT-TYPE
SYNTAX INTEGER -- UNITS RMS 0.1 V
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input voltage measurement value. Values is in 0.1 V."
::= {pdug5InputPhaseEntry 3}
pdug5InputPhaseVoltageThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured input voltage relative to the configured thresholds."
::= { pdug5InputPhaseEntry 4 }
pdug5InputPhaseVoltageThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 5 }
pdug5InputPhaseVoltageThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 6 }
pdug5InputPhaseVoltageThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 7 }
pdug5InputPhaseVoltageThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 8 }
pdug5InputPhaseCurrentMeasType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
neutral (2),
phase1 (3),
phase2 (4),
phase3 (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Which input wire is being measured in this table row - single phase, neutral, phase 1,
phase 2, or phase 3."
::= { pdug5InputPhaseEntry 9 }
pdug5InputPhaseCurrentRating OBJECT-TYPE
SYNTAX INTEGER -- Units in 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rated current capacity of the input. A negative value indicates that
the hardware current capacity is unknown. Units are 0.01 amps."
::= { pdug5InputPhaseEntry 10 }
pdug5InputPhaseCurrent OBJECT-TYPE
SYNTAX INTEGER -- Units in 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input current measurement value. Units are 0.01 amps."
::= { pdug5InputPhaseEntry 11 }
pdug5InputPhaseCurrentThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured input current relative to the configured thresholds."
::= { pdug5InputPhaseEntry 12 }
pdug5InputPhaseCurrentThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 13 }
pdug5InputPhaseCurrentThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 14 }
pdug5InputPhaseCurrentThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 15 }
pdug5InputPhaseCurrentThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 16 }
pdug5InputPhaseCurrentPercentLoad OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Current percent load, based on the rated current capacity. Units are
percentage, for example 80% will be returned as 80. A negative
value indicates that this object is not available."
::= { pdug5InputPhaseEntry 17 }
pdug5InputPhasePowerMeasType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
neutral (2),
phase1 (3),
phase2 (4),
phase3 (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Which input wire is being measured in this table row - single phase, neutral, phase 1,
phase 2, or phase 3."
::= { pdug5InputPhaseEntry 18 }
pdug5InputPhasePowerVA OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input VA value. Units are VA. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 19 }
pdug5InputPhasePowerWatts OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input Watts value. Units are Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 20 }
pdug5InputPhasePowerWattHour OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A Watt-Hour value for each Input phase. Units are WH. This value can be reset to 0
using GUI. In that case, the pdug5InputPhasePowerWattHourTimer will be reset as well
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 21 }
pdug5InputPhasePowerWattHourTimer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22)) -- display Date Time
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timestamp of when input Watt-hours (inputWh) was last reset."
::= { pdug5InputPhaseEntry 22 }
pdug5InputPhasePowerFactor OBJECT-TYPE
SYNTAX INTEGER -- units 0.01
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input PF value. Units are in thousandths, for example a power factor
of 0.95 would be returned as 95, and 0.92 would be returned
as 92. A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 23 }
pdug5InputPhasePowerVAR OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An input VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 24 }
-- 1.3.6.1.4.1.19536.10.1.2.2.1.25
pdug5InputPhaseVoltageThResetThld OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Input phase voltage alarm reset threshold. Units are 0.1 volts.
A negative value indicates that this object is not available."
DEFVAL { 0 }
::= { pdug5InputPhaseEntry 25 }
-- 1.3.6.1.4.1.19536.10.1.2.2.1.26
pdug5InputPhaseVoltageThChangeDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Input phase voltage alarm change delay. Units are 0.1 volts.
A negative value indicates that this object is not available."
DEFVAL { 0 }
::= { pdug5InputPhaseEntry 26 }
-- 1.3.6.1.4.1.19536.10.1.2.2.1.27
pdug5InputPhaseVoltageThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Input phase voltage alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5InputPhaseEntry 27 }
-- 1.3.6.1.4.1.19536.10.1.2.2.1.28
pdug5InputPhaseCurrentThResetThld OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Input phase current alarm reset threshold. Units are 0.01 amps.
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 28 }
-- 1.3.6.1.4.1.19536.10.1.2.2.1.29
pdug5InputPhaseCurrentThChangeDelay OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Input phase current alarm change delay. Units are 0.01 amps.
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 29 }
-- 1.3.6.1.4.1.19536.10.1.2.2.1.30
pdug5InputPhaseCurrentThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Input phase current alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5InputPhaseEntry 30 }
pdug5InputPowerThresholdThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning Power threshold. Units are in Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 31 }
pdug5InputPowerThresholdThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical Power threshold. Units are in Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 32 }
pdug5InputPowerThresholdThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning Power threshold. Units are in Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 33 }
pdug5InputPowerThresholdThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical Power threshold. Units are in Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 34 }
pdug5InputPowerThresholdThResetThld OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Power alarm reset threshold. Units are in Watts.
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 35 }
pdug5InputPowerThresholdThChangeDelay OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Power alarm change delay. Units are in Watts.
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 36 }
pdug5InputPowerThresholdThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Power alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5InputPhaseEntry 37 }
pdug5InputEnergyThresholdThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning Energy threshold. Units are in Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 38 }
pdug5InputEnergyThresholdThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical Energy threshold. Units are in Watts. A negative value indicates
that this object is not available."
::= { pdug5InputPhaseEntry 39 }
pdug5InputEnergyThresholdThResetThld OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Energy alarm reset threshold. Units are in Watts.
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 40 }
pdug5InputEnergyThresholdThChangeDelay OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units in W
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Energy alarm change delay. Units are in Watts.
A negative value indicates that this object is not available."
::= { pdug5InputPhaseEntry 41 }
pdug5InputEnergyThresholdThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Energy alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5InputPhaseEntry 42 }
-- ====================================================================================
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5Group OBJECT IDENTIFIER ::= { pdug5 3 }
-- pdug5 Output groups of outlets
-- OID= .1.3.6.1.4.1.19536.10.1.3
pdug5GroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5GroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "Aggregate Object with number of entries equal to number of PDUs
and number of breakers (pdug5GroupCount)."
::= { pdug5Group 1 }
pdug5GroupEntry OBJECT-TYPE
SYNTAX pdug5GroupEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The input table entry containing the name, voltages, currents, power, etc."
INDEX { pdug5IdentIndex, pdug5GroupIndex }
::= { pdug5GroupTable 1 }
pdug5GroupEntry ::= SEQUENCE {
pdug5GroupIndex INTEGER,
pdug5GroupName DisplayString,
pdug5GroupType INTEGER,
pdug5GroupVoltageMeasType INTEGER,
pdug5GroupVoltage INTEGER,
pdug5GroupVoltageThStatus INTEGER,
pdug5GroupVoltageThLowerWarning INTEGER,
pdug5GroupVoltageThLowerCritical INTEGER,
pdug5GroupVoltageThUpperWarning INTEGER,
pdug5GroupVoltageThUpperCritical INTEGER,
pdug5groupCurrentRating INTEGER,
pdug5GroupCurrent INTEGER,
pdug5GroupCurrentThStatus INTEGER,
pdug5GroupCurrentThLowerWarning INTEGER,
pdug5GroupCurrentThLowerCritical INTEGER,
pdug5GroupCurrentThUpperWarning INTEGER,
pdug5GroupCurrentThUpperCritical INTEGER,
pdug5GroupCurrentPercentLoad INTEGER,
pdug5GroupPowerVA INTEGER,
pdug5GroupPowerWatts INTEGER,
pdug5GroupPowerWattHour INTEGER,
pdug5GroupPowerWattHourTimer DisplayString,
pdug5GroupPowerFactor INTEGER,
pdug5GroupPowerVAR INTEGER,
pdug5GroupOutletCount INTEGER,
pdug5GroupBreakerStatus INTEGER,
pdug5GroupVoltageThCtrl INTEGER,
pdug5GroupCurrentThCtrl INTEGER
}
pdug5GroupIndex OBJECT-TYPE
SYNTAX INTEGER (0..12)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index for the pdug5GroupEntry table."
::= { pdug5GroupEntry 1 }
pdug5GroupName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the group."
::= { pdug5GroupEntry 2 }
pdug5GroupType OBJECT-TYPE
SYNTAX INTEGER {
breaker1pole (2),
breaker2pole (3),
breaker3pole (4),
outletSection (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of the group. (5) has no breaker"
::= { pdug5GroupEntry 3 }
pdug5GroupVoltageMeasType OBJECT-TYPE
SYNTAX INTEGER {
singlePhase (1),
phase1toN (2),
phase2toN (3),
phase3toN (4),
phase1to2 (5),
phase2to3 (6),
phase3to1 (7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Value indicates what input voltage is being measured in this table row - single phase
voltage, phase 1 to neutral, phase 2 to neutral, phase 3 to neutral, phase 1 to phase 2,
phase 2 to phase 3, or phase 3 to phase 1."
::= { pdug5GroupEntry 4 }
pdug5GroupVoltage OBJECT-TYPE
SYNTAX INTEGER -- Units 0.1 V
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Units are 0.1 volts."
::= { pdug5GroupEntry 5 }
pdug5GroupVoltageThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured group voltage relative to the configured thresholds."
::= { pdug5GroupEntry 6 }
pdug5GroupVoltageThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 7 }
pdug5GroupVoltageThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 8 }
pdug5GroupVoltageThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 9 }
pdug5GroupVoltageThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..500000) -- Units 0.1 V
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are 0.1 volts. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 10 }
pdug5groupCurrentRating OBJECT-TYPE
SYNTAX INTEGER -- Units 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rated current capacity of the group. Units are 0.01 amps. A negative
value indicates that the hardware current capacity is unknown (it
will always be unknown for custom groups)."
::= { pdug5GroupEntry 11 }
pdug5GroupCurrent OBJECT-TYPE
SYNTAX INTEGER -- Units 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A group current measurement value. Units are 0.01 amps."
::= { pdug5GroupEntry 12 }
pdug5GroupCurrentThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured group current relative to the configured thresholds."
::= { pdug5GroupEntry 13 }
pdug5GroupCurrentThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 14 }
pdug5GroupCurrentThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 15 }
pdug5GroupCurrentThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 16 }
pdug5GroupCurrentThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..100000) -- Units 0.01 A
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are 0.01 amps. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 17 }
pdug5GroupCurrentPercentLoad OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current percent load, based on the rated current capacity. Units are
percentage, for example 80% will be returned as 80. A negative
value indicates that this object is not available."
::= { pdug5GroupEntry 18 }
pdug5GroupPowerVA OBJECT-TYPE
SYNTAX INTEGER -- units in VA
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A group VA value. Units are VA. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 19 }
pdug5GroupPowerWatts OBJECT-TYPE
SYNTAX INTEGER -- units in Watt
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A group power value. Units are Watts. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 20 }
pdug5GroupPowerWattHour OBJECT-TYPE
SYNTAX INTEGER -- Units in Watt-Hour
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A Watt-Hour value for each section. Units are WH. This value can be reset to 0
using GUI. In that case, the pdug5GroupPowerWattHourTimer will be reset as well.
A negative value indicates that this object is not available."
::= { pdug5GroupEntry 21 }
pdug5GroupPowerWattHourTimer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22)) -- display Date and Time
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timestamp of when group Watt-hours (groupWh) was last reset."
::= { pdug5GroupEntry 22 }
pdug5GroupPowerFactor OBJECT-TYPE
SYNTAX INTEGER -- Value is in 0.01
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A group PF value. Units are in thousandths, for example a power factor
of 0.95 would be returned as 95, and 0.92 would be returned as 92.
A negative value indicates that this object is not available."
::= { pdug5GroupEntry 23 }
pdug5GroupPowerVAR OBJECT-TYPE
SYNTAX INTEGER -- Units in VAR
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A group VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { pdug5GroupEntry 24 }
pdug5GroupOutletCount OBJECT-TYPE
SYNTAX INTEGER (0..48)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of outlets in each group (breaker)."
::= { pdug5GroupEntry 25 }
pdug5GroupBreakerStatus OBJECT-TYPE
SYNTAX INTEGER {
notApplicable (1),
breakerOn (2),
breakerOff (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Only applicable to groups with breaker. Indicates whether a breaker is turned
off or on."
::= { pdug5GroupEntry 26 }
-- 1.3.6.1.4.1.19536.10.1.3.1.1.27
pdug5GroupVoltageThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Circuit Breaker voltage alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5GroupEntry 27 }
-- 1.3.6.1.4.1.19536.10.1.3.1.1.28
pdug5GroupCurrentThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Circuit Breaker current alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
::= { pdug5GroupEntry 28 }
-- ====================================================================================
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5Environment OBJECT IDENTIFIER ::= { pdug5 4 }
-- pdug5 Environment group
-- PDU identification group
-- OID= .1.3.6.1.4.1.19536.10.1.4
pdug5EnvProbeTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5EnvProbeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of environment probe (1 per PDU) for temperature, humidity, and contacts.
The number of entries is given by number of PDUs in daisy chain."
::= { pdug5Environment 1 }
pdug5EnvProbeEntry OBJECT-TYPE
SYNTAX pdug5EnvProbeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Aggregate entries equal to number of PDUs."
INDEX { pdug5IdentIndex }
::= { pdug5EnvProbeTable 1 }
pdug5EnvProbeEntry ::= SEQUENCE {
pdug5TemperatureScale INTEGER,
pdug5TemperatureCount INTEGER,
pdug5HumidityCount INTEGER,
pdug5DoorCount INTEGER,
pdug5DryCount INTEGER,
pdug5SpotCount INTEGER,
pdug5RopeCount INTEGER,
pdug5HidCount INTEGER
}
pdug5TemperatureScale OBJECT-TYPE
SYNTAX INTEGER {
celsius (1),
fahrenheit (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Scale used to return temperature objects."
::= { pdug5EnvProbeEntry 1 }
pdug5TemperatureCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of temperature measurements.The MAX is 6 (1 per probe)."
::= { pdug5EnvProbeEntry 2 }
pdug5HumidityCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of humidity measurements.The MAX is 6(1 per probe)."
::= { pdug5EnvProbeEntry 3 }
pdug5DoorCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of door sensors.The MAX is 6(1 per probe)."
::= { pdug5EnvProbeEntry 4 }
pdug5DryCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of dry sensors.The MAX is 2(1 per probe)."
::= { pdug5EnvProbeEntry 5 }
pdug5SpotCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of spot sensors.The MAX is 2(1 per probe)."
::= { pdug5EnvProbeEntry 6 }
pdug5RopeCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rope sensors.The MAX is 2(1 per probe)."
::= { pdug5EnvProbeEntry 7 }
pdug5HidCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hid sensors. The MAX is 2(1 per probe)."
::= { pdug5EnvProbeEntry 10 }
-- ========Temperature Measurements ============
pdug5TemperatureTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5TemperatureEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of temperature probe measurements. The number of entries are
given by number of pdu and pdug5TemperatureCount."
::= { pdug5Environment 2 }
pdug5TemperatureEntry OBJECT-TYPE
SYNTAX pdug5TemperatureEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a temperature measurement."
INDEX { pdug5IdentIndex, pdug5TemperatureIndex }
::= { pdug5TemperatureTable 1 }
pdug5TemperatureEntry ::= SEQUENCE {
pdug5TemperatureIndex INTEGER,
pdug5TemperatureName DisplayString,
pdug5TemperatureProbeStatus INTEGER,
pdug5TemperatureValue INTEGER,
pdug5TemperatureThStatus INTEGER,
pdug5TemperatureThLowerWarning INTEGER,
pdug5TemperatureThLowerCritical INTEGER,
pdug5TemperatureThUpperWarning INTEGER,
pdug5TemperatureThUpperCritical INTEGER,
pdug5TemperatureThCtrl INTEGER
}
pdug5TemperatureIndex OBJECT-TYPE
SYNTAX INTEGER (1..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each temperature probe measurement. Its value
ranges from 1 to temperatureCount."
::= { pdug5TemperatureEntry 1 }
pdug5TemperatureName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the temperature probe."
::= { pdug5TemperatureEntry 2 }
pdug5TemperatureProbeStatus OBJECT-TYPE
SYNTAX INTEGER {
disconnected (1),
connected (2),
bad (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { pdug5TemperatureEntry 3 }
pdug5TemperatureValue OBJECT-TYPE
SYNTAX INTEGER --0.1 Fahrenheit or Celsius
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Units are degree(either Fahrenheit or Celsius)."
::= { pdug5TemperatureEntry 4 }
pdug5TemperatureThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured temperature relative to the configured thresholds."
::= { pdug5TemperatureEntry 5 }
pdug5TemperatureThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..150000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are degrees. A negative value
indicates that this object is not available."
::= { pdug5TemperatureEntry 6 }
pdug5TemperatureThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..150000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are degrees. A negative value
indicates that this object is not available."
::= { pdug5TemperatureEntry 7 }
pdug5TemperatureThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..150000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are degrees. A negative value
indicates that this object is not available."
::= { pdug5TemperatureEntry 8 }
pdug5TemperatureThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..150000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are degrees. A negative value
indicates that this object is not available."
::= { pdug5TemperatureEntry 9 }
-- 1.3.6.1.4.1.19536.10.1.4.2.1.10
pdug5TemperatureThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Temperature alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5TemperatureEntry 10 }
-- ==========Humidity Measurements ==========
pdug5HumidityTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5HumidityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of humidity probe measurements. The number of entries are
given by number of pdu and pdug5HumidityCount."
::= { pdug5Environment 3 }
pdug5HumidityEntry OBJECT-TYPE
SYNTAX pdug5HumidityEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a humidity measurement."
INDEX { pdug5IdentIndex, pdug5HumidityIndex }
::= { pdug5HumidityTable 1 }
pdug5HumidityEntry ::= SEQUENCE {
pdug5HumidityIndex INTEGER,
pdug5HumidityName DisplayString,
pdug5HumidityProbeStatus INTEGER,
pdug5HumidityValue INTEGER,
pdug5HumidityThStatus INTEGER,
pdug5HumidityThLowerWarning INTEGER,
pdug5HumidityThLowerCritical INTEGER,
pdug5HumidityThUpperWarning INTEGER,
pdug5HumidityThUpperCritical INTEGER,
pdug5HumidityThCtrl INTEGER
}
pdug5HumidityIndex OBJECT-TYPE
SYNTAX INTEGER (1..6)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each humidity probe measurement. Its value
ranges from 1 to pdug5HumidityCount per PDU."
::= { pdug5HumidityEntry 1 }
pdug5HumidityName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the humidity probe."
::= { pdug5HumidityEntry 2 }
pdug5HumidityProbeStatus OBJECT-TYPE
SYNTAX INTEGER {
disconnected (1),
connected (2),
bad (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { pdug5HumidityEntry 3 }
pdug5HumidityValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Units are %RH."
::= { pdug5HumidityEntry 4 }
pdug5HumidityThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured humidity relative to the configured thresholds."
::= { pdug5HumidityEntry 5 }
pdug5HumidityThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..1000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are %RH. A negative value
indicates that this object is not available."
::= { pdug5HumidityEntry 6 }
pdug5HumidityThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..1000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are %RH. A negative value
indicates that this object is not available."
::= { pdug5HumidityEntry 7 }
pdug5HumidityThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..1000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are %RH. A negative value
indicates that this object is not available."
::= { pdug5HumidityEntry 8 }
pdug5HumidityThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..1000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are %RH. A negative value
indicates that this object is not available."
::= { pdug5HumidityEntry 9 }
-- 1.3.6.1.4.1.19536.10.1.4.3.1.10
pdug5HumidityThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Humidity alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5HumidityEntry 10 }
-- ======Door sensor Status==========
pdug5DoorTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5DoorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of door sensors. The number of entries are
given by number of PDU and pdug5DoorCount."
::= { pdug5Environment 4 }
pdug5DoorEntry OBJECT-TYPE
SYNTAX pdug5DoorEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a door sensor"
INDEX { pdug5IdentIndex, pdug5DoorIndex }
::= { pdug5DoorTable 1 }
pdug5DoorEntry ::= SEQUENCE {
pdug5DoorIndex INTEGER,
pdug5DoorName DisplayString,
pdug5DoorProbeStatus INTEGER,
pdug5DoorState INTEGER
}
pdug5DoorIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each door sensor. Its value ranges from 1 to
doorCount."
::= { pdug5DoorEntry 1 }
pdug5DoorName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the door sensor."
::= { pdug5DoorEntry 2 }
pdug5DoorProbeStatus OBJECT-TYPE
SYNTAX INTEGER {
disconnected (1),
connected (2),
bad (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether a probe is connected or not.
Will not be returned if the door sensor is internal to the ePDU,
in that case only doorState should be read."
::= { pdug5DoorEntry 3 }
pdug5DoorState OBJECT-TYPE
SYNTAX INTEGER {
doorOpen (1),
doorClosed (2),
BaddoorSensor (3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the door sensor."
::= { pdug5DoorEntry 4 }
-- ======Dry Sensor Status==========
-- 1.3.6.1.4.1.19536.10.1.4.5
pdug5DryTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5DryEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of dry sensors. The number of entries are
given by number of pdu and pdug5DryCount."
::= { pdug5Environment 5 }
-- 1.3.6.1.4.1.19536.10.1.4.5.1
pdug5DryEntry OBJECT-TYPE
SYNTAX pdug5DryEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a contact sensor"
INDEX { pdug5IdentIndex, pdug5DryIndex }
::= { pdug5DryTable 1 }
pdug5DryEntry ::=
SEQUENCE {
pdug5DryIndex
INTEGER,
pdug5DryName
DisplayString,
pdug5DryProbeStatus
INTEGER,
pdug5DryState
INTEGER
}
-- 1.3.6.1.4.1.19536.10.1.4.5.1.1
pdug5DryIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each dry sensor. Its value ranges from 1 to
dryCount."
::= { pdug5DryEntry 1 }
-- 1.3.6.1.4.1.19536.10.1.4.5.1.2
pdug5DryName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the dry sensor."
::= { pdug5DryEntry 2 }
-- 1.3.6.1.4.1.19536.10.1.4.5.1.3
pdug5DryProbeStatus OBJECT-TYPE
SYNTAX INTEGER
{
disconnected(1),
connected(2),
bad(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { pdug5DryEntry 3 }
-- 1.3.6.1.4.1.19536.10.1.4.5.1.4
pdug5DryState OBJECT-TYPE
SYNTAX INTEGER
{
good(1),
alarmed(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the dry sensor."
::= { pdug5DryEntry 4 }
-- ====== Water Spot Sensor Status==========
-- 1.3.6.1.4.1.19536.10.1.4.6
pdug5SpotTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5SpotEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of contact sensors. The number of entries are
given by number of pdu and pdug5SpotCount."
::= { pdug5Environment 6 }
-- 1.3.6.1.4.1.19536.10.1.4.6.1
pdug5SpotEntry OBJECT-TYPE
SYNTAX pdug5SpotEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a contact sensor"
INDEX { pdug5IdentIndex, pdug5SpotIndex }
::= { pdug5SpotTable 1 }
pdug5SpotEntry ::=
SEQUENCE {
pdug5SpotIndex
INTEGER,
pdug5SpotName
DisplayString,
pdug5SpotProbeStatus
INTEGER,
pdug5SpotState
INTEGER
}
-- 1.3.6.1.4.1.19536.10.1.4.6.1.1
pdug5SpotIndex OBJECT-TYPE
SYNTAX INTEGER (1..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each spot sensor. Its value ranges from 1 to
spotCount."
::= { pdug5SpotEntry 1 }
-- 1.3.6.1.4.1.19536.10.1.4.6.1.2
pdug5SpotName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the spot sensor."
::= { pdug5SpotEntry 2 }
-- 1.3.6.1.4.1.19536.10.1.4.6.1.3
pdug5SpotProbeStatus OBJECT-TYPE
SYNTAX INTEGER
{
disconnected(1),
connected(2),
bad(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { pdug5SpotEntry 3 }
-- 1.3.6.1.4.1.19536.10.1.4.6.1.4
pdug5SpotState OBJECT-TYPE
SYNTAX INTEGER
{
noleak(1),
leak(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the spot sensor."
::= { pdug5SpotEntry 4 }
-- ======Water Rope Sensor Status==========
-- 1.3.6.1.4.1.19536.10.1.4.7
pdug5RopeTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5RopeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of rope sensors. The number of entries are
given by number of pdu and pdug5RopeCount."
::= { pdug5Environment 7 }
-- 1.3.6.1.4.1.19536.10.1.4.7.1
pdug5RopeEntry OBJECT-TYPE
SYNTAX pdug5RopeEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a contact sensor"
INDEX { pdug5IdentIndex, pdug5RopeIndex }
::= { pdug5RopeTable 1 }
pdug5RopeEntry ::=
SEQUENCE {
pdug5RopeIndex
INTEGER,
pdug5RopeName
DisplayString,
pdug5RopeProbeStatus
INTEGER,
pdug5RopeState
INTEGER
}
-- 1.3.6.1.4.1.19536.10.1.4.7.1.1
pdug5RopeIndex OBJECT-TYPE
SYNTAX INTEGER (1..3)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A unique value for each rope sensor. Its value ranges from 1 to
ropeCount."
::= { pdug5RopeEntry 1 }
-- 1.3.6.1.4.1.19536.10.1.4.7.1.2
pdug5RopeName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the rope sensor."
::= { pdug5RopeEntry 2 }
-- 1.3.6.1.4.1.19536.10.1.4.7.1.3
pdug5RopeProbeStatus OBJECT-TYPE
SYNTAX INTEGER
{
disconnected(1),
connected(2),
bad(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Indicates whether a probe is connected or not."
::= { pdug5RopeEntry 3 }
-- 1.3.6.1.4.1.19536.10.1.4.7.1.4
pdug5RopeState OBJECT-TYPE
SYNTAX INTEGER
{
noleak(1),
leak(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The state of the rope sensor."
::= { pdug5RopeEntry 4 }
-- 1.3.6.1.4.1.19536.10.1.4.10
pdug5EnvHID OBJECT IDENTIFIER ::= { pdug5Environment 10 }
-- ======Hid Sensor Status==========
-- 1.3.6.1.4.1.19536.10.1.4.10.1
pdug5EnvHidTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5EnvHidEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of contact sensors. The number of entries are
given by number of pdu and pdug5HidCount."
::= { pdug5EnvHID 1 }
-- 1.3.6.1.4.1.19536.10.1.4.10.1.1
pdug5EnvHidEntry OBJECT-TYPE
SYNTAX pdug5EnvHidEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"An entry for a contact sensor"
INDEX { pdug5IdentIndex, pdug5HIDIndex }
::= { pdug5EnvHidTable 1 }
pdug5EnvHidEntry ::=
SEQUENCE {
pdug5HIDIndex
INTEGER,
pdug5HidAisle
INTEGER,
pdug5HidHandleOperation
INTEGER
}
-- 1.3.6.1.4.1.19536.10.1.4.10.1.1.1
pdug5HIDIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the PDU HID table entry"
::= { pdug5EnvHidEntry 1 }
-- 1.3.6.1.4.1.19536.10.1.4.10.1.1.2
pdug5HidAisle OBJECT-TYPE
SYNTAX INTEGER
{
COLD(1),
HOT(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Aisle of HID handle. "
::= { pdug5EnvHidEntry 2 }
-- 1.3.6.1.4.1.19536.10.1.4.10.1.1.3
pdug5HidHandleOperation OBJECT-TYPE
SYNTAX INTEGER
{
unlock(1),
lock(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"HID handle control opterations "
::= { pdug5EnvHidEntry 3 }
-- 1.3.6.1.4.1.19536.10.1.4.10.1.1.4
pduHIDVer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The firmware revision level of the HID"
::= { pdug5EnvHidEntry 4 }
-- 1.3.6.1.4.1.19536.10.1.4.10.1.1.5
pdug5MechanicalLock OBJECT-TYPE
SYNTAX INTEGER
{
unlock(1),
lock(2)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"HID Mechanical opterations "
::= { pdug5EnvHidEntry 5 }
-- ======Hid hid control table==========
-- 1.3.6.1.4.1.19536.10.1.4.10.2
pdug5EnvHidControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5EnvHidControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of smartcard. The number of entries are
given by number of pdu and pdug5HidCount."
::= { pdug5EnvHID 2 }
-- 1.3.6.1.4.1.19536.10.1.4.10.2.1
pdug5EnvHidControlEntry OBJECT-TYPE
SYNTAX pdug5EnvHidControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The smartcard table entry containing the usrname, cardid, cardaisle etc."
INDEX { pdug5IdentIndex, pdug5HidControlIndex }
::= { pdug5EnvHidControlTable 1 }
pdug5EnvHidControlEntry ::=
SEQUENCE {
pdug5HidControlIndex INTEGER,
pdug5HidControlUserName DisplayString,
pdug5HidControlCardID INTEGER,
pdug5HidControlTimestamp DisplayString,
pdug5HidControlCardAisle INTEGER
}
-- 1.3.6.1.4.1.19536.10.1.4.10.2.1.1
pdug5HidControlIndex OBJECT-TYPE
SYNTAX INTEGER (1..2)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of the PDU smartcard table entry"
::= { pdug5EnvHidControlEntry 1 }
-- 1.3.6.1.4.1.19536.10.1.4.10.2.1.2
pdug5HidControlUserName OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"User name of smartcard"
::= { pdug5EnvHidControlEntry 2 }
-- 1.3.6.1.4.19536.10.1.4.10.2.1.3
pdug5HidControlCardID OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"HID smartcard ID."
::= { pdug5EnvHidControlEntry 3 }
-- 1.3.6.1.4.19536.10.1.4.10.2.1.4
pdug5HidControlTimestamp OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Indicates the date and time of accessing"
::= { pdug5EnvHidControlEntry 4 }
-- 1.3.6.1.4.19536.10.1.4.10.2.1.5
pdug5HidControlCardAisle OBJECT-TYPE
SYNTAX INTEGER
{
COLD(1),
HOT(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Aisle of authorized card. "
::= { pdug5EnvHidControlEntry 5 }
-- ====================================================================================
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5Outlet OBJECT IDENTIFIER ::= { pdug5 5 }
-- OID= .1.3.6.1.4.1.19536.10.1.5
pdug5OutletTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5OutletEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Aggregate Object with number of entries equal to Number of PDU (pdug5IdentIndex)
and Number of outlet per PDU (pdug5OutletIndex)."
::= { pdug5Outlet 1 }
pdug5OutletEntry OBJECT-TYPE
SYNTAX pdug5OutletEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Outlet table entry containing the type, voltage, current etc."
INDEX { pdug5IdentIndex, pdug5OutletIndex }
::= { pdug5OutletTable 1 }
pdug5OutletEntry ::= SEQUENCE {
pdug5OutletIndex INTEGER,
pdug5OutletName DisplayString,
pdug5OutletType INTEGER,
pdug5OutletCurrentRating INTEGER,
pdug5OutletCurrent INTEGER,
pdug5OutletActivePowerThStatus INTEGER,
pdug5OutletActivePowerThLowerWarning INTEGER,
pdug5OutletActivePowerThLowerCritical INTEGER,
pdug5OutletActivePowerThUpperWarning INTEGER,
pdug5OutletActivePowerThUpperCritical INTEGER,
pdug5OutletCurrentPercentLoad INTEGER,
pdug5OutletVA INTEGER,
pdug5OutletWatts INTEGER,
pdug5OutletWh INTEGER,
pdug5OutletWhTimer DisplayString,
pdug5OutletPowerFactor INTEGER,
pdug5OutletVAR INTEGER,
pdug5OutletBranch INTEGER,
pdug5OutletActivePowerThResetThld INTEGER,
pdug5OutletActivePowerThChangeDelay INTEGER,
pdug5OutletActivePowerThCtrl INTEGER
}
pdug5OutletIndex OBJECT-TYPE
SYNTAX INTEGER (0..48)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Index for each outlet, value from 1 to the number of outlets per PDU."
::= { pdug5OutletEntry 1 }
pdug5OutletName OBJECT-TYPE
SYNTAX DisplayString (SIZE(1..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A descriptive name for the outlet."
::= { pdug5OutletEntry 2 }
pdug5OutletType OBJECT-TYPE
SYNTAX INTEGER {
iecC13 (1),
iecC19 (2),
i5-20R (3),
uk (10),
french (11),
schuko (12),
nema515 (20),
nema51520 (21),
nema520 (22),
nemaL520 (23),
nemaL530 (24),
nema615 (25),
nema620 (26),
nemaL620 (27),
nemaL630 (28),
nemaL715 (29),
rf203p277 (30)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Type of this outlet - C13, C19 ,5-20R."
::= { pdug5OutletEntry 3 }
pdug5OutletCurrentRating OBJECT-TYPE
SYNTAX INTEGER -- Units 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Rated current capacity of this outlet. Units are 0.01 amps. A negative
value indicates that the hardware current capacity is unknown."
::= { pdug5OutletEntry 4 }
pdug5OutletCurrent OBJECT-TYPE
SYNTAX INTEGER -- Units 0.01 A
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A outlet current measurement value. Units are 0.01 amps."
::= { pdug5OutletEntry 5 }
pdug5OutletActivePowerThStatus OBJECT-TYPE
SYNTAX INTEGER {
good (1),
lowWarning (2),
lowCritical (3),
highWarning (4),
highCritical (5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Status of the measured outlet active power relative to the configured thresholds."
::= { pdug5OutletEntry 6 }
pdug5OutletActivePowerThLowerWarning OBJECT-TYPE
SYNTAX INTEGER (-1..10000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower warning threshold. Units are Watts(W). A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 7 }
pdug5OutletActivePowerThLowerCritical OBJECT-TYPE
SYNTAX INTEGER (-1..10000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Lower critical threshold. Units are Watts(W). A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 8 }
pdug5OutletActivePowerThUpperWarning OBJECT-TYPE
SYNTAX INTEGER (-1..10000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper warning threshold. Units are Watts(W). A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 9 }
pdug5OutletActivePowerThUpperCritical OBJECT-TYPE
SYNTAX INTEGER (-1..10000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Upper critical threshold. Units are Watts(W). A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 10 }
pdug5OutletCurrentPercentLoad OBJECT-TYPE
SYNTAX INTEGER -- unit in percentage
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Current percent load, based on the rated current capacity. Units are
percentage, for example 80% will be returned as 80. A negative
value indicates that this object is not available."
::= { pdug5OutletEntry 11 }
pdug5OutletVA OBJECT-TYPE
SYNTAX INTEGER -- units in VA
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A outlet VA value. Units are VA. A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 12 }
pdug5OutletWatts OBJECT-TYPE
SYNTAX INTEGER -- units in Watt
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A outlet Watts value. Units are Watts. A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 13 }
pdug5OutletWh OBJECT-TYPE
SYNTAX INTEGER -- Units in Watt-Hour
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A Watt-Hour value for each outlet. Units are WH.
This object is writable so that it can be reset to 0. When it is
written to, the pdug5OutletWhTimer will be reset updated as well
A negative value indicates that this object is not available."
::= { pdug5OutletEntry 14 }
pdug5OutletWhTimer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..22)) -- display Date and Time
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Timestamp (date and time) of outlet Watt-hours was last reset."
::= { pdug5OutletEntry 15 }
pdug5OutletPowerFactor OBJECT-TYPE
SYNTAX INTEGER -- units are in 0.01
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An outlet PF value. Units are in thousandths, for example a power factor
of 0.95 would be returned as 95, and 0.92 would be returned
as 92. A negative value indicates that this object is not available."
::= { pdug5OutletEntry 16 }
pdug5OutletVAR OBJECT-TYPE
SYNTAX INTEGER -- Units in VAR
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An outlet VAR value. Units are VAR. A negative value indicates
that this object is not available."
::= { pdug5OutletEntry 17 }
pdug5OutletBranch OBJECT-TYPE
SYNTAX INTEGER -- Units in VAR
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The branch number outlet located."
::= { pdug5OutletEntry 18 }
-- 1.3.6.1.4.1.19536.10.1.5.1.1.19
pdug5OutletActivePowerThResetThld OBJECT-TYPE
SYNTAX INTEGER (-1..10000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Outlet Active Power alarm reset threshold. Units are Watts(W).
A negative value indicates that this object is not available."
::= { pdug5OutletEntry 19 }
-- 1.3.6.1.4.1.19536.10.1.5.1.1.20
pdug5OutletActivePowerThChangeDelay OBJECT-TYPE
SYNTAX INTEGER (-1..10000)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Outlet Active Power generates alarm every outlet alarm times.
A negative value indicates that this object is not available."
::= { pdug5OutletEntry 20 }
-- 1.3.6.1.4.1.19536.10.1.5.1.1.21
pdug5OutletActivePowerThCtrl OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Outlet Active Power alarm threshold control:
bit 0: up critical alarm control bit, 0 - enable, 1 - disable
bit 1: up warning alarm control bit, 0 - enable, 1 - disable
bit 2: low warning alarm control bit, 0 - enable, 1 - disable
bit 3: low critical alarm control bit, 0 - enable, 1 - disable"
DEFVAL { 0 }
::= { pdug5OutletEntry 21 }
-- ====================== PDU Outlet Control=====================
pdug5OutletControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF pdug5OutletControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"Aggregate Object with number of entries equal to Number of PDU (pdug5IdentIndex)
and Number of outlets per PDU (pdug5OutletIndex)."
::= { pdug5Outlet 2 }
pdug5OutletControlEntry OBJECT-TYPE
SYNTAX pdug5OutletControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The Outlet table entry containing the type, voltage, current etc."
INDEX { pdug5IdentIndex, pdug5OutletIndex }
::= { pdug5OutletControlTable 1 }
pdug5OutletControlEntry ::= SEQUENCE {
pdug5OutletControlStatus INTEGER,
pdug5OutletControlOffCmd INTEGER,
pdug5OutletControlOnCmd INTEGER,
pdug5OutletControlRebootCmd INTEGER,
pdug5OutletControlPowerOnState INTEGER,
pdug5OutletControlSequenceDelay INTEGER,
pdug5OutletControlRebootOffTime INTEGER,
pdug5OutletControlSwitchable INTEGER,
pdug5OutletControlShutoffDelay INTEGER,
pdug5OutletControlCommand INTEGER
}
pdug5OutletControlStatus OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
pendingOff (3),
pendingOn (4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"current state of a control outlet."
::= { pdug5OutletControlEntry 1 }
pdug5OutletControlOffCmd OBJECT-TYPE
SYNTAX INTEGER (-1..99999)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When write, once issued, the outlet will turn Off immediately.
0-n: Time in seconds until the outlet command is issued
-1: Cancel a pending outlet Off command
When read, returns -1 if no command is pending, or the current downcount in
seconds of a pending command."
::= { pdug5OutletControlEntry 2 }
pdug5OutletControlOnCmd OBJECT-TYPE
SYNTAX INTEGER (-1..99999)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When write, once issued, the outlet will turn On immediately.
0-n: Time in seconds until the outlet command is issued
-1: Cancel a pending outlet On command
When read, returns -1 if no command is pending, or the current downcount in
seconds of a pending command."
::= { pdug5OutletControlEntry 3 }
pdug5OutletControlRebootCmd OBJECT-TYPE
SYNTAX INTEGER (-1..99999)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When write, for outlets that are On prior to this Reboot command, they will
switch Off immediately when the command is issued, remain Off for
outletControlRebootOffTime seconds, and then turn back On.
For outlets that are Off prior to the Reboot command, they will turn On after
a delay of outletControlRebootOffTime seconds from when the command is issued.
0-n : Time in seconds until the Reboot command is issued
-1 : Cancel a pending outlet Reboot command
When read, returns -1 if no command is pending, or the current downcount in
seconds of a pending command."
::= { pdug5OutletControlEntry 4 }
pdug5OutletControlPowerOnState OBJECT-TYPE
SYNTAX INTEGER {
off (1),
on (2),
lastState (3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Determines the outlet state when power is applied to the unit.
1 : not restart at device startup
2 : should sequence back ON in line with outletControlSequenceTime
3 : should take the state the outlet had when power was lost.
If the state was ON, should sequence back ON in line with outletControlSequenceTime."
::= { pdug5OutletControlEntry 5 }
pdug5OutletControlSequenceDelay OBJECT-TYPE
SYNTAX INTEGER (-1..7200)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Time delay in seconds from when a Global Sequence On command is issued to
when the command is executed on this outlet. This delay is also used as a power-on
delay. Set to -1 to exclude this outlet from Global Sequence On commands."
::= { pdug5OutletControlEntry 6 }
pdug5OutletControlRebootOffTime OBJECT-TYPE
SYNTAX INTEGER (-1..7200)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Time delay in seconds that the outlet should remain in the Off state when executing a Reboot command."
::= { pdug5OutletControlEntry 7 }
pdug5OutletControlSwitchable OBJECT-TYPE
SYNTAX INTEGER {
switchable (1),
notSwitchable (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Determines the outlet capability to be controlled On/Off from the communication channels.
1 : control On/Off enabled
2 : control On/Off disabled."
::= { pdug5OutletControlEntry 8 }
pdug5OutletControlShutoffDelay OBJECT-TYPE
SYNTAX INTEGER (-1..7200)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Time delay in seconds that could be taken in account before shutting of the outlet.
An application which need to shutoff properly an outlet will read this parameter first
then write it to the command pdug5OutletControlOffCmd."
::= { pdug5OutletControlEntry 9 }
pdug5OutletControlCommand OBJECT-TYPE
SYNTAX INTEGER {
immediateOff (1),
immediateOn (2),
delayedOff (3),
delayedOn (4),
immediateReboot (5),
delayedReboot (6),
outletUnknown (7)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Getting this variable will return the outlet state.
If the outlet is on, the immediateOn (2)
value will be returned. If the outlet is off,
the immediateOff (1) value will be returned.
If the state of the outlet cannot be determined, the
outletUnknown (7) value will be returned. If the
outletUnknown condition should occur, all devices
powered by the PDU should be shut down. The PDU's
power should then be cycled to clear this condition.
Setting this variable to immediateOn (2) will immediately
turn the outlet on. Setting this variable to
immediateOff (1) will immediately turn the outlet off.
Setting this variable to immediateReboot (5)
will cause the Switched PDU to perform an immediateOff
command, wait the pdug5OutletControlRebootOffTime
OID time, and then perform an immediateOn command.
Setting this variable to delayedOn (4) will turn the
outlet on after the pdug5OutletControlSequenceDelay
OID time has elapsed. Setting this variable to
delayedOff (3) will turn the outlet off after the
pdug5OutletControlShutoffDelay OID time has elapsed.
Setting this variable to delayedReboot (6) will cause
the Switched PDU to perform a delayedOff command, wait
the pdug5OutletControlRebootOffTime OID time, and
then perform a delayedOn command."
::= { pdug5OutletControlEntry 10 }
-- ====================================================================================
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5Traps OBJECT IDENTIFIER ::= { pdug5 6 }
-- PDU identification group
-- OID= .1.3.6.1.4.1.19536.10.1.6
trapCritical NOTIFICATION-TYPE
OBJECTS {
trapCode,
trapDescription,
sysDescr,
pdug5IPv4Address}
STATUS current
DESCRIPTION
"A critical alarm has occurred."
::= {pdug5Traps 1}
trapWarning NOTIFICATION-TYPE
OBJECTS {
trapCode,
trapDescription,
sysDescr,
pdug5IPv4Address }
STATUS current
DESCRIPTION
"A warning alarm has occurred."
::= {pdug5Traps 2}
trapInformation NOTIFICATION-TYPE
OBJECTS {
trapCode,
trapDescription,
sysDescr,
pdug5IPv4Address }
STATUS current
DESCRIPTION
"An informational alarm has occurred."
::= {pdug5Traps 3}
trapCleared NOTIFICATION-TYPE
OBJECTS {
trapCode,
trapDescription,
sysDescr,
pdug5IPv4Address }
STATUS current
DESCRIPTION
"An alarm has cleared."
::= {pdug5Traps 4}
trapTest NOTIFICATION-TYPE
OBJECTS {
trapCode,
trapDescription,
sysDescr,
pdug5IPv4Address }
STATUS current
DESCRIPTION
"Test trap sent to a trap receiver to check proper reception of traps"
::= {pdug5Traps 5}
-- ====================================================================================
-- g5 OBJECT IDENTIFIER ::= { panduit 10}
-- pdug5 OBJECT IDENTIFIER ::= { g5 1}
-- pdug5TrapInfo OBJECT IDENTIFIER ::= { pdug5 7 }
-- PDU identification group
-- OID= .1.3.6.1.4.1.19536.10.1.7
pdug5TrapInfoEntry OBJECT IDENTIFIER ::= { pdug5TrapInfo 1 }
trapCode OBJECT-TYPE
SYNTAX INTEGER
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A number identifying the event for the trap that was sent."
::= { pdug5TrapInfoEntry 1 }
trapDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A string identifying the event for that last trap that was sent."
::= { pdug5TrapInfoEntry 2 }
END
|