forked from taishin/vendor_mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHitachiComputeRack.mib
More file actions
9562 lines (8381 loc) · 248 KB
/
Copy pathHitachiComputeRack.mib
File metadata and controls
9562 lines (8381 loc) · 248 KB
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
-- 00-00
--------------------------------------------------------------------------------
HitachiComputeRackEx-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE, enterprises,
Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, DisplayString
FROM SNMPv2-TC;
computeRack MODULE-IDENTITY
LAST-UPDATED "201204051253Z"
ORGANIZATION "Hitachi, Ltd."
CONTACT-INFO ""
DESCRIPTION
"This shows the information of hitachi Compute Rack."
::= { compute 2 }
hitachi OBJECT IDENTIFIER ::= { enterprises 116 }
systemExMib OBJECT IDENTIFIER ::= { hitachi 5 }
compute OBJECT IDENTIFIER ::= { systemExMib 52 }
chassis OBJECT IDENTIFIER ::= { computeRack 1 }
chassisBasicInfo OBJECT IDENTIFIER ::= { chassis 1 }
chassisInfoType OBJECT-TYPE
SYNTAX INTEGER {
Rackmount(1), Blade(2), Tower(3), unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the chassis type of server chassis."
::= { chassisBasicInfo 1 }
chassisInfoProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the product name of server chassis."
::= { chassisBasicInfo 2 }
chassisInfoModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the model of server chassis."
::= { chassisBasicInfo 3 }
chassisInfoSerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the serial number of server chassis."
::= { chassisBasicInfo 4 }
chassisInfoProductVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the model version of server chassis."
::= { chassisBasicInfo 5 }
chassisInfoProductManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the product manufacturer of chassis."
::= { chassisBasicInfo 6 }
chassisInfoChassisID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the chassis ID of server chassis."
::= { chassisBasicInfo 7 }
chassisInfoBoardProductName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the product name of board."
::= { chassisBasicInfo 8 }
chassisInfoBoardSerialNum OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the serial number of board."
::= { chassisBasicInfo 9 }
chassisInfoBoardManufacturer OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the product manufacturer of board."
::= { chassisBasicInfo 10 }
chassisInfoUUID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows UUID(universal Unique ID) of server chassis."
::= { chassisBasicInfo 11 }
chassisInfoLogicalPartitionSupport OBJECT-TYPE
SYNTAX INTEGER {
not-support(1), support(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows whether the chassis supports HVM or not."
::= { chassisBasicInfo 12 }
chassisInfoRemoteKVMSupport OBJECT-TYPE
SYNTAX INTEGER {
not-support(1), support(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows whether the server chassis supports remote KVM or not of server chassis."
::= { chassisBasicInfo 13 }
chassisInfoSpec OBJECT IDENTIFIER ::= { chassisBasicInfo 20 }
chassisSpecInputCurrentType OBJECT-TYPE
SYNTAX INTEGER {
ac(1), dc(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the currency type of server chassis."
::= { chassisInfoSpec 1 }
chassisSpecRateVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 V"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the voltage of server chassis."
::= { chassisInfoSpec 2 }
chassisSpecTempUpperLimit OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the upper temperature of sensor in server chassis."
::= { chassisInfoSpec 3 }
chassisSpecTempLowerLimit OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the lower temperature of sensor in server chassis."
::= { chassisInfoSpec 4 }
chassisSpecConsumptionCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the maximum currency of server chassis in current configuration"
::= { chassisInfoSpec 5 }
chassisSpecPowerConsumption OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 kW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the maximum power consumption of server chassis in current configuration."
::= { chassisInfoSpec 6 }
chassisSpecConsumptionCurrentMaxConfig OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the maximum currency of server chassis in largest configuration."
::= { chassisInfoSpec 7 }
chassisSpecPowerConsumptionMaxConfig OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 kW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the maximum power consumption of server chassis in largest configuration."
::= { chassisInfoSpec 8 }
chassisSpecMaxAirVolume OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 m^3/min"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the current air volume of server chassis."
::= { chassisInfoSpec 9 }
chassisSpecHeight OBJECT-TYPE
SYNTAX Integer32
UNITS "U"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the height of server chassis."
::= { chassisInfoSpec 10 }
chassisSpecTotalMass OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 kg"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the total mass of server chassis."
::= { chassisInfoSpec 11 }
chassisSpecSize OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the size of server chassis."
::= { chassisInfoSpec 12 }
chassisCapacity OBJECT IDENTIFIER ::= { chassis 2 }
chassisCapacityCPUSocket OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of CPU sockets of server chassis."
::= { chassisCapacity 1 }
chassisCapacityDIMMSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of DIMM slots of server chassis."
::= { chassisCapacity 2 }
chassisCapacityPCISlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of PCI slots of server chassis."
::= { chassisCapacity 3 }
chassisCapacityLOM OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of onboard LAN ports of server chassis."
::= { chassisCapacity 4 }
chassisCapacityFan OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of onboard fans of server chassis."
::= { chassisCapacity 5 }
chassisCapacityHDDSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of HDDs of server chassis."
::= { chassisCapacity 6 }
chassisCapacityMediaDriveSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of Peripheral drives of server chassis."
::= { chassisCapacity 7 }
chassisCapacityFanModuleSlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the maximum number of slots for Fan modules."
::= { chassisCapacity 8 }
chassisCapacityPowerSupplySlot OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"It shows the maximum number of slots for Power Supply modules."
::= { chassisCapacity 9 }
chassisCapacityVoltageSensor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of voltage sensors of chassis."
::= { chassisCapacity 10 }
chassisCapacityTempSensor OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of temperature sensors of chassis."
::= { chassisCapacity 11 }
chassisCapacityPhysicalPartition OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of physical partition of server chassis."
::= { chassisCapacity 12 }
chassisSettings OBJECT IDENTIFIER ::= { chassis 3 }
chassisSettingsBelongPartitionNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the partition number of server chassis."
::= { chassisSettings 1 }
chassisSettingsDetailHVMLicence OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the HVM licence of detailed server chassis."
::= { chassisSettings 2 }
chassisSettingsManagementPortIPAddress OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the IP address of management port of server chassis."
::= { chassisSettings 3 }
chassisSettingsPowerCapping OBJECT-TYPE
SYNTAX INTEGER {
invalid(1), PCAP(2), DCMI(3), unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the power cap setting server chassis."
::= { chassisSettings 4 }
chassisSettingsAddMAC OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved."
::= { chassisSettings 5 }
chassisSettingsAddWWN OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved."
::= { chassisSettings 6 }
chassisSettingsRackInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved."
::= { chassisSettings 7 }
chassisSettingsAssetTag OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved."
::= { chassisSettings 8 }
chassisState OBJECT IDENTIFIER ::= { chassis 4 }
chassisStatePower OBJECT-TYPE
SYNTAX INTEGER {
Poweroff(1), standby(2), PowerOn(3), unknown(4), Power-on-executing(5), Power-off-executing(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the power supply state of server chassis."
::= { chassisState 1 }
chassisStateHealth OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the state of server chassis."
::= { chassisState 2 }
chassisStateCurrentVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 V"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the current voltage of server chassis."
::= { chassisState 3 }
chassisStateConsumptionCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 A"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the consumption current of server chassis."
::= { chassisState 4 }
chassisStatePowerConsumption OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 kW"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the power consumption of server chassis."
::= { chassisState 5 }
chassisStateIntakeTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the state of intake temperature of server chassis."
::= { chassisState 6 }
chassisStateFanAirVolume OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 m^3/min"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the current air volume of fan module1."
::= { chassisState 7 }
chassisRedundancy OBJECT IDENTIFIER ::= { chassisState 8 }
chassisRedundancyFan OBJECT-TYPE
SYNTAX INTEGER {
redundancy(1), non-redundancy(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the redundancy of fan module of server chassis."
::= { chassisRedundancy 1 }
chassisRedundancyPowerSupply OBJECT-TYPE
SYNTAX INTEGER {
redundancy(1), non-redundancy(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the redundancy of power supply module of server chassis."
::= { chassisRedundancy 2 }
chassisFrontPanelLEDTable OBJECT-TYPE
SYNTAX SEQUENCE OF chassisFrontPanelLEDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the table of front panel LED of server chassis."
::= { chassisState 9 }
chassisFrontPanelLEDEntry OBJECT-TYPE
SYNTAX ChassisFrontPanelLEDEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the entry of front panel LED of server chassis."
INDEX { chassisFrontPanelLEDIndex }
::= { chassisFrontPanelLEDTable 1 }
ChassisFrontPanelLEDEntry ::= SEQUENCE {
chassisFrontPanelLEDIndex
Integer32,
chassisFrontPanelLEDName
DisplayString,
chassisFrontPanelLEDType
DisplayString,
chassisFrontPanelLEDState
INTEGER,
chassisFrontPanelLEDColor
INTEGER
}
chassisFrontPanelLEDIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the index of front panel LED of server chassis."
::= { chassisFrontPanelLEDEntry 1 }
chassisFrontPanelLEDName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the name of front panel LED of server chassis."
::= { chassisFrontPanelLEDEntry 2 }
chassisFrontPanelLEDType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reserved."
::= { chassisFrontPanelLEDEntry 3 }
chassisFrontPanelLEDState OBJECT-TYPE
SYNTAX INTEGER {
turn-off(1), turn-on(2), unknown(3), blink(4), blink-fast(5), blink-slow(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the state of front panel LED of server chassis."
::= { chassisFrontPanelLEDEntry 4 }
chassisFrontPanelLEDColor OBJECT-TYPE
SYNTAX INTEGER {
blue(1), green(2), red(3), amber(4), unknown(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the color of front panel LED of server chassis."
::= { chassisFrontPanelLEDEntry 5 }
chassisPostCodeLED OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the post code of front panel seven segment LED of server chassis."
::= { chassisState 10 }
chassisStateOther OBJECT IDENTIFIER ::= { chassisState 20 }
chassisMaintMode OBJECT-TYPE
SYNTAX INTEGER {
Normal(1), CE-Maint-mode(2), User-Maint-mode(3), unknown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the maintenance mode of server chassis."
::= { chassisStateOther 1 }
chassisLatestHWLogInfo OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the information on the newest HW logs of server chassis."
::= { chassisState 30 }
chassisHWLogTable OBJECT-TYPE
SYNTAX SEQUENCE OF chassisHWLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the table on the hardware logs of server chassis."
::= { chassisState 31 }
chassisHWLogEntry OBJECT-TYPE
SYNTAX ChassisHWLogEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the table on the hardware logs of server chassis."
INDEX { chassisHWLogIndex }
::= { chassisHWLogTable 1 }
ChassisHWLogEntry ::= SEQUENCE {
chassisHWLogIndex
Integer32,
chassisHWLogExist
INTEGER,
chassisHWLogGenerateID
DisplayString,
chassisHWLogRecordID
DisplayString,
chassisHWLogDate
DisplayString,
chassisHWLogCode
DisplayString,
chassisHWLogDetail
DisplayString
}
chassisHWLogIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the index on the hardware logs of server chassis."
::= { chassisHWLogEntry 1 }
chassisHWLogExist OBJECT-TYPE
SYNTAX INTEGER {
not-exist(1), exist(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the registrated state on the hardware logs of server chassis."
::= { chassisHWLogEntry 2 }
chassisHWLogGenerateID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the occurred part on the hardware logs of server chassis."
::= { chassisHWLogEntry 3 }
chassisHWLogRecordID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the recorded ID on the hardware logs of server chassis."
::= { chassisHWLogEntry 4 }
chassisHWLogDate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the occurred date and time on the hardware logs of server chassis."
::= { chassisHWLogEntry 5 }
chassisHWLogCode OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the occurred event code on the hardware logs of server chassis."
::= { chassisHWLogEntry 6 }
chassisHWLogDetail OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the occurred event detail on the hardware logs of server chassis."
::= { chassisHWLogEntry 7 }
chassisInstall OBJECT IDENTIFIER ::= { chassisState 40 }
chassisInsFrontPanel OBJECT-TYPE
SYNTAX INTEGER {
non-exist(1), exist(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the installed state of front panel of server chassis."
::= { chassisInstall 1 }
chassisInsCPUSocketTable OBJECT-TYPE
SYNTAX SEQUENCE OF chassisInsCPUSocketEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the table of CPU socket of server chassis."
::= { chassisInstall 2 }
chassisInsCPUSocketEntry OBJECT-TYPE
SYNTAX ChassisInsCPUSocketEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the entry of CPU socket of server chassis."
INDEX { chassisInsCPUSocketIndex }
::= { chassisInsCPUSocketTable 1 }
ChassisInsCPUSocketEntry ::= SEQUENCE {
chassisInsCPUSocketIndex
Integer32,
chassisInsCPUSocketNum
Integer32,
chassisInsCPUSocketExist
INTEGER,
chassisInsCPUSocketCPUName
DisplayString,
chassisInsCPUSocketCPUFrequency
Integer32,
chassisInsCPUSocketCPUStepping
DisplayString,
chassisInsCPUSocketCPUCoreNum
Integer32,
chassisInsCPUSocketCPUUpperLimitTemp
Integer32,
chassisInsCPUSocketCPULowerLimitTemp
Integer32
}
chassisInsCPUSocketIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the index of CPU socket of server chassis."
::= { chassisInsCPUSocketEntry 1 }
chassisInsCPUSocketNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the number of CPU sockets of server chassis."
::= { chassisInsCPUSocketEntry 2 }
chassisInsCPUSocketExist OBJECT-TYPE
SYNTAX INTEGER {
non-exist(1), exist(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the registrated state of CPU socket of server chassis."
::= { chassisInsCPUSocketEntry 3 }
chassisInsCPUSocketCPUName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the CPU name of CPU socket of server chassis."
::= { chassisInsCPUSocketEntry 4 }
chassisInsCPUSocketCPUFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "MHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the CPU frequency of CPU socket of server chassis."
::= { chassisInsCPUSocketEntry 5 }
chassisInsCPUSocketCPUStepping OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the CPU stepping of CPU socket of server chassis."
::= { chassisInsCPUSocketEntry 6 }
chassisInsCPUSocketCPUCoreNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the CPU core number of CPU socket of server chassis."
::= { chassisInsCPUSocketEntry 7 }
chassisInsCPUSocketCPUUpperLimitTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the highest temperature threshold of CPU0 sensor in server chassis."
::= { chassisInsCPUSocketEntry 8 }
chassisInsCPUSocketCPULowerLimitTemp OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 degrees C"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the lowest temperature threshold of CPU0 sensor in server chassis."
::= { chassisInsCPUSocketEntry 9 }
chassisInsDIMMCapacity OBJECT-TYPE
SYNTAX Integer32
UNITS "GB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the total amount of DIMM capacity of server chassis."
::= { chassisInstall 3 }
chassisInsDIMMSlotTable OBJECT-TYPE
SYNTAX SEQUENCE OF chassisInsDIMMSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the table of DIMM slot of server chassis."
::= { chassisInstall 4 }
chassisInsDIMMSlotEntry OBJECT-TYPE
SYNTAX ChassisInsDIMMSlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the entry of DIMM slot of server chassis."
INDEX { chassisInsDIMMSlotIndex }
::= { chassisInsDIMMSlotTable 1 }
ChassisInsDIMMSlotEntry ::= SEQUENCE {
chassisInsDIMMSlotIndex
Integer32,
chassisInsDIMMSlotNum
Integer32,
chassisInsDIMMSlotExist
INTEGER,
chassisInsDIMMSlotDIMMCapacity
Integer32,
chassisInsDIMMSlotDIMMType
DisplayString,
chassisInsDIMMSlotDIMMFrequency
Integer32,
chassisInsDIMMSlotDIMMCasLatency
INTEGER,
chassisInsDIMMSlotDIMMStatus
INTEGER
}
chassisInsDIMMSlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the index of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 1 }
chassisInsDIMMSlotNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the registrated state of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 2 }
chassisInsDIMMSlotExist OBJECT-TYPE
SYNTAX INTEGER {
non-exist(1), exist(2), unknown(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the capacity of DIMM slots of server chassis."
::= { chassisInsDIMMSlotEntry 3 }
chassisInsDIMMSlotDIMMCapacity OBJECT-TYPE
SYNTAX Integer32
UNITS "GB"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the DIMM type of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 4 }
chassisInsDIMMSlotDIMMType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the DIMM frequency of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 5 }
chassisInsDIMMSlotDIMMFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "MHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the DIMM cas latency of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 6 }
chassisInsDIMMSlotDIMMCasLatency OBJECT-TYPE
SYNTAX INTEGER {
normal(1), unknown(2), degenerated(3), planned-degenerated(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the DIMM state of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 7 }
chassisInsDIMMSlotDIMMStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(1), unknown(2), degenerated(3), planned-degenerated(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the DIMM state of DIMM slot of server chassis."
::= { chassisInsDIMMSlotEntry 8 }
chassisInsPCISlotTable OBJECT-TYPE
SYNTAX SEQUENCE OF chassisInsPCISlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the table of PCI slot of server chassis."
::= { chassisInstall 5 }
chassisInsPCISlotEntry OBJECT-TYPE
SYNTAX ChassisInsPCISlotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This shows the entry of PCI slot of server chassis."
INDEX { chassisInsPCISlotIndex }
::= { chassisInsPCISlotTable 1 }
ChassisInsPCISlotEntry ::= SEQUENCE {
chassisInsPCISlotIndex
Integer32,
chassisInsPCISlotNum
Integer32,
chassisInsPCISlotType
DisplayString,
chassisInsPCISlotExist
INTEGER,
chassisInsPCISlotPCIType
DisplayString,
chassisInsPCISlotPCIProductName
DisplayString,
chassisInsPCISlotPCISerial
DisplayString,
chassisInsPCISlotPCIManufacturer
DisplayString
}
chassisInsPCISlotIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the index of PCI slot of server chassis."
::= { chassisInsPCISlotEntry 1 }
chassisInsPCISlotNum OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the slot number of PCI slot of server chassis."
::= { chassisInsPCISlotEntry 2 }
chassisInsPCISlotType OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This shows the type of PCI slot of server chassis."
::= { chassisInsPCISlotEntry 3 }