-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSentry3-MIB
1755 lines (1611 loc) · 63.2 KB
/
Sentry3-MIB
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
--
-- Copyright(C) 2003-2009 Server Technology, Inc.
--
Sentry3-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, NOTIFICATION-TYPE,
OBJECT-TYPE, enterprises FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC;
sentry3 MODULE-IDENTITY
LAST-UPDATED "200903101600Z" -- 10 Mar 2009
ORGANIZATION "Server Technology, Inc."
CONTACT-INFO
"Server Technology, Inc.
1040 Sandhill Drive
Reno, NV 89521
Tel: (775) 284-2000
Fax: (775) 284-2065
Email: [email protected]"
DESCRIPTION
"This is the MIB module for the third generation of the
Sentry product family. This includes the Sentry Remote
Power Manager (RPM), Sentry Power Distribution Unit (PDU),
Sentry Environmental Monitor (EM), and Sentry Smart and
Switched Cabinet Distribution Unit (CDU)."
REVISION "200903101600Z" -- 10 Mar 2009
DESCRIPTION
"Added support for Per-Outlet Power Sensing (POPS) hardware.
Added several new objects: systemFeatures, systemFeatureKey,
infeedApparentPower, infeedPowerFactor, infeedCrestFactor,
infeedEnergy, outletCapacity, outletVoltage, outletPower,
outletApparentPower, outletPowerFactor, outletCrestFactor,
and outletEnergy. Added 'voltageSense' and 'powerSense'
bit definitions to the input feed and outlet capabilities
objects. Increased the size of systemVersion to 50."
REVISION "200805071520Z" -- 7 May 2008
DESCRIPTION
"Added systemAreaUnit and systemPowerFactor objects. Renamed
the systemWattsPerUnitArea object to systemWattsPerAreaUnit.
Changed systemArea from read-only to read-write."
REVISION "200707091445Z" -- 9 Jul 2007
DESCRIPTION
"Added support for products with fan rotation sensing and
internal temperature sensing. Added 'fanSense' and
'tempSense' bit definitions to the tower capabilities
object. Added 'fanFail' and 'overTemp' states to the
towerStatus object. Modified the description of the
towerStatusEvent trap to reflect these additions."
REVISION "200701091410Z" -- 9 Jan 2007
DESCRIPTION
"Added several new objects: systemArea, systemTotalPower,
systemWattsPerUnitArea, towerProductSN, towerModelNumber,
towerCapabilities, infeedCapacity, infeedVoltage, and
infeedPower. Added six states to the outletControlState
object."
REVISION "200607201200Z" -- 20 Jul 2006
DESCRIPTION
"Changed the upper limit of systemTowerCount from 2 to 4."
REVISION "200606120930Z" -- 12 Jun 2006
DESCRIPTION
"Added a tempHumidSensorTempScale object to select either
Celsius or Fahrenheit as the scale for temperature values.
To accommodate the maximum Fahrenheit value, the upper limit
of tempHumidSensorTempValue was changed to 2540, and the
upper limit of tempHumidSensorTempHighThresh was changed to
254. Removed 'Celsius' from the UNITS clause and description
of temperature objects. Added the tempHumidSensorTempScale
object to the tempHumidSensorTempEvent trap. Changed the
upper limit of towerIndex from 2 to 4, to accommodate new
products with additional link capabilities."
REVISION "200507271105Z" -- 27 Jul 2005
DESCRIPTION
"Changed the upper limit of tempHumidSensorTempLowThresh to
123. Changed the upper limit of tempHumidSensorTempValue
to 1235."
REVISION "200502181145Z" -- 18 Feb 2005
DESCRIPTION
"Added CDU products to the MIB description. Corrected syntax
of outletID to specify SIZE(2..4)."
REVISION "200501071220Z" -- 7 Jan 2005
DESCRIPTION
"Added a 'fusedBranch' bit definition to the outlet
capabilities object. Added 'offFuse' and 'onFuse' states
to the outlet status object. Modified the descriptions of
objects and traps to reflect support for these additions."
REVISION "200412091320Z" -- 9 Dec 2004
DESCRIPTION
"Corrected spelling errors. Removed product acronyms from the
trap annotations."
REVISION "200411111200Z" -- 11 Nov 2004
DESCRIPTION
"Changed the upper limit of tempHumidSensorTempHighThresh to
123. Renamed systemSerialNumber to systemNICSerialNumber."
REVISION "200311201300Z" -- 20 Nov 2003
DESCRIPTION
"Changed the MIB description to reflect that there are
multiple products in the Sentry product family supported by
this MIB."
REVISION "200310231900Z" -- 23 Oct 2003
DESCRIPTION
"Added annotations to the trap definitions. Added a
'reading' state to the outletStatus object. Renamed
'notificationGroup' to 'sentry3Traps'. Corrected the
the description of the tempHumidSensorStatusEvent trap."
REVISION "200310021100Z" -- 2 Oct 2003
DESCRIPTION
"Added a 'failSafe' bit definition to the infeed capabilities
object, and corrected the definition of the 'defaultOff'
infeed capabilities bit."
REVISION "200308271600Z" -- 27 Aug 2003
DESCRIPTION
"Added new bit definitions to the infeed and outlet
capabilities objects."
REVISION "200303281700Z" -- 28 Mar 2003
DESCRIPTION
"Added environmental monitor objects and traps."
REVISION "200303271700Z" -- 27 Mar 2003
DESCRIPTION
"Initial release."
::= { serverTech 3 }
serverTech OBJECT IDENTIFIER ::= { enterprises 1718 }
--
-- System Group
--
systemGroup OBJECT IDENTIFIER ::= { sentry3 1 }
systemVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..50))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware version of the system."
::= { systemGroup 1 }
systemNICSerialNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the network interface card in the
system."
::= { systemGroup 2 }
systemLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The location of the system."
::= { systemGroup 3 }
systemTowerCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of towers in the system."
::= { systemGroup 4 }
systemEnvMonCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of environmental monitors in the system."
::= { systemGroup 5 }
systemTotalPower OBJECT-TYPE
SYNTAX INTEGER(-1..150000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total power consumption of all of the input feeds in the
system. A non-negative value indicates the total power
consumption in Watts. A negative value indicates that the
total power consumption was not available."
::= { systemGroup 6 }
systemArea OBJECT-TYPE
SYNTAX INTEGER(0..1000)
UNITS "tenth area units"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The area that the footprint of the system occupies. A
non-zero non-negative value indicates the area in tenths of
area units as selected by the systemAreaUnit object. A zero
or negative value indicates that the area was not available."
::= { systemGroup 7 }
systemWattsPerAreaUnit OBJECT-TYPE
SYNTAX INTEGER(-1..1500000)
UNITS "Watts per area unit"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system Watts per area unit. A non-negative value
indicates the power consumption per area unit as selected by
the systemAreaUnit object. A negative value indicates that
the power consumption per area unit was not available."
::= { systemGroup 8 }
systemAreaUnit OBJECT-TYPE
SYNTAX INTEGER {
squareMeter(0),
squareFoot(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit of area for the systemArea and systemWattsPerAreaUnit
objects. If the agent does not support this object, then the
unit of area is a square foot."
::= { systemGroup 9 }
systemPowerFactor OBJECT-TYPE
SYNTAX INTEGER(50..100)
UNITS "hundredths"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The power factor used in power calculations performed by the
system."
::= { systemGroup 10 }
systemFeatures OBJECT-TYPE
SYNTAX BITS {
smartLoadShedding(0),
snmpPOPS(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The key-activated features enabled in the system."
::= { systemGroup 11 }
systemFeatureKey OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..19))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A valid feature key written to this object will enable a
feature in the system. A valid feature key is in the form
xxxx-xxxx-xxxx-xxxx. A read of this object returns an
empty string."
::= { systemGroup 12 }
--
-- System Tables
--
systemTables OBJECT IDENTIFIER ::= { sentry3 2 }
--
-- Tower Table
--
towerTable OBJECT-TYPE
SYNTAX SEQUENCE OF TowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of towers."
::= { systemTables 1 }
towerEntry OBJECT-TYPE
SYNTAX TowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the tower table."
INDEX { towerIndex }
::= { towerTable 1 }
TowerEntry ::= SEQUENCE {
towerIndex INTEGER,
towerID DisplayString,
towerName DisplayString,
towerStatus INTEGER,
towerInfeedCount INTEGER,
towerProductSN DisplayString,
towerModelNumber DisplayString,
towerCapabilities BITS
}
towerIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the tower table."
::= { towerEntry 1 }
towerID OBJECT-TYPE
SYNTAX DisplayString(SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the tower."
::= { towerEntry 2 }
towerName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the tower."
::= { towerEntry 3 }
towerStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
noComm(1),
fanFail(2),
overTemp(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the tower."
::= { towerEntry 4 }
towerInfeedCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input feeds on the tower."
::= { towerEntry 5 }
towerProductSN OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product serial number of the tower."
::= { towerEntry 6 }
towerModelNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model number of the tower."
::= { towerEntry 7 }
towerCapabilities OBJECT-TYPE
SYNTAX BITS {
failSafe(0),
fuseSense(1),
directCurrent(2),
threePhase(3),
fanSense(4),
tempSense(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the tower."
::= { towerEntry 8 }
--
-- Input Feed Table
--
infeedTable OBJECT-TYPE
SYNTAX SEQUENCE OF InfeedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of input feeds."
::= { systemTables 2 }
infeedEntry OBJECT-TYPE
SYNTAX InfeedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the input feed table."
INDEX { towerIndex, infeedIndex }
::= { infeedTable 1 }
InfeedEntry ::= SEQUENCE {
infeedIndex INTEGER,
infeedID DisplayString,
infeedName DisplayString,
infeedCapabilities BITS,
infeedStatus INTEGER,
infeedLoadStatus INTEGER,
infeedLoadValue INTEGER,
infeedLoadHighThresh INTEGER,
infeedOutletCount INTEGER,
infeedCapacity INTEGER,
infeedVoltage INTEGER,
infeedPower INTEGER,
infeedApparentPower INTEGER,
infeedPowerFactor INTEGER,
infeedCrestFactor INTEGER,
infeedEnergy INTEGER
}
infeedIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the input feed table."
::= { infeedEntry 1 }
infeedID OBJECT-TYPE
SYNTAX DisplayString(SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the input feed."
::= { infeedEntry 2 }
infeedName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the input feed."
::= { infeedEntry 3 }
infeedCapabilities OBJECT-TYPE
SYNTAX BITS {
onSense(0),
loadSense(1),
powerControl(2),
failSafe(3),
defaultOff(4),
voltageSense(5),
powerSense(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the input feed."
::= { infeedEntry 4 }
infeedStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1),
offWait(2),
onWait(3),
offError(4),
onError(5),
noComm(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the input feed. If the infeedCapabilities
'onSense' bit is TRUE, then all of the states are supported
and indicate the sensed state of the input feed. If the
infeedCapabilities 'onSense' bit is FALSE, then only the
'on' and 'noComm' states are supported, and 'on' indicates
a derived state, not a sensed state."
::= { infeedEntry 5 }
infeedLoadStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notOn(1),
reading(2),
loadLow(3),
loadHigh(4),
overLoad(5),
readError(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the load measured on the input feed. If the
infeedCapabilities 'loadSense' bit is TRUE, then all of the
states are supported. If the infeedCapabilities 'loadSense'
bit is FALSE, then only the 'normal' and 'noComm' states are
supported."
::= { infeedEntry 6 }
infeedLoadValue OBJECT-TYPE
SYNTAX INTEGER(-1..25500)
UNITS "hundredth Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load measured on the input feed. A non-negative value
indicates the measured load in hundredths of Amps. A
negative value indicates that a load value was not able to
be measured."
::= { infeedEntry 7 }
infeedLoadHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load high threshold value of the input feed in Amps."
::= { infeedEntry 8 }
infeedOutletCount OBJECT-TYPE
SYNTAX INTEGER(0..16)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outlets on the input feed."
::= { infeedEntry 9 }
infeedCapacity OBJECT-TYPE
SYNTAX INTEGER(-1..255)
UNITS "Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load capacity of the input feed. A non-negative
value indicates the maximum load in Amps. A negative
value indicates that the capacity was not available."
::= { infeedEntry 10 }
infeedVoltage OBJECT-TYPE
SYNTAX INTEGER(-1..2600)
UNITS "tenth Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The voltage of the input feed. A non-negative value
indicates the voltage in tenths of Volts. A negative
value indicates that the voltage was not available."
::= { infeedEntry 11 }
infeedPower OBJECT-TYPE
SYNTAX INTEGER(-1..15000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active power consumption of the input feed. A non-
negative value indicates the active power consumption in
Watts. A negative value indicates that the active power
consumption was not available."
::= { infeedEntry 12 }
infeedApparentPower OBJECT-TYPE
SYNTAX INTEGER(-1..15000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power consumption of the input feed. A non-
negative value indicates the apparent power consumption in
Volt-Amps. A negative value indicates that the apparent
power consumption was not available."
::= { infeedEntry 13 }
infeedPowerFactor OBJECT-TYPE
SYNTAX INTEGER(-1..100)
UNITS "hundredths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor of the input feed. A non-negative value
indicates the power factor in hundredths. A negative value
indicates that the power factor was not able to be measured."
::= { infeedEntry 14 }
infeedCrestFactor OBJECT-TYPE
SYNTAX INTEGER(-1..1000)
UNITS "tenths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The crest factor for the load of the input feed. A non-
negative value indicates the crest factor in tenths. A
negative value indicates that the crest factor was not able
to be measured."
::= { infeedEntry 15 }
infeedEnergy OBJECT-TYPE
SYNTAX INTEGER(-1..2147483647)
UNITS "Watt-Hours"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The energy consumption of the input feed. A non-negative
value indicates the energy consumption in Watt-Hours. A
negative value indicates that the energy consumption was
not available."
::= { infeedEntry 16 }
--
-- Outlet Table
--
outletTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of outlets."
::= { systemTables 3 }
outletEntry OBJECT-TYPE
SYNTAX OutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the outlet table."
INDEX { towerIndex, infeedIndex, outletIndex }
::= { outletTable 1 }
OutletEntry ::= SEQUENCE {
outletIndex INTEGER,
outletID DisplayString,
outletName DisplayString,
outletCapabilities BITS,
outletStatus INTEGER,
outletLoadStatus INTEGER,
outletLoadValue INTEGER,
outletLoadLowThresh INTEGER,
outletLoadHighThresh INTEGER,
outletControlState INTEGER,
outletControlAction INTEGER,
outletCapacity INTEGER,
outletVoltage INTEGER,
outletPower INTEGER,
outletApparentPower INTEGER,
outletPowerFactor INTEGER,
outletCrestFactor INTEGER,
outletEnergy INTEGER
}
outletIndex OBJECT-TYPE
SYNTAX INTEGER(0..16)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the outlet table."
::= { outletEntry 1 }
outletID OBJECT-TYPE
SYNTAX DisplayString(SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the outlet."
::= { outletEntry 2 }
outletName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the outlet."
::= { outletEntry 3 }
outletCapabilities OBJECT-TYPE
SYNTAX BITS {
onSense(0),
loadSense(1),
powerControl(2),
shutdown(3),
defaultOn(4),
ownInfeed(5),
fusedBranch(6),
voltageSense(7),
powerSense(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the outlet."
::= { outletEntry 4 }
outletStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1),
offWait(2),
onWait(3),
offError(4),
onError(5),
noComm(6),
reading(7),
offFuse(8),
onFuse(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the outlet. If the outletCapabilities
'onSense' bit is TRUE, then the state indicates the sensed
state of the outlet, not a derived state, and 'offError'
and 'onError' are supported to indicate a mismatch between
the control and sensed state. If the outletCapabilities
'fusedBranch' bit is TRUE, then the outlet is on a fused
branch circuit that can detect the fuse state, and 'offFuse'
and 'onFuse' are supported to indicate a fuse error."
::= { outletEntry 5 }
outletLoadStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notOn(1),
reading(2),
loadLow(3),
loadHigh(4),
overLoad(5),
readError(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the load measured on the outlet. If the
outletCapabilities 'loadSense' bit is TRUE, then all of the
states are supported. If the outletCapabilities 'loadSense'
bit is FALSE, then only the 'normal' and 'noComm' states are
supported."
::= { outletEntry 6 }
outletLoadValue OBJECT-TYPE
SYNTAX INTEGER(-1..25500)
UNITS "hundredth Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load measured on the outlet. A non-negative value
indicates the measured load in hundredths of Amps. A
negative value indicates that a load value was not able to
be measured."
::= { outletEntry 7 }
outletLoadLowThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load low threshold value of the outlet in Amps."
::= { outletEntry 8 }
outletLoadHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load high threshold value of the outlet in Amps."
::= { outletEntry 9 }
outletControlState OBJECT-TYPE
SYNTAX INTEGER {
idleOff(0),
idleOn(1),
wakeOff(2),
wakeOn(3),
off(4),
on(5),
lockedOff(6),
lockedOn(7),
reboot(8),
shutdown(9),
pendOn(10),
pendOff(11),
minimumOff(12),
minimumOn(13),
eventOff(14),
eventOn(15),
eventReboot(16),
eventShutdown(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The control state of the outlet. The supported states are
dependent upon the outletCapabilities 'powerControl' and
'shutdown' bits, as well as the supported features of the
firmware version."
::= { outletEntry 10 }
outletControlAction OBJECT-TYPE
SYNTAX INTEGER {
none(0),
on(1),
off(2),
reboot(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An action to change the control state of the outlet. If
the outletCapabilities 'powerControl' bit is TRUE, then the
'on', 'off', and 'reboot' actions can be used to change the
control state of the outlet. If the outletCapabilities
'powerControl' bit is FALSE, then the actions have no
effect."
::= { outletEntry 11 }
outletCapacity OBJECT-TYPE
SYNTAX INTEGER(-1..255)
UNITS "Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load capacity of the outlet. A non-negative value
indicates the maximum load in Amps. A negative value
indicates that the capacity was not available. A non-
negative value requires POPS hardware and key activation
of the 'snmpPOPS' feature."
::= { outletEntry 12 }
outletVoltage OBJECT-TYPE
SYNTAX INTEGER(-1..2600)
UNITS "tenth Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The voltage of the outlet. A non-negative value indicates
the voltage in tenths of Volts. A negative value indicates
that the voltage was not available. A non-negative value
requires POPS hardware and key activation of the 'snmpPOPS'
feature."
::= { outletEntry 13 }
outletPower OBJECT-TYPE
SYNTAX INTEGER(-1..5000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active power consumption of the device plugged into the
outlet. A non-negative value indicates the active power
consumption in Watts. A negative value indicates that the
active power consumption was not available. A non-negative
value requires POPS hardware and key activation of the
'snmpPOPS' feature."
::= { outletEntry 14 }
outletApparentPower OBJECT-TYPE
SYNTAX INTEGER(-1..15000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power consumption of the device plugged into
the outlet. A non-negative value indicates the apparent
power consumption in Volt-Amps. A negative value indicates
that the apparent power consumption was not available. A
non-negative value requires POPS hardware and key activation
of the 'snmpPOPS' feature."
::= { outletEntry 15 }
outletPowerFactor OBJECT-TYPE
SYNTAX INTEGER(-1..100)
UNITS "hundredths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor of the device plugged into the outlet. A
non-negative value indicates the power factor in hundredths.
A negative value indicates that the power factor was not able
to be measured. A non-negative value requires POPS hardware
and key activation of the 'snmpPOPS' feature."
::= { outletEntry 16 }
outletCrestFactor OBJECT-TYPE
SYNTAX INTEGER(-1..1000)
UNITS "tenths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The crest factor for the load of the device plugged into the
outlet. A non-negative value indicates the crest factor in
tenths. A negative value indicates that the crest factor
was not able to be measured. A non-negative value requires
POPS hardware and key activation of the 'snmpPOPS' feature."
::= { outletEntry 17 }
outletEnergy OBJECT-TYPE
SYNTAX INTEGER(-1..2147483647)
UNITS "Watt-Hours"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The energy consumption of the device plugged into the outlet.
A non-negative value indicates the energy consumption in
Watt-Hours. A negative value indicates that the energy
consumption was not available. A non-negative value requires
POPS hardware and key activation of the 'snmpPOPS' feature."
::= { outletEntry 18 }
--
-- Environmental Monitor Table
--
envMonTable OBJECT-TYPE
SYNTAX SEQUENCE OF EnvMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of environmental monitors."
::= { systemTables 4 }
envMonEntry OBJECT-TYPE
SYNTAX EnvMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the environmental monitor table."
INDEX { envMonIndex }
::= { envMonTable 1 }
EnvMonEntry ::= SEQUENCE {
envMonIndex INTEGER,
envMonID DisplayString,
envMonName DisplayString,
envMonStatus INTEGER,
envMonWaterSensorName DisplayString,
envMonWaterSensorStatus INTEGER,
envMonADCName DisplayString,
envMonADCStatus INTEGER,
envMonADCCount INTEGER,
envMonADCLowThresh INTEGER,
envMonADCHighThresh INTEGER,
envMonTempHumidSensorCount INTEGER,
envMonContactClosureCount INTEGER
}
envMonIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the environmental monitor table."
::= { envMonEntry 1 }
envMonID OBJECT-TYPE
SYNTAX DisplayString(SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the environmental monitor."
::= { envMonEntry 2 }
envMonName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the environmental monitor."
::= { envMonEntry 3 }
envMonStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
noComm(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the environmental monitor."
::= { envMonEntry 4 }
envMonWaterSensorName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the water sensor."
::= { envMonEntry 5 }
envMonWaterSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
alarm(1),
noComm(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the water sensor."
::= { envMonEntry 6 }
envMonADCName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION