-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIPOMANII-MIB
4570 lines (4059 loc) · 139 KB
/
IPOMANII-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
-- Ingrasys iPoManII MIB
-- MIB for Intelligent Power Management
--
-- { iso org(3) dod(6) internet(1) private(4) enterprises(1) ingrasys(2468)
-- product(1) pduAgent(4) iPoManII(1)
-- ==============================================================================================
---
--- Revision History
---
--- v0.80 20-Apr-2005 Ming Lu/Ingrasys
--- Created
---
--- v0.81 04-Aug-2007 Ming Lu/Ingrasys
--- Modify Some error from Web check issue
--- Add Slave mib data and control
---
--- v0.82 04-Oct-2007 Ming Lu/Ingrasys
--- Modify Some error from Web check issue
---
--- v1.00 06-Dec-2007 Ming Lu/Ingrasys
--- Add Slave trap 26-150
---
--- v1.01 25-Jan-2008 Ming Lu/Ingrasys
--- Modify Some mib wording error
---
--- v1.02 30-Jan-2008 Ming Lu/Ingrasys
--- Modify Some mib wording error
---
--- v1.03 09-Apr-2010 Ming Lu/Ingrasys
--- Add reset WattItem
---
IPOMANII-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises
FROM RFC1155-SMI
OBJECT-TYPE
FROM RFC-1212
DisplayString
FROM RFC1213-MIB
TRAP-TYPE
FROM RFC-1215;
ingrasys OBJECT IDENTIFIER ::= { enterprises 2468 }
product OBJECT IDENTIFIER ::= { ingrasys 1 }
pduAgent OBJECT IDENTIFIER ::= { product 4 }
iPoManII OBJECT IDENTIFIER ::= { pduAgent 2 }
ipmObjects OBJECT IDENTIFIER ::= { iPoManII 1 }
ipmTraps OBJECT IDENTIFIER ::= { iPoManII 2 }
ipmIdent OBJECT IDENTIFIER ::= { ipmObjects 1 }
ipmAgent OBJECT IDENTIFIER ::= { ipmObjects 2 }
ipmDevice OBJECT IDENTIFIER ::= { ipmObjects 3 }
ipmSlave OBJECT IDENTIFIER ::= { ipmObjects 4 }
ipmEnv OBJECT IDENTIFIER ::= { ipmObjects 5 }
-- ===========================================================================
--
-- ipmIdent
--
-- iPoManII Identification Group
--
-- ===========================================================================
ipmIdentManufacturer OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The name of manufacturer."
::= { ipmIdent 1 }
ipmIdentModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Model designation of device."
::= { ipmIdent 2 }
ipmIdentAgentSoftwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..63))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The firmware version of the device."
::= { ipmIdent 3 }
ipmIdentName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A description of this device."
::= { ipmIdent 4 }
ipmAgentConfig OBJECT IDENTIFIER ::= { ipmAgent 1 }
-- ===========================================================================
--
-- ipmConfig
--
-- iPoManII Configuration Group, configure the secific features of iPoManII
--
-- ===========================================================================
ipmAgentMibVersion OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Mib Version implemented on this device."
::= { ipmAgentConfig 1 }
ipmAgentTime OBJECT IDENTIFIER ::= { ipmAgent 2 }
-- ===========================================================================
--
-- ipmConfigTime
--
-- Date/Time Configuration Group of the device.
--
-- ===========================================================================
ipmAgentTimeDate OBJECT-TYPE
SYNTAX DisplayString (SIZE (10..10))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The date in agent, format is (dd/mm/yyyy)"
::= { ipmAgentTime 1 }
ipmAgentTimeTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (8..8))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The time in agent, format is (hh:mm:ss)"
::= { ipmAgentTime 2 }
ipmAgentTimerFromNtp OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable or disable the agent to synchronize date/time with NTP server."
::= { ipmAgentTime 3 }
ipmAgentNtpIpAddress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ip address of NTP server."
::= { ipmAgentTime 4 }
ipmAgentNtpTimeZone OBJECT-TYPE
SYNTAX INTEGER {
gMT-1200(1),
gMT-1100(2),
gMT-1000(3),
gMT-0900(4),
gMT-0800(5),
gMT-0700(6),
gMT-0600(7),
gMT-0500(8),
gMT-0400(9),
gMT-0330(10),
gMT-0300(11),
gMT-0200(12),
gMT-0100(13),
gMT-0000(14),
gMT0100(15),
gMT0200(16),
gMT0300(17),
gMT0330(18),
gMT0400(19),
gMT0500(20),
gMT0530(21),
gMT0600(22),
gMT0700(23),
gMT0800(24),
gMT0900(25),
gMT1000(26),
gMT1100(27),
gMT1200(28)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Time Zone to use when synchronize with NTP server."
::= { ipmAgentTime 5 }
ipmAgentDayLightSaving OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable the Day Light Saving when synchronize with NTP server."
::= { ipmAgentTime 6 }
ipmAgentNetwork OBJECT IDENTIFIER ::= { ipmAgent 3 }
-- ===========================================================================
--
-- ipmConfigNetwork
--
-- Network Configuration Group of the device.
--
-- ===========================================================================
ipmAgentNetworkIp OBJECT IDENTIFIER ::= { ipmAgentNetwork 1 }
-- ===========================================================================
--
-- ipmAgentNetworkIp
--
-- Ip address Configuration Group of the device.
--
-- ===========================================================================
ipmAgentNetworkIpAdress OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The ip address that NMS can identify the managed device."
::= { ipmAgentNetworkIp 1}
ipmAgentNetworkIpGateway OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The default gateway that allow device managed through routers."
::= { ipmAgentNetworkIp 2}
ipmAgentNetworkIpSubnet OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Internet address subnet mask"
::= { ipmAgentNetworkIp 3}
ipmAgentNetworkDhcpControl OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable DHCP protocol"
::= { ipmAgentNetwork 2 }
ipmAgentNetworkPingControl OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable to response to PING request."
::= { ipmAgentNetwork 3 }
ipmAgentNetworkTftpControl OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable TFTP protocol"
::= { ipmAgentNetwork 4 }
ipmAgentNetworkTelnet OBJECT IDENTIFIER ::= { ipmAgentNetwork 5 }
-- ===========================================================================
--
-- ipmConfigNetworkTelnet
--
-- Telnet Configuration Group of the device.
--
-- ===========================================================================
ipmAgentTelnetControl OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable Telnet protocol."
::= { ipmAgentNetworkTelnet 1 }
ipmAgentTelnetPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The TCP port for telnet"
::= { ipmAgentNetworkTelnet 2}
ipmAgentNetworkHttp OBJECT IDENTIFIER ::= { ipmAgentNetwork 6 }
-- ===========================================================================
--
-- ipmConfigNetworkHttp
--
-- HTTP Configuration Group of the device.
--
-- ===========================================================================
ipmAgentHttpControl OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable HTTP protocol."
::= { ipmAgentNetworkHttp 1 }
ipmAgentHttpPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The TCP port for HTTP."
::= { ipmAgentNetworkHttp 2}
ipmAgentNetworkSnmp OBJECT IDENTIFIER ::= { ipmAgentNetwork 7 }
-- ===========================================================================
--
-- ipmAgentNetworkSnmp
--
-- SNMP Configuration Group of the device.
--
-- ===========================================================================
ipmAgentSnmpControl OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Enable/disable SNMP protocol."
::= { ipmAgentNetworkSnmp 1 }
ipmAgentSnmpPort OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The UDP port for SNMP."
::= { ipmAgentNetworkSnmp 2}
ipmAgentLog OBJECT IDENTIFIER ::= { ipmAgentConfig 4 }
-- ===========================================================================
--
-- ipmConfigLog
--
-- Log Configuration Group of the device.
--
-- ===========================================================================
pduAgentDataLogInterval OBJECT-TYPE
SYNTAX INTEGER (60..28800) -- in seconds
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The interval of the updation of the data log. The value
is in seconds"
::= { ipmAgentLog 1 }
ipmAgentControl OBJECT IDENTIFIER ::= { ipmAgentConfig 5 }
-- ===========================================================================
--
-- ipmAgentAgentControl
--
-- Agent Control Configuration Group of the device.
--
-- ===========================================================================
ipmAgentControlDefault OBJECT-TYPE
SYNTAX INTEGER {
reset(1),
nothing(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reset all parameters of the agent to default value."
::= { ipmAgentControl 1}
ipmAgentControlRestart OBJECT-TYPE
SYNTAX INTEGER {
restart(1),
nothing(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Restart the agent."
::= { ipmAgentControl 2}
ipmAgentTrap OBJECT IDENTIFIER ::= { ipmAgentConfig 6 }
-- ===========================================================================
--
-- ipmAgentTrap
--
-- Trap Configuration Group of the agent.
--
-- ===========================================================================
ipmAgentTrapRetryCount OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The count of repeat traps send to NMS before trap
acknowledgement received."
::= { ipmAgentTrap 1}
ipmAgentTrapRetryTime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The time interval in seconds between retry traps sned to NMS."
::= { ipmAgentTrap 2}
ipmAgentTrapAckSignature OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The signature of trap acknowledgement."
::= { ipmAgentTrap 3}
-- ===========================================================================
--
-- ipmAgentTrapsReceiversTable
--
-- ===========================================================================
ipmAgentTrapsReceiversTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpmAgentTrapsReceiversEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of managers to send traps to. The number of
entries is given by the value of agentConfigNumTrapReceivers"
::= { ipmAgentConfig 7}
ipmAgentTrapsReceiversEntry OBJECT-TYPE
SYNTAX IpmAgentTrapsReceiversEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The managers to send traps to."
INDEX { trapsIndex }
::= { ipmAgentTrapsReceiversTable 1 }
IpmAgentTrapsReceiversEntry ::=
SEQUENCE {
trapsIndex INTEGER,
trapsReceiverAddr IpAddress,
receiverCommunityString DisplayString,
receiverNmsType INTEGER,
receiverSeverityLevel INTEGER,
receiverDescription DisplayString
}
trapsIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to a trap receiver entry."
::= { ipmAgentTrapsReceiversEntry 1 }
trapsReceiverAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the manager to send a trap to."
::= { ipmAgentTrapsReceiversEntry 2 }
receiverCommunityString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..15))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The community name to use in the trap when
sent to the manager."
::= { ipmAgentTrapsReceiversEntry 3 }
receiverNmsType OBJECT-TYPE
SYNTAX INTEGER {
none(1),
iPoManII-trap(2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The trap group that NMS desired."
::= { ipmAgentTrapsReceiversEntry 4 }
receiverSeverityLevel OBJECT-TYPE
SYNTAX INTEGER {
informational(1),
warning(2),
severe(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The severity level of traps to be received by this manager."
::= { ipmAgentTrapsReceiversEntry 5 }
receiverDescription OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Description of trap receivers"
::= { ipmAgentTrapsReceiversEntry 6 }
-- ===========================================================================
--
-- ipmAgentAccessControlTable
--
-- ===========================================================================
ipmAgentAccessControlTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpmAgentAccessControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of managers which can access the device with private
community string."
::= { ipmAgentConfig 8}
ipmAgentAccessControlEntry OBJECT-TYPE
SYNTAX IpmAgentAccessControlEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The managers."
INDEX { accessIndex}
::= { ipmAgentAccessControlTable 1 }
IpmAgentAccessControlEntry ::=
SEQUENCE {
accessIndex
INTEGER,
accessControlAddr
IpAddress,
accessControlMode
INTEGER
}
accessIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to a access control entry."
::= { ipmAgentAccessControlEntry 1 }
accessControlAddr OBJECT-TYPE
SYNTAX IpAddress
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The IP address of the manager to access the device."
::= { ipmAgentAccessControlEntry 2 }
accessControlMode OBJECT-TYPE
SYNTAX INTEGER {
permitted (1),
denied (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Access type, only read/Write access type can change parameter
of the device."
::= { ipmAgentAccessControlEntry 3 }
ipmDeviceInlet OBJECT IDENTIFIER ::= { ipmDevice 1 }
-- ===========================================================================
--
-- ipmDeviceInlet
--
-- Inlet Group
--
-- ===========================================================================
ipmDeviceInletNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The inlet number on this device."
::= { ipmDeviceInlet 1}
ipmDeviceInletConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpmDeviceInletConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of inlet on this device."
::= { ipmDeviceInlet 2}
ipmDeviceInletConfigEntry OBJECT-TYPE
SYNTAX IpmDeviceInletConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The inlet number of device."
INDEX { inletConfigIndex}
::= { ipmDeviceInletConfigTable 1 }
IpmDeviceInletConfigEntry ::=
SEQUENCE {
inletConfigIndex
INTEGER,
inletConfigDesc
DisplayString,
inletConfigVoltageHigh
INTEGER,
inletConfigVoltageHighAction
INTEGER,
inletConfigVoltageLow
INTEGER,
inletConfigVoltageLowAction
INTEGER,
inletConfigCurrentHigh
INTEGER,
inletConfigCurrentHighAction
INTEGER,
inletConfigFrequencyHigh
INTEGER,
inletConfigfrequencyHighAction
INTEGER,
inletConfigFrequencyLow
INTEGER,
inletConfigfrequencyLowAction
INTEGER
}
inletConfigIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to a access inlet configuration table."
::= { ipmDeviceInletConfigEntry 1 }
inletConfigDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A Description of inlet of device."
::= { ipmDeviceInletConfigEntry 2 }
inletConfigVoltageHigh OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Inlet high voltage threshold, in volts."
::= { ipmDeviceInletConfigEntry 3 }
inletConfigVoltageHighAction OBJECT-TYPE
SYNTAX INTEGER {
outletsOff (1),
nothing (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reaction of the device when inlet voltage higher than set point."
::= { ipmDeviceInletConfigEntry 4 }
inletConfigVoltageLow OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Inlet low voltage threshold, in volts."
::= { ipmDeviceInletConfigEntry 5 }
inletConfigVoltageLowAction OBJECT-TYPE
SYNTAX INTEGER {
outletsOff (1),
nothing (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reaction of the device when inlet voltage lower than set point."
::= { ipmDeviceInletConfigEntry 6 }
inletConfigCurrentHigh OBJECT-TYPE
SYNTAX INTEGER (1..160) --
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Inlet low voltage threshold, in 0.1 amps."
::= { ipmDeviceInletConfigEntry 7 }
inletConfigCurrentHighAction OBJECT-TYPE
SYNTAX INTEGER {
outletsOff (1),
nothing (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reaction of the device when inlet current higher than set point."
::= { ipmDeviceInletConfigEntry 8 }
inletConfigFrequencyHigh OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Inlet high frequency threshold, in hz."
::= { ipmDeviceInletConfigEntry 9 }
inletConfigfrequencyHighAction OBJECT-TYPE
SYNTAX INTEGER {
outletsOff (1),
nothing (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reaction of the device when inlet frequency higher than set point."
::= { ipmDeviceInletConfigEntry 10 }
inletConfigFrequencyLow OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Inlet low frequency threshold, in hz."
::= { ipmDeviceInletConfigEntry 11 }
inletConfigfrequencyLowAction OBJECT-TYPE
SYNTAX INTEGER {
outletsOff (1),
nothing (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reaction of the device when inlet frequency lower than set point."
::= { ipmDeviceInletConfigEntry 12 }
ipmDeviceInletStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpmDeviceInletStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of inlet on this device."
::= { ipmDeviceInlet 3}
ipmDeviceInletStatusEntry OBJECT-TYPE
SYNTAX IpmDeviceInletStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The inlet number of device."
INDEX { inletStatusIndex}
::= { ipmDeviceInletStatusTable 1 }
IpmDeviceInletStatusEntry ::=
SEQUENCE {
inletStatusIndex
INTEGER,
inletStatusVoltage
INTEGER,
inletStatusCurrent
INTEGER,
inletStatusFrequency
INTEGER,
inletStatusKwatt
INTEGER,
inletStatusWH
INTEGER
}
inletStatusIndex OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to a access inlet configuration table."
::= { ipmDeviceInletStatusEntry 1 }
inletStatusVoltage OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Inlet Voltage in 0.1 volts"
::= { ipmDeviceInletStatusEntry 2 }
inletStatusCurrent OBJECT-TYPE
SYNTAX INTEGER (0..65500) --
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Inlet Current in 0.001 Amp."
::= { ipmDeviceInletStatusEntry 3 }
inletStatusFrequency OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Inlet Frequency in 0.1 Hz"
::= { ipmDeviceInletStatusEntry 4 }
inletStatusKwatt OBJECT-TYPE
SYNTAX INTEGER (0..65500) --
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Inlet Kwatt in 0.1 KW/H"
::= { ipmDeviceInletStatusEntry 5 }
inletStatusWH OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The Inlet Kwatt in 0.1 W/H"
::= { ipmDeviceInletStatusEntry 6 }
inletWattReset OBJECT-TYPE
SYNTAX INTEGER {
none(1),
inlet1(2),
inlet2(3)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reset inlet kw."
::= { ipmDeviceInlet 4}
ipmDeviceOutlet OBJECT IDENTIFIER ::= { ipmDevice 2 }
-- ===========================================================================
--
-- ipmDeviceOutlet
--
-- Inlet Group
--
-- ===========================================================================
ipmDeviceOutletNumber OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The outlet number on this device."
::= { ipmDeviceOutlet 1}
ipmDeviceOutletConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpmDeviceOutletConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of outlet on this device."
::= { ipmDeviceOutlet 2}
ipmDeviceOutletConfigEntry OBJECT-TYPE
SYNTAX IpmDeviceOutletConfigEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The inlet number of device."
INDEX { inletConfigIndex}
::= { ipmDeviceOutletConfigTable 1 }
IpmDeviceOutletConfigEntry ::=
SEQUENCE {
outletConfigIndex
INTEGER,
outletConfigDesc
DisplayString,
outletConfigLocation
DisplayString,
outletConfigOnDelay
INTEGER,
outletConfigOffDelay
INTEGER,
outletConfigCurrentHigh
INTEGER,
outletConfigCurrentHighAction
INTEGER
}
outletConfigIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to a access inlet configuration table."
::= { ipmDeviceOutletConfigEntry 1 }
outletConfigDesc OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"A Description of outlet of device."
::= { ipmDeviceOutletConfigEntry 2 }
outletConfigLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Location of device connectted to this outlet."
::= { ipmDeviceOutletConfigEntry 3 }
outletConfigOnDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The delay time before turn on tis outlet, in seconds."
::= { ipmDeviceOutletConfigEntry 4 }
outletConfigOffDelay OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The delay time before turn off tis outlet, in seconds."
::= { ipmDeviceOutletConfigEntry 5 }
outletConfigCurrentHigh OBJECT-TYPE
SYNTAX INTEGER (1..65500) --
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The outlet high current threshold, in amp."
::= { ipmDeviceOutletConfigEntry 6 }
outletConfigCurrentHighAction OBJECT-TYPE
SYNTAX INTEGER {
outletOff (1),
nothing (2)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"Reaction of the device when outlet current higher than set point."
::= { ipmDeviceOutletConfigEntry 7 }
ipmDeviceOutletStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF IpmDeviceOutletStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"A list of outlet on this device."
::= { ipmDeviceOutlet 3}
ipmDeviceOutletStatusEntry OBJECT-TYPE
SYNTAX IpmDeviceOutletStatusEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION
"The outlet number of device."
INDEX { outletStatusIndex}
::= { ipmDeviceOutletStatusTable 1 }
IpmDeviceOutletStatusEntry ::=
SEQUENCE {
outletStatusIndex
INTEGER,
outletStatusStatus
INTEGER,
outletStatusCurrent
INTEGER,
outletStatusKwatt
INTEGER,
outletStatusWH
INTEGER,
outletStatusStateTime
INTEGER,