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
|
PDU-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE FROM SNMPv2-SMI
enterprises, Integer32, IpAddress, Opaque FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF
TEXTUAL-CONVENTION, DisplayString, MacAddress FROM SNMPv2-TC;
eaton MODULE-IDENTITY
LAST-UPDATED "200803140000Z" -- March 14, 2008
ORGANIZATION "Eaton Corporation"
CONTACT-INFO "
Author: Eaton Corporation
postal: Eaton Corporation
Eaton Center
1111 Superior Avenue
Cleveland, OH 44114-2584
phone: +1 (216) 523-5000
"
DESCRIPTION "This mib describes the SNMP functions of the
Power Distribution Unit by Eaton Corporation."
REVISION "200803140000z"
DESCRIPTION "Modified MIB in effort to better support HP Openview
and other SNMP managers."
REVISION "200702140000Z"
DESCRIPTION "Updated version for remote access to pdu."
::= { enterprises 534 }
product OBJECT IDENTIFIER ::= { eaton 6 }
pduagent OBJECT IDENTIFIER ::= { product 6 }
pdu OBJECT IDENTIFIER ::= { pduagent 6 }
traps OBJECT IDENTIFIER ::= { pdu 0 }
board OBJECT IDENTIFIER ::= { pdu 1 }
environmental OBJECT IDENTIFIER ::= { pdu 2 }
conformance OBJECT IDENTIFIER ::= { pdu 9 }
info OBJECT IDENTIFIER ::= { board 1 }
outlets OBJECT IDENTIFIER ::= { board 2 }
unit OBJECT IDENTIFIER ::= { board 3 }
unitReadings OBJECT IDENTIFIER ::= { unit 1 }
compliances OBJECT IDENTIFIER ::= { conformance 1 }
groups OBJECT IDENTIFIER ::= { conformance 2 }
-- Conformance Information
compliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The requirements for conformance to the PDU-MIB."
MODULE -- this module
GROUP infoGroup
DESCRIPTION
"The info group."
GROUP outletsGroup
DESCRIPTION
"The outlets group."
GROUP unitSensorsGroup
DESCRIPTION
"The unit sensor readings association group."
GROUP externalTemperatureGroup
DESCRIPTION
"The external temperature sensor association group."
GROUP externalHumidityGroup
DESCRIPTION
"The external humidity sensor association group."
GROUP trapsGroup
DESCRIPTION
"The traps group."
::= { compliances 1 }
infoGroup OBJECT-GROUP
OBJECTS { firmwareVersion,
serialNumber,
ipAddress,
netmask,
gateway,
mac,
hardwareRev,
userName,
objectName,
objectInstance,
targetUser,
groupName,
imageVersion,
sensorDescr,
thresholdDescr,
thresholdSeverity,
thresholdEventType,
status,
slaveIpAddress }
STATUS current
DESCRIPTION
"A collection of objects providing basic information
about the pdu."
::= { groups 1 }
outletsGroup OBJECT-GROUP
OBJECTS { outletCount,
outletLabel,
outletOperationalState,
outletCurrent,
outletMaxCurrent,
outletVoltage,
outletActivePower,
outletApparentPower,
outletPowerFactor,
outletCurrentUpperWarning,
outletCurrentUpperCritical }
STATUS current
DESCRIPTION
"A collection of objects providing basic information
about the outlets, including sensor readings."
::= { groups 2 }
unitSensorsGroup OBJECT-GROUP
OBJECTS { unitCurrent,
unitVoltage,
unitActivePower,
unitApparentPower,
unitCpuTemp,
unitCircuitBreak0State,
unitCircuitBreak1State,
unitCircuitBreak2State,
unitCircuitBreak0Current,
unitCircuitBreak1Current,
unitCircuitBreak2Current,
unitVoltageLowerWarning,
unitVoltageUpperWarning,
unitVoltageLowerCritical,
unitVoltageUpperCritical,
unitCurrentUpperWarning,
unitCurrentUpperCritical,
unitTempLowerWarning,
unitTempUpperWarning,
unitTempLowerCritical,
unitTempUpperCritical }
STATUS current
DESCRIPTION
"A collection of objects providing unit level sensor readings."
::= { groups 4 }
externalTemperatureGroup OBJECT-GROUP
OBJECTS { tempSensorCount,
tempSensorLabel,
temperature,
tempLowerWarning,
tempUpperWarning,
tempLowerCritical,
tempUpperCritical,
tempLowerWarningReset,
tempUpperWarningReset,
tempLowerCriticalReset,
tempUpperCriticalReset }
STATUS current
DESCRIPTION
"A collection of objects providing external temperature sensor readings and threshold settings."
::= { groups 6 }
externalHumidityGroup OBJECT-GROUP
OBJECTS { humiditySensorCount,
humiditySensorLabel,
humidity,
humidityLowerWarning,
humidityUpperWarning,
humidityLowerCritical,
humidityUpperCritical,
humidityLowerWarningReset,
humidityUpperWarningReset,
humidityLowerCriticalReset,
humidityUpperCriticalReset }
STATUS current
DESCRIPTION
"A collection of objects providing external humidity sensor readings and threshold settings."
::= { groups 7 }
trapsGroup NOTIFICATION-GROUP
NOTIFICATIONS { rebootStarted,
rebootCompleted,
userLogin,
userLogout,
userAuthenticationFailure,
userSessionTimeout,
userAdded,
userModified,
userDeleted,
groupAdded,
groupModified,
groupDeleted,
deviceUpdateStarted,
userBlocked,
powerControl,
userPasswordChanged,
passwordSettingsChanged,
firmwareFileDiscarded,
firmwareValidationFailed,
securityViolation,
logFileCleared,
thresholdAlarm,
outletGroupingConnectivityLost }
STATUS current
DESCRIPTION
"A collection of traps."
::= { groups 9 }
-- Textual Conventions
MilliAmps ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with current sensors. If the underlying hardware
sensor indicates 1 amp, then the SNMP agent will report
a value of 1000 milliamps. The value is scaled in this
manner as a way to deal with floating point types
that SNMP does not currently support."
SYNTAX Unsigned32
MilliVolts ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with voltage sensors. If the underlying hardware
sensor indicates 1 volts, then the SNMP agent will report
a value of 1000 millivolts. The value is scaled in this
manner as a way to deal with floating point types
that SNMP does not currently support."
SYNTAX Unsigned32
Watts ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with active power sensors. If the underlying hardware
sensor indicates 1 watt, then the SNMP agent will report
a value of 1 watt. No scaling is performed for this type."
SYNTAX Unsigned32
VoltAmps ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with apparent power sensors. If the underlying hardware
sensor indicates 1 volt-amp, then the SNMP agent will report
a value of 1 volt-amp. No scaling is performed for this type."
SYNTAX Unsigned32
DegreesCelsius ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with temperature sensors. If the underlying hardware
sensor indicates 1 degree Celsius, then the SNMP agent will report
a value of 1 degree Celsius. No scaling is performed for this type."
SYNTAX Unsigned32
Hertz ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with frequency sensors. If the underlying hardware
sensor indicates 1 Hertz, then the SNMP agent will report
a value of 1 Hertz. No scaling is performed for this type."
SYNTAX Unsigned32
RelativeHumidity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with humidity sensors. Relative humidity is
expressed as percentage and is defined as the ratio of the
partial pressure of water vapor in a gaseous mixture of
air and water vapor to the saturated vapor pressure of water
at a given temperature."
SYNTAX Unsigned32 (0..100)
PowerFactorPercentage ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Data type for reporting sensor readings and thresholds
associated with power factor sensors. The power factor of
an AC power system is defined as the ratio of the real
or active power to the apparent power and is a number
between 0 and 1. A PowerFactorPercentage value is calculated
by taking this ratio and multiplying by 100. The power factor
is used to indicate how efficiently a particular load is
utilizing energy."
SYNTAX Unsigned32 (0..100)
SensorTypeEnumeration ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The types a sensor can be."
SYNTAX INTEGER { outletCurrent(0),
outletMaxCurrent(1),
outletVoltage(2),
outletActivePower(3),
outletApparentPower(4),
outletMaxActivePower(5),
outletAverageActivePower(6),
outletPowerFactor(7),
powerBranchVoltage(200),
powerBranchFrequency(201),
powerBranchTemperature(202),
powerBranchCurrent(203),
environmentalTemp1(300),
environmentalTemp2(301),
environmentalTemp3(302),
environmentalTemp4(303),
environmentalTemp5(304),
environmentalTemp6(305),
environmentalTemp7(306),
environmentalTemp8(307),
environmentalHumidity1(400),
environmentalHumidity2(401),
environmentalHumidity3(402),
environmentalHumidity4(403),
environmentalHumidity5(404),
environmentalHumidity6(405),
environmentalHumidity7(406),
environmentalHumidity8(407),
unitRmsCurrent(500),
unitMaxRmsCurrent(501),
unitVoltage(502),
unitCpuTemp(503),
unitActivePower(504),
unitApparentPower(505),
unitCircuitBreak0State(550),
unitCircuitBreak1State(551),
unitCircuitBreak2State(552),
unitCircuitBreak0Current(600),
unitCircuitBreak1Current(601),
unitCircuitBreak2Current(602) }
SensorStateEnumeration ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The states a sensor can be in."
SYNTAX INTEGER { unavailable(-1),
ok(0),
belowLowerWarning(1),
aboveUpperWarning(2),
belowLowerCritical(3),
aboveUpperCritical(4) }
-- the info group
firmwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current firmware version"
::= { info 1 }
serialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number."
::= { info 2 }
ipAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current IP address. A value of 0.0.0.0 indicates an error
or an unset option."
::= { info 3 }
netmask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Netmask. A value of 0.0.0.0 indicates an error
or an unset option."
::= { info 4 }
gateway OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current Gateway. A value of 0.0.0.0 indicates an error
or an unset option."
::= { info 5 }
mac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current MAC address."
::= { info 6 }
hardwareRev OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hardware revision number."
::= { info 7 }
userName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The login of a user."
::= { info 10 }
objectName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The model type of the device"
::= { info 12 }
objectInstance OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The device name"
::= { info 13}
targetUser OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The user record being operated on"
::= { info 14}
groupName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The group record being operated on"
::= { info 15 }
imageVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The version of the Upgrade image"
::= { info 18 }
sensorDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Sensor description indicating which sensor experienced a threshold exceeded
event. When applicable the description will indicate the sensor number."
::= { info 19 }
thresholdDescr OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Threshold description indicating which configured threshold has been triggered (or cleared)."
::= { info 20 }
thresholdSeverity OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"String (Warning, Critical, etc...) indicating the severity of the threshold which has been triggered (or cleared)."
::= { info 21 }
thresholdEventType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"String (triggered, cleared) indicating if the threshold event indicates that a configured threshold
has been triggered or cleared."
::= { info 22 }
status OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The success status of an operation"
::= { info 23 }
slaveIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"In a shepherding configuration, this is the IP address of slave PDU. A value of 0.0.0.0 indicates an error
or an unset option."
::= { info 24}
-- the outlets group
-- Implementation for managing the outlets
outletCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outlets (regardless of
their current state) present on this pdu."
::= { outlets 1 }
-- the outlets table
-- The outlets table contains information on the pdu's outlets.
-- It further provides functions for managing them.
outletTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletEntryStruct
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of outlet entries. The number of
entries is given by the value of outletCount."
::= { outlets 2 }
outletEntry OBJECT-TYPE
SYNTAX OutletEntryStruct
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An outlet entry containing objects at the
for a particular outlet."
INDEX { outletIndex }
::= { outletTable 1 }
OutletEntryStruct ::= SEQUENCE { outletIndex Integer32,
outletLabel DisplayString,
outletOperationalState INTEGER,
outletCurrent MilliAmps,
outletMaxCurrent MilliAmps,
outletVoltage MilliVolts,
outletActivePower Watts,
outletApparentPower VoltAmps,
outletPowerFactor PowerFactorPercentage,
outletCurrentUpperWarning MilliAmps,
outletCurrentUpperCritical MilliAmps }
outletIndex OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each outlet. Its value
ranges between 1 and the value of outletCount."
::= { outletEntry 1 }
outletLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A textual string containing information
about the outlet."
::= { outletEntry 2 }
outletOperationalState OBJECT-TYPE
SYNTAX INTEGER { error(-1),
off(0),
on(1),
cycling(2) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A value for each outlet which describes the
operational state of the outlet. It is also
used to set the operational state of the outlet"
::= { outletEntry 3 }
outletCurrent OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for the current sensor
attached to the outlet. This value is
reported in milliamps (1/1000th of an amp)"
::= { outletEntry 4 }
outletMaxCurrent OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for the max. current sensor
attached to the outlet. This value is
reported in milliamps (1/1000th of an amp)"
::= { outletEntry 5 }
outletVoltage OBJECT-TYPE
SYNTAX MilliVolts
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for the voltage sensor
attached to the outlet.This value is
reported in millivolts (1/1000th of a volt)"
::= { outletEntry 6 }
outletActivePower OBJECT-TYPE
SYNTAX Watts
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for the active power sensor
attached to the outlet. This value is
reported in Watts."
::= { outletEntry 7 }
outletApparentPower OBJECT-TYPE
SYNTAX VoltAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for the apparent power sensor
attached to the outlet. This value is
reported in Volt-Amps"
::= { outletEntry 8 }
outletPowerFactor OBJECT-TYPE
SYNTAX PowerFactorPercentage
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for the power factor
of the outlet. The reading represents a
percentage in the range of 0% to 100%."
::= { outletEntry 9 }
outletCurrentUpperWarning OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical)
current threshold for the outlet. This value is
reported in milliamps (1/1000th of an amp)"
::= { outletEntry 21 }
outletCurrentUpperCritical OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical current
threshold for the outlet. This value is
reported in milliamps (1/1000th of an amp)"
::= { outletEntry 23 }
-- the unitReadings group
-- The unitReadings group contains sensor reading values
-- for the PDU unit as a whole
unitCurrent OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's current sensor in millamps."
::= { unitReadings 1 }
unitVoltage OBJECT-TYPE
SYNTAX MilliVolts
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's voltage sensor in millivolts."
::= { unitReadings 2 }
unitActivePower OBJECT-TYPE
SYNTAX Watts
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's voltage sensor in volt-amps."
::= { unitReadings 3 }
unitApparentPower OBJECT-TYPE
SYNTAX Watts
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's voltage sensor in volt-amps."
::= { unitReadings 4 }
unitCpuTemp OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's CPU temperature sensor in degrees Celsius."
::= { unitReadings 5 }
unitCircuitBreak0State OBJECT-TYPE
SYNTAX INTEGER { unavailable(-1),
ok(0),
tripped(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's circuit breaker state sensor 0."
::= { unitReadings 20 }
unitCircuitBreak1State OBJECT-TYPE
SYNTAX INTEGER { unavailable(-1),
ok(0),
tripped(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's circuit breaker state sensor 1."
::= { unitReadings 21 }
unitCircuitBreak2State OBJECT-TYPE
SYNTAX INTEGER { unavailable(-1),
ok(0),
tripped(1) }
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's circuit breaker state sensor 2."
::= { unitReadings 22 }
unitCircuitBreak0Current OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's circuit breaker current sensor 0."
::= { unitReadings 40 }
unitCircuitBreak1Current OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's circuit breaker current sensor 1."
::= { unitReadings 41 }
unitCircuitBreak2Current OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value for the unit's circuit breaker current sensor 2."
::= { unitReadings 42 }
unitVoltageLowerWarning OBJECT-TYPE
SYNTAX MilliVolts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower warning (non-critical) unit level voltage threshold."
::= { unitReadings 60 }
unitVoltageLowerCritical OBJECT-TYPE
SYNTAX MilliVolts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower critical unit level voltage threshold."
::= { unitReadings 61 }
unitVoltageUpperWarning OBJECT-TYPE
SYNTAX MilliVolts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) unit level voltage threshold."
::= { unitReadings 62 }
unitVoltageUpperCritical OBJECT-TYPE
SYNTAX MilliVolts
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical unit level voltage threshold."
::= { unitReadings 63 }
unitCurrentUpperWarning OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) unit level current threshold."
::= { unitReadings 70 }
unitCurrentUpperCritical OBJECT-TYPE
SYNTAX MilliAmps
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the upper critical unit level current threshold. NOTE: This
particular threshold is NOT settable "
::= { unitReadings 71 }
unitTempLowerWarning OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower warning (non-critical) unit level temperature threshold."
::= { unitReadings 80 }
unitTempLowerCritical OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower critical unit level temperature threshold."
::= { unitReadings 81 }
unitTempUpperWarning OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) unit level temperature threshold."
::= { unitReadings 82 }
unitTempUpperCritical OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical unit level temperature threshold."
::= { unitReadings 83 }
-- the externalTemperature group
-- Implementation for managing external temperature sensors
tempSensorCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of external temperature sensors (regardless of
their current state) present on this pdu."
::= { environmental 1 }
-- the temperature sensors table
-- The tempSensorTable table contains information on the pdu's external temperature sensors.
tempSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF TempSensorEntryStruct
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of temperature sensor entries. The number of
entries is given by the value of tempSensorCount."
::= { environmental 2 }
tempSensorEntry OBJECT-TYPE
SYNTAX TempSensorEntryStruct
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing sensor reading and threshold
settings for a particular temperature sensor."
INDEX { tempSensorIndex }
::= { tempSensorTable 1 }
TempSensorEntryStruct ::= SEQUENCE { tempSensorIndex Integer32,
tempSensorLabel DisplayString,
temperature DegreesCelsius,
tempLowerWarning DegreesCelsius,
tempUpperWarning DegreesCelsius,
tempLowerCritical DegreesCelsius,
tempUpperCritical DegreesCelsius,
tempLowerWarningReset DegreesCelsius,
tempUpperWarningReset DegreesCelsius,
tempLowerCriticalReset DegreesCelsius,
tempUpperCriticalReset DegreesCelsius }
tempSensorIndex OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each temperature sensor. Its value
ranges between 1 and tempSensorCount."
::= { tempSensorEntry 1 }
tempSensorLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A settable human-readable label for the external temperature
sensor. One possible use for this label is to convey sensor
location."
::= { tempSensorEntry 2 }
temperature OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the external temperature sensor reported
in degrees celsius."
::= { tempSensorEntry 3 }
tempLowerWarning OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower warning (non-critical) threshold."
::= { tempSensorEntry 4 }
tempUpperWarning OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) threshold."
::= { tempSensorEntry 5 }
tempLowerCritical OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower critical threshold."
::= { tempSensorEntry 6 }
tempUpperCritical OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical threshold."
::= { tempSensorEntry 7 }
tempLowerWarningReset OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower warning (non-critical) reset/hysteresis value."
::= { tempSensorEntry 8 }
tempUpperWarningReset OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) reset/hysteresis value."
::= { tempSensorEntry 9 }
tempLowerCriticalReset OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower critical reset/hysteresis value."
::= { tempSensorEntry 10 }
tempUpperCriticalReset OBJECT-TYPE
SYNTAX DegreesCelsius
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical reset/hysteresis value."
::= { tempSensorEntry 11 }
-- the externalHumidity group
-- Implementation for managing external humidity sensors
humiditySensorCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of external humidity sensors (regardless of
their current state) present on this pdu."
::= { environmental 3 }
-- the humidity sensors table
-- The humiditySensorTable table contains information on the pdu's external humidity sensors.
humiditySensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF HumiditySensorEntryStruct
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of humidity sensor entries. The number of
entries is given by the value of humiditySensorCount."
::= { environmental 4 }
humiditySensorEntry OBJECT-TYPE
SYNTAX HumiditySensorEntryStruct
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing sensor reading and threshold
settings for a particular humidity sensor."
INDEX { humiditySensorIndex }
::= { humiditySensorTable 1 }
HumiditySensorEntryStruct ::= SEQUENCE { humiditySensorIndex Integer32,
humiditySensorLabel DisplayString,
humidity RelativeHumidity,
humidityLowerWarning RelativeHumidity,
humidityUpperWarning RelativeHumidity,
humidityLowerCritical RelativeHumidity,
humidityUpperCritical RelativeHumidity,
humidityLowerWarningReset RelativeHumidity,
humidityUpperWarningReset RelativeHumidity,
humidityLowerCriticalReset RelativeHumidity,
humidityUpperCriticalReset RelativeHumidity }
humiditySensorIndex OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A unique value for each humidity sensor. Its value
ranges between 1 and humiditySensorCount."
::= { humiditySensorEntry 1 }
humiditySensorLabel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A settable human-readable label for the external humidity
sensor. One possible use for this label is to convey sensor
location."
::= { humiditySensorEntry 2 }
humidity OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of the external humidity sensor reported
as relative humidity (a percentage)."
::= { humiditySensorEntry 3 }
humidityLowerWarning OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower warning (non-critical) threshold."
::= { humiditySensorEntry 4 }
humidityUpperWarning OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) threshold."
::= { humiditySensorEntry 5 }
humidityLowerCritical OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower critical threshold."
::= { humiditySensorEntry 6 }
humidityUpperCritical OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical threshold."
::= { humiditySensorEntry 7 }
humidityLowerWarningReset OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower warning (non-critical) reset/hysteresis value."
::= { humiditySensorEntry 8 }
humidityUpperWarningReset OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper warning (non-critical) reset/hysteresis value."
::= { humiditySensorEntry 9 }
humidityLowerCriticalReset OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the lower critical reset/hysteresis value."
::= { humiditySensorEntry 10 }
humidityUpperCriticalReset OBJECT-TYPE
SYNTAX RelativeHumidity
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the upper critical reset/hysteresis value."
::= { humiditySensorEntry 11 }
-- Start the traps
rebootStarted NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName }
STATUS current
DESCRIPTION
"The reboot process has started"
::= { traps 1 }
rebootCompleted NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance }
STATUS current
DESCRIPTION
"The reboot process is complete"
::= { traps 2 }
userLogin NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress }
STATUS current
DESCRIPTION
"A user logged in"
::= { traps 3 }
userLogout NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress }
STATUS current
DESCRIPTION
"A user logged out"
::= { traps 4 }
userAuthenticationFailure NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress }
STATUS current
DESCRIPTION
"A user authentication attempt failed"
::= { traps 5 }
userSessionTimeout NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress }
STATUS current
DESCRIPTION
"A user timed out from the device"
::= { traps 8 }
userAdded NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
targetUser }
STATUS current
DESCRIPTION
"A user was added to the system"
::= { traps 11 }
userModified NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
targetUser }
STATUS current
DESCRIPTION
"A user account was modified"
::= { traps 12 }
userDeleted NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
targetUser }
STATUS current
DESCRIPTION
"A user was deleted from the system"
::= { traps 13 }
groupAdded NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
groupName }
STATUS current
DESCRIPTION
"A group was added to the system"
::= { traps 14 }
groupModified NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
groupName }
STATUS current
DESCRIPTION
"A group was modified"
::= { traps 15 }
groupDeleted NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
groupName }
STATUS current
DESCRIPTION
"A group was deleted from the system"
::= { traps 16 }
deviceUpdateStarted NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress,
imageVersion }
STATUS current
DESCRIPTION
"The device update has started"
::= { traps 20 }
userBlocked NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress }
STATUS current
DESCRIPTION
"A blocked user tried to log in"
::= { traps 22 }
powerControl NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress,
outletLabel,
outletOperationalState }
STATUS current
DESCRIPTION
"An outlet has been switched"
::= { traps 23 }
userPasswordChanged NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
targetUser,
ipAddress }
STATUS current
DESCRIPTION
"A user password was changed"
::= { traps 24 }
passwordSettingsChanged NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
status }
STATUS current
DESCRIPTION
"Strong password settings changed "
::= { traps 28 }
-- Start new event to support RP products
firmwareFileDiscarded NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName }
STATUS current
DESCRIPTION
"A firmware file discarded "
::= { traps 36 }
firmwareValidationFailed NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName }
STATUS current
DESCRIPTION
"A firmware validation failed "
::= { traps 38 }
securityViolation NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName,
ipAddress }
STATUS current
DESCRIPTION
"Security violation."
::= { traps 39 }
logFileCleared NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
userName }
STATUS current
DESCRIPTION
"The log file has been cleared."
::= { traps 41 }
--sensor threshold exceeded traps
thresholdAlarm NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
ipAddress,
sensorDescr,
thresholdDescr,
thresholdSeverity,
thresholdEventType }
STATUS current
DESCRIPTION
"Configured sensor theshold event. The 'thresholdType' variable will indicate whether or not
the threshold triggered or cleared"
::= { traps 45 }
-- Shepherd Application traps
outletGroupingConnectivityLost NOTIFICATION-TYPE
OBJECTS { objectName,
objectInstance,
ipAddress,
slaveIpAddress }
STATUS current
DESCRIPTION
"Master PDU lost contact with the slave PDU in an outlet grouping configuration."
::= { traps 50 }
END
|