-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGAMATRONIC-MIB
8393 lines (7228 loc) · 182 KB
/
GAMATRONIC-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
GAMATRONIC-MIB DEFINITIONS ::= BEGIN
--Change for power max 1/1/2004
--Change new 15/8 TRAPS
--Changes New 20/11 Alarm Sevirity psStatus Changed from alarm1 to alarm96 and read write
--Changes New 20/11 Alarm set changed to alarm 1 to alarm 96
--Changes New 20/11 Add new mib SverityMap Maping alarm to severity
--Changes New 15/1 Spare commands for read and write
--Changes New 15/1 Dry Contactors new 2 tables for dry1 and dry 2 and add drystatus for enable disable as well
--Changes New 15/1 Alarm add more 64 alarms to the psStatus and to alarm set
--Changes New 15/1 Add spares in AC input , Batery General , DCoutput, psConf Nomonal
--Changes New 15/1 IDE spares in psUNIT
--changes 25/11 add No out share bit and bad sharing to INU
--changes 24/11 - DryIn Status
--changes 23/11 - NOMINALS
--Changes 21/11 - add eq run hours and Minutes to batgeneral
-- add No out spare bit badsharing to PSU
-- add invertor voltage in DC output
-- Add eq major and Minor read write to NOM and Invertor voltage
-- Add Commands Leds (bit structure ) and store and load user defaults
-- Changes from write to read only
--Changes 7/11 add leds and mbx version psCommandMBXSWRev psCommandLed
--changes 28/9 change in mibs new commands and change write to read
--changes 26/8 change userdefine command to be read write
--changes 24/8 add 5 userdefined commands
--changes 23/8 add psdrycontactstatus
-- Change 21/8 adding commans
--Changes 18/8 changes in commaand mib
--changes 21/7 - Add in statistics mib (end of the mib) first and last sequence number for each statistic table current available
-- Add in log mib (end of the mib) first and last of sequence available in log table
--changes 11/7 - add in psPSU - psPSUNotRespond
--add in psINU psINUNotRespond
--add in psCommands - option to get filename
-- change acInputOk to be read only
--changes 9/7 add date time in one integer for psLogDateTime
-- Changes: 22/6/2000
--- Change Alarm severity
--- Add IP Address for TRAP
-- Creation Date20/5/2000
-- Added new dry contactors
-- commands for tests and softwre down load
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
-- Integer32,
enterprises,IpAddress FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString
-- TruthValue, RowStatus, RowPointer, TimeInterval
FROM SNMPv2-TC;
-- MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
-- FROM SNMPv2-CONF;
gamatronicLTD MODULE-IDENTITY
LAST-UPDATED "0005150000Z"
ORGANIZATION " GAMATRONIC Ltd."
CONTACT-INFO
" Asher Avisar
Postal:
Tel: +972-2-588-8222
Fax: +972-2-582-8875
E-mail: [email protected]"
DESCRIPTION
"This is the GAMATRONIC POWER SUPPLY PRIVATE MIB module"
-- REVISION "Version 1.0"
::= { enterprises 6050 }
psMIB OBJECT IDENTIFIER ::= { gamatronicLTD 1 }
--
-- The MIB module consist of the following groups:
-- (1) UNIT
-- (2) Battery
-- (3) Power Supply
-- (4) INE
-- (5) AC Input
-- (6) DC Output
-- (7) Contactors
-- (8) Set UP
-- (9) Status
-- (10) Log
-- (11) Trap
-- (12) Alarm Set
--
-- Textual Conventions
--
-- PS Textual Convention
-- PS DateTime Textual Convention
-- Alarm Severity Identifier Textual Convention
PsAlarmSeverity ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The value of this object identifies the severity of an alarm, including 'cleared'."
SYNTAX INTEGER {
critical(1),
major(2),
minor(3),
warning(4)
}
--
-- PS's MIB
--
psUnit OBJECT IDENTIFIER ::= { psMIB 1 }
psBattery OBJECT IDENTIFIER ::= { psMIB 2 }
psPSU OBJECT IDENTIFIER ::= { psMIB 3 }
psINU OBJECT IDENTIFIER ::= { psMIB 4 }
psACInput OBJECT IDENTIFIER ::= { psMIB 5}
psDCOutput OBJECT IDENTIFIER ::= { psMIB 6}
psContuctor OBJECT IDENTIFIER ::= { psMIB 7}
psConfNominal OBJECT IDENTIFIER ::= { psMIB 8}
psStatus OBJECT IDENTIFIER ::= { psMIB 9}
psStatistics OBJECT IDENTIFIER ::= { psMIB 10}
psLog OBJECT IDENTIFIER ::= { psMIB 11}
psTrap OBJECT IDENTIFIER ::= { psMIB 12}
psAlarmSet OBJECT IDENTIFIER ::= { psMIB 13}
psSecurity OBJECT IDENTIFIER ::= { psMIB 14}
psCommand OBJECT IDENTIFIER ::= {psMIB 15}
psSeverityMap OBJECT IDENTIFIER ::= {psMIB 16 }
psSpare OBJECT IDENTIFIER ::= {psMIB 17}
psDial OBJECT IDENTIFIER ::= {psMIB 18}
psPowerPlus OBJECT IDENTIFIER ::= {psMIB 19}
-- The Battery group consists of the following objects:
--
-- Battery MIB definitions
--
psBatteryNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of Battery supported "
::= { psBattery 1 }
psBatteryVoltage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery Voltage present in 0.1V "
::= { psBattery 2 }
psBatteryTestStatus OBJECT-TYPE
SYNTAX INTEGER {
on (0),
off (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Test status of the battery. Automatically set to 0 when test is completed."
::= { psBattery 3 }
psBatteryNominalCapacity OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery Nominal Capacity."
::= { psBattery 4 }
psBatteryActualCapacity OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Battery Actual Capacity."
::= { psBattery 5 }
psBatteryTestTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Battery Test time in seconds ."
::= { psBattery 6 }
psBatteryLoadTime OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Battery Load time in seconds ."
::= { psBattery 7 }
psBatteryNearestTestMonth OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery nearest Test time - Month ."
::= { psBattery 8 }
psBatteryNearestTestDay OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery nearest Test time - Day ."
::= { psBattery 9 }
psBatteryNearestTestHour OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery nearest Test time - Hour."
::= { psBattery 10 }
psBatteryNearestTestMinute OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery nearest Test time - Minute ."
::= { psBattery 11 }
psBatteryChargeMode OBJECT-TYPE
SYNTAX INTEGER {
floating(0),
equalizes(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Battery Charge mode 0 = Floating 1 = Equalized "
::= { psBattery 12 }
psBatteryEqRunTimeHours OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Equalizer Run Time Hours "
::= { psBattery 13 }
psBatteryEqRunTimeMinutes OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Equalizer Run Time Minutes "
::= { psBattery 14 }
psBatterySpareRead1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 15 }
psBatterySpareRead2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 16 }
psBatterySpareRead3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 17 }
psBatterySpareWrite1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 18 }
psBatterySpareWrite2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 19 }
psBatterySpareWrite3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 20 }
psBatterySpareWrite4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 21 }
psBatterySpareWrite5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 22 }
psBatterySpareWrite6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 23 }
psBatterySpareWrite7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 24 }
psBatterySpareWrite8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" Spare "
::= { psBattery 25 }
psBatteryTable OBJECT-TYPE
SYNTAX SEQUENCE OF PsBatteryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The PS Battery Information table."
::= { psBattery 26 }
psBatteryEntry OBJECT-TYPE
SYNTAX PsBatteryEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table defines for each Information for each PS. The entry is indexed by the psBatteryIndex. "
INDEX { psBatteryIndex }
::= { psBatteryTable 1 }
PsBatteryEntry ::= SEQUENCE {
psBatteryIndex INTEGER,
psBatteryCurrentDirection INTEGER,
psBatteryCurrent INTEGER,
psBatteryTemperatureSign INTEGER,
psBatteryTemperature INTEGER,
psBatteryStatus INTEGER,
psBatteryFuseStatus INTEGER,
psBatteryInstalationYear INTEGER,
psBatteryInstalationMonth INTEGER,
psBatteryInstalationDay INTEGER
}
psBatteryIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The PS table index."
::= { psBatteryEntry 1 }
psBatteryCurrentDirection OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The PS Battery current Direction. 0= Charge. "
::= { psBatteryEntry 2 }
psBatteryCurrent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery Current presents in units of 0.1A . "
::= { psBatteryEntry 3 }
psBatteryTemperatureSign OBJECT-TYPE
SYNTAX INTEGER {
positive(0),
negative(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery Sign of the Temerature- Positive = 0 Negative = 1."
::= { psBatteryEntry 4 }
psBatteryTemperature OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Battery Temperature giving in Celsius. "
::= { psBatteryEntry 5 }
psBatteryStatus OBJECT-TYPE
SYNTAX INTEGER {
passed(0),
failed (1),
low(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Status of the Battery 0 = Passed, 1 = Failed 2 = Low."
::= { psBatteryEntry 6 }
psBatteryFuseStatus OBJECT-TYPE
SYNTAX INTEGER {
ok(0),
bad(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The status of the battery fuse. 0 = OK, 1 = BAD."
::= { psBatteryEntry 7 }
psBatteryInstalationYear OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery Installation date -Year ."
::= { psBatteryEntry 8 }
psBatteryInstalationMonth OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery Installation date -Month ."
::= { psBatteryEntry 9 }
psBatteryInstalationDay OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The Battery Installation date -Day ."
::= { psBatteryEntry 10 }
-- The Power Supply group consists of the following objects:
--
-- Power Supply MIB definitions
--
psPSUNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of Power Supplies supported "
::= { psPSU 1 }
psPSUTable OBJECT-TYPE
SYNTAX SEQUENCE OF PsPSUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The PS Power Supply Information table."
::= { psPSU 2 }
psPSUEntry OBJECT-TYPE
SYNTAX PsPSUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table defines for each Information for each PS. The entry is indexed by the psPSUIndex. "
INDEX { psPSUIndex }
::= { psPSUTable 1 }
PsPSUEntry ::= SEQUENCE {
psPSUIndex INTEGER,
psPSUVoltage INTEGER,
psPSUCurrent INTEGER,
psPSUTemperature INTEGER,
psPSUActivity INTEGER,
psPSUPsType INTEGER,
psPSUStatus INTEGER,
psPSUPsOK INTEGER,
psPSUNotRespond INTEGER,
psPSUNOOut INTEGER,
psPSUPSpareBit INTEGER,
psPSUBadSharing INTEGER,
psPSUReserve1 INTEGER,
psPSUReserve2 INTEGER,
psPSUReserve3 INTEGER,
psPSUShutInstruction INTEGER,
psPSUTestStatus INTEGER,
psPSUCurrentLimitDecreased INTEGER,
psPSUACInputOK INTEGER,
psPSUSelfTestPass INTEGER,
psPSUCurrentLimitExceed INTEGER,
psPSUShutHighTemp INTEGER,
psPSUShutHighVolt INTEGER,
psPSURemoteMode INTEGER,
psPSUFloatingMode INTEGER,
psPSUEqualizeMode INTEGER,
psPSUFanStataus INTEGER,
psPSUIndication INTEGER
}
psPSUIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The PSU table index."
::= { psPSUEntry 1 }
psPSUVoltage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PSU Voltage present in 0.1V "
::= { psPSUEntry 2 }
psPSUCurrent OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PSU Current presents in units of 0.1A . "
::= { psPSUEntry 3 }
psPSUTemperature OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PSU Temperature giving in Celsius. "
::= { psPSUEntry 4 }
psPSUActivity OBJECT-TYPE
SYNTAX INTEGER {
off (0),
on (1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"PSU Activity 0 = off 1= on "
::= { psPSUEntry 5 }
psPSUPsType OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PSU TYPE
01 - HPSu24-100 24V 100A
02 - HPSu50-50 50V 50A Vertical Construction
03 - HPSu50-50 50V 50A Horizontal Construction
04 - HPSu50-75 50V 75A Vertical Construction
05 - HPSu50-16 50V 16A Regular
06 HPSu50-16U 50V 16A Universal "
::= { psPSUEntry 6 }
psPSUStatus OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS STATUS The next are bits taken from this status "
::= { psPSUEntry 7 }
psPSUPsOK OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
notok(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Ps Ok status "
::= { psPSUEntry 8 }
psPSUNotRespond OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
bad(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PSU Not Responding
"
::= { psPSUEntry 9 }
psPSUNOOut OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS No Out "
::= { psPSUEntry 10}
psPSUPSpareBit OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
notok (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS Spare Bits "
::= { psPSUEntry 11}
psPSUBadSharing OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
notok (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS Bad Sharing "
::= { psPSUEntry 12}
psPSUReserve1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" RESERVE "
::= { psPSUEntry 13}
psPSUReserve2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" RESERVE "
::= { psPSUEntry 14}
psPSUReserve3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" RESERVE "
::= { psPSUEntry 15}
psPSUShutInstruction OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Shut by instruction status "
::= { psPSUEntry 16 }
psPSUTestStatus OBJECT-TYPE
SYNTAX INTEGER {
notintest (0),
inprogress (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Test In progress status 0= not in progress 1 = test in progress "
::= { psPSUEntry 17 }
psPSUCurrentLimitDecreased OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Is Current limit decreased due to temperature "
::= { psPSUEntry 18 }
psPSUACInputOK OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
notok (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" AC Input status"
::= { psPSUEntry 19 }
psPSUSelfTestPass OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
notok (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Self Test status "
::= { psPSUEntry 20 }
psPSUCurrentLimitExceed OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Current limit excedded"
::= { psPSUEntry 21 }
psPSUShutHighTemp OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Shut down high temperature"
::= { psPSUEntry 22 }
psPSUShutHighVolt OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Shut down high Voltage"
::= { psPSUEntry 23 }
psPSURemoteMode OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS in Remote Mode"
::= { psPSUEntry 24 }
psPSUFloatingMode OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS in Floating Mode"
::= { psPSUEntry 25 }
psPSUEqualizeMode OBJECT-TYPE
SYNTAX INTEGER {
no (0),
yes (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS in EqualizeMode"
::= { psPSUEntry 26 }
psPSUFanStataus OBJECT-TYPE
SYNTAX INTEGER {
ok (0),
bad (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS FAN STATUS"
::= { psPSUEntry 27 }
psPSUIndication OBJECT-TYPE
SYNTAX INTEGER {
pscurrent (0),
voltage (1),
temperature (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" PS in EqualizeMode"
::= { psPSUEntry 28 }
-- The Inverted group consists of the following objects:
--
-- Inverted Unit MIB definitions
--
psINUNumber OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Number of Power Supplies supported "
::= { psINU 1 }
psINUTable OBJECT-TYPE
SYNTAX SEQUENCE OF PsINUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The PS Power Supply Information table."
::= { psINU 2 }
psINUEntry OBJECT-TYPE
SYNTAX PsINUEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table defines for each Information for each PS. The entry is indexed by the psINUIndex. "
INDEX { psINUIndex }
::= { psINUTable 1 }
PsINUEntry ::= SEQUENCE {
psINUIndex INTEGER,
psINUVoltage INTEGER,
psINUCurrent INTEGER,
psINUTemperature INTEGER,
psINUActivity INTEGER,
psINUPsType INTEGER,
psINUStatus INTEGER,
psINUPsOK INTEGER,
psINUNotRespond INTEGER,
psINUNOOut INTEGER,
psINUPSpareBit INTEGER,
psINUBadSharing INTEGER,
psINUReserve1 INTEGER,
psINUReserve2 INTEGER,
psINUReserve3 INTEGER,
psINUShutInstruction INTEGER,
psINUReserve7 INTEGER,
psINUCurrentLimitDecreased INTEGER,
psINUReserve8 INTEGER,
psINUSelfTestPass INTEGER,
psINUCurrentLimitExceed INTEGER,
psINUShutHighTemp INTEGER,
psINUShutHighVolt INTEGER,
psINURemoteMode INTEGER,
psINUReserve9 INTEGER,
psINUReserve10 INTEGER,
psINUFanStataus INTEGER,
psINUIndication INTEGER
}
psINUIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The INU table index."
::= { psINUEntry 1 }
psINUVoltage OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"INU Voltage present in 0.1V "
::= { psINUEntry 2 }