-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathIPD-MIB_Q419V9.mib
2062 lines (1932 loc) · 65.9 KB
/
IPD-MIB_Q419V9.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
-- *************************************************************************
-- AUSTIN HUGHES ELECTRONICS LTD INFRAPOWER-MIB
-- *************************************************************************
-- Copyright (c) 2015 Austin Hughes Electronics Ltd.
-- InfraPower is a Trademark of Austin Hughes Electronics Ltd.
--
-- Title: AH InfraPower ATS/PDU MIB
--
-- Version : 4.1.8
--
-- Generated by script: edc
--
-- Input File: InfraPower-MIB.mib
--
-- Last Update: Thursday, November, 25, 2019
--
-- Revision History:
-- *************************************************************************
-- 2019/11/25 - v4.1.8
-- -Added oid pduSerialNo DisplayString (SIZE (1..32))
-- 2019/07/01 - v4.1.7
-- -Updated SYNTAX for pduMainLoadAmp to DisplayString (SIZE (1..3))
-- -Updated SYNTAX for pduMainActivePower to DisplayString (SIZE (1..7))
-- -Updated SYNTAX for pduMainApparentPower to DisplayString (SIZE (1..7))
-- -Updated SYNTAX for pduMainCumulativeEnergy to DisplayString (SIZE (1..8))
-- -Fixed error on SYNTAX of RCMSensorTableEntry to RCMSensorTableEntry (from THSensorTableEntry)
-- -Fixed error on SYNTAX of rCMSensorAlarmThresh to INTEGER
-- -Fixed error on SYNTAX of rCMSensorRisingAlertThresh to INTEGER
-- -Fixed error on SYNTAX of rCMSensorLowAlertThresh to INTEGER
-- -Removed rCMSensorPeakReading, rCMSensorPeakReadingReset and rCMSensorActivation from rCMSensorTableEntry
-- -Added rCMSensors to pduEntry
-- 2019/05/30 - v4.1.6
-- -Updated SYNTAX for pduMainLoadAmp to DisplayString (SIZE (1..3))
-- -Updated SYNTAX for pduMainActivePower to DisplayString (SIZE (1..7))
-- -Updated SYNTAX for pduMainApparentPower to DisplayString (SIZE (1..7))
-- -Updated SYNTAX for pduMainCumulativeEnergy to DisplayString (SIZE (1..8))
-- -Support PDU with RCM sensor
-- -Added rCMSensors to pduEntry
-- -Added RCM traps (rcmSensorEventTriggered, rcmSensorEventCleared, rcmSensorConnectionLost, rcmSensorConnectionRecovered)
--
-- 2018/07/19 - v4.1.4
-- -Removed OutletTable for all outlets
--
-- 2018/06/21 - v4.1.3
-- -Added OutletTable for all outlets
--
-- 2018/06/05 - v4.0.2
-- -Changed description of atsTotalLoadAmp, atsOverLoadThreshold, infraPowerwebAccessNotificationsGroup
-- -Removed circuitEnergy
-- -Chnaged description of 'circuitActivePower','circuitApparentPower'
--
-- 2018/06/01 - v4.0.1
-- -Changed description of atsInputSwitch
--
-- 2018/05/16 - v4.0.0
-- -Added support for InfraPower ATS.
-- -Added object 'infraPowerATSGroup', 'infraPowerATSNotificationsGroup'
-- -Added object 'atsTraps'
--
-- 2017/12/18 - v3.9.0
-- -Added object 'circuitEnergy','circuitPowerFactor','circuitActivePower','circuitApparentPower'
--
-- 2017/09/29 - v3.8.0
-- -Added object 'circuitCumulativeEnergyReset'
--
-- 2016/11/07 - v3.7.1
-- -Changed MAX-ACCESS of OBJECT-TYPE 'tempSensorLowerAlarmThresh' to read-only.
-- -Changed MAX-ACCESS of OBJECT-TYPE 'humiSensorLowerAlarmThresh' to read-only.
-- -Changed MAX-ACCESS of OBJECT-TYPE 'tHSensorActivation' to read-write.
--
-- 2016/09/22 - v3.6
-- -IMPORTS from SNMPv2-CONF,SNMPv2-TC and SNMPv2-SMI
-- -Added MODULE-IDENTITY, OBJECT-GROUP, NOTIFICATION-GROUP
-- -SMIv2 standard.
--
-- 2016/09/22 - v3.5
-- -The SYNTAX of OBJECT-TYPE 'circuitState' is updated to INTEGER {Normal(0),Alarm(1),RisingAlert(2),LowAlert(3),NotExist(4)}.
-- -The SYNTAX of OBJECT-TYPE 'stdOutletAlarmState' is updated to INTEGER {Normal(0),Alarm(1),RisingAlert(2),LowAlert(3),NotExist(4)}.
-- -The SYNTAX of OBJECT-TYPE 'c19OutletAlarmState' is updated to INTEGER {Normal(0),Alarm(1),RisingAlert(2),LowAlert(3),NotExist(4)}.
-- -Changed object name 'AustinHughes' to 'austinHughes'
-- -Changed object name 'InfraPower' to 'infraPower'
-- -Changed object name 'THSensors' to 'tHSensors'
-- -Added object 'circuitLoadAmpRisingAlertThresh'
-- -changed MAX-ACCESS write-only to MAX-ACCESS read-write for SMIv2 compatible.
-- ('circuitLoadPeakAmpReset','stdOutletPeakAmpReset','stdOutletCumulativeEnergyReset','c19OutletPeakAmpReset','c19OutletCumulativeEnergyReset')
-- -changed IMPORTS (enterprises, OBJECT-TYPE, NOTIFICATION-TYPE FROM SNMPv2-SMI
--
-- 2015/03/20 - v3.0
-- -Added support for InfraPower W3PDU
-- -The SYNTAX of OBJECT-TY 'PpduMainLoadVoltage' is updated to DisplayString (SIZE (4..12))
-- -The SYNTAX of OBJECT-TY 'circuitIndex' is updated to INTEGER (1..6)
-- -The SYNTAX of OBJECT-TY 'circuitBreakerIndex' is updated to INTEGER (1..6)
-- 2014/07/21 - v2.6
-- -Updated description
-- 2014/01/21 - v2.5
-- -Updated description
-- 2014/01/21 - v2.4
-- -Remove imports from INET-ADDRESS-MIB for InetAddressIPv4
-- -Embedded the InetAddressIPv4 TEXTUAL-CONVENTION in this mib
-- -Embedded the DateAndTime TEXTUAL-CONVENTION in this mib
-- -Embedded the DisplayString TEXTUAL-CONVENTION in this mib
-- (no need to load SNMPv2-TC, SNMPv2-TC & DisplayString from external mib files)
-- 2013/07/12 - v2.3
-- -updated description to outlet
-- 2013/05/14 - v2.2
-- -THSensorActivation is changed to read-only.
-- 2013/05/03 - v2.1
-- -added imports to InetAddressIPv4 from INET-ADDRESS-MIB.
-- 2013/04/09 - v2.0
-- -added individaul outlet Alarm, LowAlert threhold, PowerUpSeqDelay setup.
-- -added read-only pdu RealTimeClock OID.
-- 2013/02/07 - v1.2
-- -limited Trap to circuit alarm, breaker status change, th alarm, th disconnection !
--
-- ********************************************************************************************
-- ********************************************************************************************
-- InfraPower-MIB { iso org(3) dod(6) internet(1) private(4)
-- enterprises(1) AustinHughes(34550) }
InfraPower-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, OBJECT-TYPE, NOTIFICATION-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString FROM SNMPv2-TC
OBJECT-GROUP, NOTIFICATION-GROUP FROM SNMPv2-CONF;
-- IMPORTS End
--------------------------------------------------------------------------------
infraPower MODULE-IDENTITY
LAST-UPDATED "201609221226Z" -- 22 Sep 2016, 12:26
ORGANIZATION "www.austin-hughes.com"
CONTACT-INFO " APAC
=========================================================
Austin Hughes Electronics Ltd.
Unit 3608-12, Cable TV Tower,
9 Hoi Shing Road, Tsuen Wan,
Hong Kong
email : support@austin-hughes.com
China
=========================================================
Austin Hughes Electronics (China) Ltd.
Hexi Road No.2 Jinxia Industrial Area,
Changan Town, Dongguan City
Guangdong Province 523850
China
Americas
=========================================================
Austin Hughes Solutions Inc.
41320 Boyce Road, Fremont,
CA 94538,
USA
EMEA
=========================================================
Austin Hughes Europe Ltd.
Unit 1, Chancery Gate Business Centre,
Manor House Avenue,
Southampton, SO15 0AE
United Kingdom
"
DESCRIPTION "SNMP MIB file for InfraPower PDU.
"
REVISION "201609221226Z"
DESCRIPTION
" 1) Fixed SYNTAX error for 'circuitState','stdOutletAlarmState','c19OutletAlarmState'
2) SMIv2 standard
"
::= { enterprises 34550 20 }
--------------------------------------------------------------------------------
austinHughes OBJECT IDENTIFIER ::= { enterprises 34550 }
ipDongle OBJECT IDENTIFIER ::= { infraPower 1 }
pduGroup OBJECT IDENTIFIER ::= { infraPower 2 }
infraPowerMIBGroups OBJECT IDENTIFIER ::= { infraPower 3 }
atsGroup OBJECT IDENTIFIER ::= { infraPower 4 }
--------------------------------------------------------------------------------
infraPowerIPDongleGroup OBJECT-GROUP
OBJECTS { ipdongleModel,
ipdongleName,
ipdongleLocation,
ipdongleMacAddress,
ipdongleIpAddressIpv4,
ipdongleSubnetIpv4,
ipdongleGatewayIpv4 }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the ipdongle."
::= { infraPowerMIBGroups 1 }
infraPowerPDUGroup OBJECT-GROUP
OBJECTS { pduIndex,
pduModel,
pduID,
pduSerialNo,
pduName,
pduLocation,
pduGroupNumber,
pduMainLoadVoltage,
pduMainLoadAmp,
pduMainPowerFactor,
pduMainActivePower,
pduMainApparentPower,
pduMainCumulativeEnergy,
pduRealTimeClock
--circuits,
--circuitBreakers,
--outlets,
--tHSensors
--rCMSensors
}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the PDU."
::= { infraPowerMIBGroups 2 }
infraPowerCircuitGroup OBJECT-GROUP
OBJECTS { circuitIndex,
circuitRatedAmp,
circuitName,
circuitState,
circuitLoadVoltage,
circuitLoadAmp,
circuitPowerFactor,
circuitActivePower,
circuitApparentPower,
circuitLoadPeakAmp,
circuitCumulativeEnergy,
circuitLoadPeakAmpReset,
circuitBreakerStateCopy,
circuitLoadAmpAlarmThresh,
circuitLoadAmpRisingAlertThresh,
circuitLoadAmpLowAlertThresh,
circuitCumulativeEnergyReset}
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the circuits."
::= { infraPowerMIBGroups 3 }
infraPowerCircuitBreakerGroup OBJECT-GROUP
OBJECTS { circuitBreakerIndex,
circuitBreakerRatedAmp,
circuitBreakerState }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the circuit breaks."
::= { infraPowerMIBGroups 4 }
infraPowerStdOutletGroup OBJECT-GROUP
OBJECTS { stdOutletIndex,
stdOutletCircuit,
stdOutletType,
stdOutletName,
stdOutletPowerStatus,
stdOutletAlarmState,
stdOutletLoadAmp,
stdOutletEnergy,
stdOutletPeakAmp,
stdOutletCumulativeEnergy,
stdOutletLoadAmpAlarmThresh,
stdOutletLoadAmpRAlertThresh,
stdOutletLoadAmpLAlertThresh,
stdOutletPeakAmpReset,
stdOutletCumulativeEnergyReset,
stdOutletPowerUpSequenceDelay }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the non C19 outlets."
::= { infraPowerMIBGroups 5 }
infraPowerC19OutletGroup OBJECT-GROUP
OBJECTS { c19OutletIndex,
c19OutletCircuit,
c19OutletType,
c19OutletName,
c19OutletPowerStatus,
c19OutletAlarmState,
c19OutletLoadAmp,
c19OutletEnergy,
c19OutletPeakAmp,
c19OutletCumulativeEnergy,
c19OutletLoadAmpAlarmThresh,
c19OutletLoadAmpRAlertThresh,
c19OutletLoadAmpLAlertThresh,
c19OutletPeakAmpReset,
c19OutletCumulativeEnergyReset,
c19OutletPowerUpSequenceDelay }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the C19 outlets."
::= { infraPowerMIBGroups 6 }
infraPowerTHSensorGroup OBJECT-GROUP
OBJECTS { tHSensorIndex,
tHSensorLocation,
tHSensorType,
tHSensorConnState,
tHSensorAlarmState,
tempSensorValue,
tempSensorValueStr,
tempSensorUpperAlarmThresh,
tempSensorLowerAlarmThresh,
humiSensorValue,
humiSensorValueStr,
humiSensorUpperAlarmThresh,
humiSensorLowerAlarmThresh,
tHSensorActivation }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the TH Sensor."
::= { infraPowerMIBGroups 7 }
infraPowerNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { circuitLoadEventTriggered, circuitBreakerTripped, circuitBreakerRecovered, sensorConnectionLost, tempSensorEventTriggered, humiSensorEventTriggered, pduConnectionLost, rcmSensorEventTriggered, rcmSensorEventCleared, rcmSensorConnectionLost, rcmSensorConnectionRecovered }
STATUS current
DESCRIPTION
"The notifications which InfraPower agent is required to
implement."
::= { infraPowerMIBGroups 9 }
infraPowerwebAccessNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS { webLogin }
STATUS current
DESCRIPTION
"The notifications which InfraPower agent is required to
implement."
::= { infraPowerMIBGroups 10 }
infraPowerwebAccessGroup OBJECT-GROUP
OBJECTS { objectDateTime,
userName,
webAccessIpAddress }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and web login trap of the ipdongle."
::= { infraPowerMIBGroups 11 }
infraPowerATSNotificationsGroup NOTIFICATION-GROUP
NOTIFICATIONS {atsOverLoadEventTriggered, atsOverLoadEventCleared, atsPrimaryFeedOfflineEventTriggered, atsPrimaryFeedOfflineEventCleared, atsSecondaryFeedOfflineEventTriggered, atsSecondaryFeedOfflineEventCleared, atsInputSwitchEventTriggered, atsOnFailAutoSwitchFeedEventTriggered, atsConnectionLost, atsConnectionRecovered }
STATUS current
DESCRIPTION
"The ATS notifications which InfraPower agent is required to
implement."
::= { infraPowerMIBGroups 12 }
infraPowerATSGroup OBJECT-GROUP
OBJECTS { atsIndex,
atsModel,
atsID,
atsName,
atsLocation,
atsInputSwitch,
atsFeedPrimaryStatus,
atsFeedSecondaryStatus,
atsOutputFromFeed,
atsTotalLoadAmp,
atsOverLoadThreshold,
atsOverLoadStage,
atsConnection }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the ATS."
::= { infraPowerMIBGroups 8 }
--------------------------------------------------------------------------------
-- textual conventions
-- InetAddressIPv4 is extrated from INET-ADDRESS-MIB
InetAddressIPv4 ::= TEXTUAL-CONVENTION
DISPLAY-HINT "1d.1d.1d.1d"
STATUS current
DESCRIPTION
"Represents an IPv4 network address:
Octets Contents Encoding
1-4 IPv4 address network-byte order
The corresponding InetAddressType value is ipv4(1).
This textual convention SHOULD NOT be used directly in object
definitions, as it restricts addresses to a specific format.
However, if it is used, it MAY be used either on its own or in
conjunction with InetAddressType, as a pair."
SYNTAX OCTET STRING (SIZE (4))
--------------------------------------------------------------------------------
infraPowerRCMSensorGroup OBJECT-GROUP
OBJECTS { rCMSensorIndex,
rCMSensorLocation,
rCMSensorReading,
rCMSensorConnState,
rCMSensorAlarmState,
rCMSensorAlarmThresh,
rCMSensorRisingAlertThresh,
rCMSensorLowAlertThresh }
STATUS current
DESCRIPTION
"A collection of objects providing basic instrumentation
and control of the RCM Sensor."
::= { infraPowerMIBGroups 13 }
--
-- rCMSensors (Residual Current Monitoring)
--
rCMSensors OBJECT IDENTIFIER ::= { pduEntry 28 }
rCMSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF RCMSensorTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of RCMsensor"
::= { rCMSensors 1 }
rCMSensorTableEntry OBJECT-TYPE
SYNTAX RCMSensorTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries of RCMSensor"
INDEX { pduIndex,
rCMSensorIndex }
::= { rCMSensorTable 1 }
RCMSensorTableEntry ::=
SEQUENCE {
rCMSensorIndex INTEGER,
rCMSensorLocation DisplayString,
rCMSensorReading INTEGER,
rCMSensorConnState INTEGER,
rCMSensorAlarmState INTEGER,
rCMSensorAlarmThresh INTEGER,
rCMSensorRisingAlertThresh INTEGER,
rCMSensorLowAlertThresh INTEGER
}
rCMSensorIndex OBJECT-TYPE
SYNTAX INTEGER (1..13)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The id of the sensor.
(1)=RCM1, (2)=RCM2 .. (13)=RCM13."
::= { rCMSensorTableEntry 1 }
rCMSensorLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The location descriotion of the sensor.
The valid characters are (0 to 9), (a to z), (A to Z), (_), (-) and (.)."
::= { rCMSensorTableEntry 2 }
rCMSensorReading OBJECT-TYPE
SYNTAX INTEGER (0..9999)
MAX-ACCESS read-only
STATUS current
--UNITS "mA"
--DISPLAY-HINT "d-1"
DESCRIPTION
"The leakage current measured in tenth of mA.
(0)=0mA, (10)=1mA, (123)=12.3mA, (9999)=999.9mA."
::= { rCMSensorTableEntry 3 }
rCMSensorConnState OBJECT-TYPE
SYNTAX INTEGER {
disconnected (0),
connected (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The connection status of this RCM sensor.
(0)=disconnected, (1)=connected."
::= { rCMSensorTableEntry 4 }
rCMSensorAlarmState OBJECT-TYPE
SYNTAX INTEGER {
normal (0),
alarm (1),
risingAlert (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The alarm state of this RCM sensor.
(0) = normal, (1) = alarm, (2)=rising alert."
::= { rCMSensorTableEntry 5 }
rCMSensorAlarmThresh OBJECT-TYPE
SYNTAX INTEGER (0..9999)
MAX-ACCESS read-write
STATUS current
--UNITS "mA"
--DISPLAY-HINT "d-1"
DESCRIPTION
"The leakage current alarm threshold in tenth of mA.
(0)=0mA, (10)=1mA, (123)=12.3mA, (9999)=999.9mA."
::= { rCMSensorTableEntry 6 }
rCMSensorRisingAlertThresh OBJECT-TYPE
SYNTAX INTEGER (0..9999)
MAX-ACCESS read-write
STATUS current
--UNITS "mA"
--DISPLAY-HINT "d-1"
DESCRIPTION
"The leakage current rising alert threshold in tenth of mA.
(0)=0mA, (10)=1mA, (123)=12.3mA, (9999)=999.9mA."
::= { rCMSensorTableEntry 7 }
rCMSensorLowAlertThresh OBJECT-TYPE
SYNTAX INTEGER (0..9999)
MAX-ACCESS read-write
STATUS current
--UNITS "mA"
--DISPLAY-HINT "d-1"
DESCRIPTION
"The leakage current low alert threshold in tenth of mA.
(0)=0mA, (10)=1mA, (123)=12.3mA, (9999)=999.9mA."
::= { rCMSensorTableEntry 8 }
-- ipDongleAdmin
--
ipDongleAdmin OBJECT IDENTIFIER ::= { ipDongle 1 }
ipdongleModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model number of the product."
::= { ipDongleAdmin 1 }
--main_conf.AppText
ipdongleName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the product.
SET: input length = 1 to 16 characters.
The valid characters are (0 to 9), (a to z), (A to Z), (_), (-) and (.)."
::= { ipDongleAdmin 5 }
--main_conf.DeviceName
ipdongleLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The location of the product.
SET: input length = 1 to 16 characters.
The valid characters are (0 to 9), (a to z), (A to Z), (_), (-) and (.)."
::= { ipDongleAdmin 6 }
--main_conf.Location
ipdongleMacAddress OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the products"
::= { ipDongleAdmin 8 }
--mac_conf
ipdongleIpAddressIpv4 OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current IPv4 address."
::= { ipDongleAdmin 9 }
--web_conf.IpV4Addr
ipdongleSubnetIpv4 OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current IPv4 subnet."
::= { ipDongleAdmin 10 }
--web_conf.IpV4Netmask
ipdongleGatewayIpv4 OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current IPv4 gateway"
::= { ipDongleAdmin 11 }
--web_conf.IpV4GatewayIP
--
-- ipMasterFanUnitWebAccess
--
ipDongleWebAccess OBJECT IDENTIFIER ::= { ipDongle 2 }
objectDateTime OBJECT-TYPE
SYNTAX DateAndTime
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"RTC calendar and colck of the trap/notification is triggered"
::= { ipDongleWebAccess 1 }
userName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Web GUI login user name"
::= { ipDongleWebAccess 2 }
webAccessIpAddress OBJECT-TYPE
SYNTAX InetAddressIPv4
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"the web access remote ipaddress"
::= { ipDongleWebAccess 3 }
-------------------------------------------------------------------------------------------------------
--
-- pduAdmin
--
pduAdmin OBJECT IDENTIFIER ::= { pduGroup 1 }
pduTable OBJECT-TYPE
SYNTAX SEQUENCE OF PduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of PDU"
::= { pduAdmin 1 }
pduEntry OBJECT-TYPE
SYNTAX PduEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries of PDU"
INDEX { pduIndex }
::= { pduTable 1 }
PduEntry ::=
SEQUENCE {
pduIndex INTEGER,
pduModel DisplayString,
pduID DisplayString,
pduSerialNo DisplayString,
pduName DisplayString,
pduLocation DisplayString,
pduGroupNumber DisplayString,
pduMainLoadVoltage DisplayString,
pduMainLoadAmp DisplayString,
pduMainPowerFactor DisplayString,
pduMainActivePower DisplayString,
pduMainApparentPower DisplayString,
pduMainCumulativeEnergy DisplayString,
pduRealTimeClock DisplayString,
circuits DisplayString,
circuitBreakers DisplayString,
outlets DisplayString,
tHSensors DisplayString,
rCMSensors DisplayString}
pduIndex OBJECT-TYPE
SYNTAX INTEGER (1..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cascade level of this PDU (01 to 16).
(1)=PDU Level is 01, (2)=PDU level is 02, (16)=PDU level is 16."
::= { pduEntry 1 }
--PDU_Details.Device_ID (converted 2nd byte to integer)
pduModel OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..48))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model number of this PDU."
::= { pduEntry 2 }
--PDU_Details.PDU_Model
pduID OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique identifier of this PDU."
::= { pduEntry 3 }
--PDU_Details.Serial_Number
pduSerialNo OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique serial number of this PDU."
::= { pduEntry 4 }
--PDU_Details.serialno_32B
pduName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of this PDU.
SET: input length = 1 to 16 characters.
The valid characters are (0 to 9), (a to z), (A to Z), (_), (-) and (.)."
::= { pduEntry 6 }
--PDU_Details.PDU_Name
pduLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The location of this PDU.
SET: input length = 1 to 16 characters.
The valid characters are (0 to 9), (a to z), (A to Z), (_), (-) and (.)."
::= { pduEntry 7 }
--PDU_Details.PDU_Location
pduGroupNumber OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The group number of this PDU. Ranged from 000 to 240.
(000)=000, (240)=240."
::= { pduEntry 8 }
-- updated on 2015/03/20 by Ed
pduMainLoadVoltage OBJECT-TYPE
SYNTAX DisplayString (SIZE (20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The voltage measured on this PDU in tenth of Volts.
Single phase PDU:
(0000)=0.0 VAC, (1100)=110.0 VAC, (2201)=220.1 VAC
Three phase PDU:
2204(2201,2202,2203)=1st 4 digits are the averag voltage of all circuits/banks, Phase 1 is 220.1 VAC, Phase 2 is 220.2 VAC, Phase 3 is 220.3 VAC"
::= { pduEntry 13 }
--PDU_Details.PDU_Load_Voltage
pduMainLoadAmp OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current load measured on this PDU in tenth of Amps.
(0)=0.0 A, (1)=0.1 A, (101)=10.1 A, (160)=16.0 A"
::= { pduEntry 14 }
--Circuit_Details.Circuit_Load_Amp (sum of all circuits)
pduMainPowerFactor OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor of this PDU in hundredth.
(000)=0, (001)=0.01, (010)=0.1, (100)=1.0"
::= { pduEntry 16 }
--PDU_Details.PDU_PowerFactor
pduMainActivePower OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active power consumption of this PDU in hundred-thousandth of kW.
Ranged from (0000000) to (9999999).
(0)=0 kW, (12)=0.00012 kW, (123)=0.00123 kW, (1234567)=12.34567 kW."
::= { pduEntry 17 }
--Circuit_Details.Circuit_ActivePower (sum of all circuits)
pduMainApparentPower OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power consumption of this PDU in hundred-thousandth of kVA,
Ranged from (0000000) to (9999999).
(0)=0 kVA, (12)=0.00012 kVA, (123)=0.00123 kVA, (1234567)=12.34567 kVA."
::= { pduEntry 18 }
--Circuit_Details.Circuit_ApparentPower (sum of all circuits)
pduMainCumulativeEnergy OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative energy (KWh) of this PDU in hundredth of kilowatt-hours.
(0)=0.00 KWh, (12345)=123.45 KWh, (12345678)=123456.78 KWh"
::= { pduEntry 19 }
--Circuit_Details.Circuit_CumulativeEnergy (sum of all circuits)
pduRealTimeClock OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..14))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The real time clock & calendar. Formatted to 'YYMMDDHHNNSSW'
(1404111358305)=2014-APR-11 13:58:30, Friday"
::= { pduEntry 20 }
--
-- circuits
--
circuits OBJECT IDENTIFIER ::= { pduEntry 24 }
circuitTable OBJECT-TYPE
SYNTAX SEQUENCE OF CircuitTablEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of circuit"
::= { circuits 1 }
circuitTablEntry OBJECT-TYPE
SYNTAX CircuitTablEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table entries of circuit"
INDEX { pduIndex,
circuitIndex }
::= { circuitTable 1 }
CircuitTablEntry ::=
SEQUENCE {
circuitIndex INTEGER,
circuitRatedAmp DisplayString,
circuitName DisplayString,
circuitState INTEGER,
circuitLoadVoltage DisplayString,
circuitLoadAmp DisplayString,
circuitPowerFactor DisplayString,
circuitActivePower DisplayString,
circuitApparentPower DisplayString,
circuitLoadPeakAmp DisplayString,
circuitCumulativeEnergy DisplayString,
circuitLoadPeakAmpReset DisplayString,
circuitBreakerStateCopy INTEGER,
circuitLoadAmpAlarmThresh DisplayString,
circuitLoadAmpRisingAlertThresh DisplayString,
circuitLoadAmpLowAlertThresh DisplayString,
circuitCumulativeEnergyReset DisplayString
}
circuitIndex OBJECT-TYPE
SYNTAX INTEGER (1..6)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The circuit ID of this circuit.
Single phase :
(1)=Circuit A, (2)=Circuit B.
Single phase 63A :
(1)= Bank 1 , (2)= Bank 2 , (3)= Bank 3 , (4)=Bank 4
Three phase :
(1)=Bank 1, (2)=Bank 2, (3)=Bank 3, (4)=Bank 4, (5)=Bank 5, (6)=Bank 6."
::= { circuitTablEntry 1 }
circuitRatedAmp OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The input current rating of this circuit in tenth of Amps.
(160)=16.0 A, (200)=20.0 A."
::= { circuitTablEntry 2 }
circuitName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of this circuit.
The valid characters are (0 to 9), (a to z), (A to Z), (_), (-) and (.)."
::= { circuitTablEntry 4 }
circuitState OBJECT-TYPE
SYNTAX INTEGER {
normal (0),
alarm (1),
risingAlert (2),
lowAlert (3),
notExist (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of this circuit.
(0)=Normal, (1)=Alarm, (2)=RisingAlert, (3)=LowAlert, (4)=Not exist"
::= { circuitTablEntry 5 }
circuitLoadVoltage OBJECT-TYPE
SYNTAX DisplayString (SIZE (4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The voltage measured on this circuit in tenth of Volts
(0000)=0.0 VAC, (1100)=110.0 VAC, (2201)=220.1 VAC"
::= { circuitTablEntry 6 }
circuitLoadAmp OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current load measured on this circuit in tenth of Amps
(000)=0.0 A, (001)=0.1 A, (101)=10.1 A, (160)=16.0 A"
::= { circuitTablEntry 7 }
circuitPowerFactor OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor measured on this circuit in hundredths"
::= { circuitTablEntry 9 }
circuitActivePower OBJECT-TYPE
SYNTAX DisplayString (SIZE (7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active power consumption measured on this circuit in hundred-thousandth of kW"
::= { circuitTablEntry 10 }
circuitApparentPower OBJECT-TYPE
SYNTAX DisplayString (SIZE (7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power consumption measured on this circuit in hundred-thousandth of kVA"
::= { circuitTablEntry 11 }
circuitLoadPeakAmp OBJECT-TYPE
SYNTAX DisplayString (SIZE (16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The the peak current measured on this circuit in tenth of Amps with timestamp.
(140411152059@123)=2014-APR-11 15:20:59, 12.3 Amp."
::= { circuitTablEntry 12 }
circuitCumulativeEnergy OBJECT-TYPE
SYNTAX DisplayString (SIZE (21))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative energy (kWh) of this circuit in hundredth of kilowatt-hours with timestamp.
(140411152059@00000000)=2014-APR-11 15:20:59, 0.00 kWh.
(140411152059@09999999)=2014-APR-11 15:20:59, 99999.99 kWh."
::= { circuitTablEntry 13 }
circuitLoadPeakAmpReset OBJECT-TYPE
SYNTAX DisplayString (SIZE (1))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the peak current of this circuit to zero.
SET: (1)=confirm reset"
::= { circuitTablEntry 14 }
circuitBreakerStateCopy OBJECT-TYPE
SYNTAX INTEGER {
normal (0),
tripped (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The circuit breaker state.
(0)=Normal, (1)= Tripped."
::= { circuitTablEntry 15 }
circuitLoadAmpAlarmThresh OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The upper alarm current threshold of this circuit in tenth of Amps.
(000)=disable, (001)=0.1 A, (050)=5.0 A, (100)=10.0 A."
::= { circuitTablEntry 16 }
circuitLoadAmpRisingAlertThresh OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The rising alert current threshold of this circuit in tenth of Amps.
(000)=disable, (001)=0.1 A, (050)=5.0 A, (100)=10.0 A."
::= { circuitTablEntry 17 }
circuitLoadAmpLowAlertThresh OBJECT-TYPE
SYNTAX DisplayString (SIZE (3))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The lower alert current threshold of this circuit in tenth of Amps.
(000)=disable, (001)=0.1 A, (050)=5.0 A, (100)=10.0 A."
::= { circuitTablEntry 18 }
circuitCumulativeEnergyReset OBJECT-TYPE
SYNTAX DisplayString (SIZE (1))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Reset the cumulative energy (kWh) of this circuit to zero.
SET: (1)=confirm reset"
::= { circuitTablEntry 19 }
--
-- circuitBreakers
--
circuitBreakers OBJECT IDENTIFIER ::= { pduEntry 25 }
circuitBreakerTable OBJECT-TYPE
SYNTAX SEQUENCE OF CircuitBreakerTableEntry
MAX-ACCESS not-accessible