-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathHUAWEI-ENTITY-EXTENT-MIB
5687 lines (4835 loc) · 203 KB
/
HUAWEI-ENTITY-EXTENT-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- ============================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved.
-- Description:
-- Reference: None
-- Version: V3.05
-- ============================================================================
--
-- HUAWEI-ENTITY-EXTENT-MIB.mib
-- MIB generated by Visual MIB Builder Version 4.0 Build 341
-- Friday, July 15, 2011 at 16:41:48
--
HUAWEI-ENTITY-EXTENT-MIB DEFINITIONS ::= BEGIN
IMPORTS
entPhysicalIndex, entPhysicalVendorType, entPhysicalName, entPhysicalClass, PhysicalClass, PhysicalIndex
FROM ENTITY-MIB
hwDatacomm
FROM HUAWEI-MIB
InterfaceIndex
FROM IF-MIB
EnabledStatus
FROM P-BRIDGE-MIB
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF
Integer32, Unsigned32, Counter64, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
DateAndTime, DisplayString, RowStatus, TEXTUAL-CONVENTION, AutonomousType
FROM SNMPv2-TC;
-- 1.3.6.1.4.1.2011.5.25.31
hwEntityExtentMIB MODULE-IDENTITY
LAST-UPDATED "201707200000Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"The private mib file includes the general extent
information of the device."
REVISION "201707200000Z"
DESCRIPTION "V3.05, Modify the description of hwHda1Error"
REVISION "201707190000Z"
DESCRIPTION "V3.04, Add hwEntityFanSpdAdjMode fan workmode"
REVISION "201706280000Z"
DESCRIPTION "V3.03, Add hwEntityNPStateTable"
REVISION "201706090000Z"
DESCRIPTION "V3.02,
Processing compile errors
"
REVISION "201706070000Z"
DESCRIPTION "V3.01, Add gponsfp in hwEntityOpticalType "
REVISION "201705020000Z"
DESCRIPTION "V3.00, Add hwEntityExtDevConfigurationRecovered "
REVISION "201703180000Z"
DESCRIPTION "V2.99, Add hwEntityOpticalType,
hwEntityOpticalType- add a new OpticalType, thoses name is sfp_sfp_plus."
REVISION "201701140000Z"
DESCRIPTION "V2.98, Add hwEntityModelName, hwEntityIssueNumber
hwEntityModelName - The model for this entity. If there is no model string in elable of this entity or this entity does not support elabel, the invalid value(zero-string) will be returned.
hwEntityIssueNumber - The IssueNumber for this entity. If there is no IssueNumber string in elable of this entity or this entity does not support elabel, the invalid value(zero-string) will be returned"
REVISION "201612240000Z"
DESCRIPTION "V2.96, Add hwEntityElabelVersion"
REVISION "201612120000Z"
DESCRIPTION "V2.95, Updated the hwEntityOpticalType, add cfp4(20) and qsfp28(21) to the list of hwEntityOpticalType values"
REVISION "201612050000Z"
DESCRIPTION "V2.94 Modify the description of hwHda1Error "
REVISION "201611260000Z"
DESCRIPTION "V2.93, Updated the hwEntityOpticalType, add csfp(19) to the list of hwEntityOpticalType values"
REVISION "201610280000Z"
DESCRIPTION "V2.92, Add hwEntityModel, hwEntityExInfo"
REVISION "201610210000Z"
DESCRIPTION "V2.91, Add hwEntityExtCPUOverInterfaceDown"
REVISION "201610180000Z"
DESCRIPTION "V2.90, Updated hwEntityExtCpuUsageSuddenChangeNotification, hwEntityExtMemoryUsageSuddenChangeNotification, hwEntitySlotID, hwEntityCpuID, hwEntityPreviousValue, hwEntityCurrentValue, hwEntityChangeValue, hwEntityChangeValueThreshold"
REVISION "201610090000Z"
DESCRIPTION "V2.89, Add hwCfcardStateInfo, hwHda1Error"
REVISION "201610090000Z"
DESCRIPTION "V2.88, Updated the hwHardDiskStateTable, hwEntityExtHardDiskFull, hwEntityExtHardDiskFullResume, hwEntityExtHardDiskPlugIn, hwEntityExtHardDiskPlugOut, hwEntityExtHardDiskOnline, hwEntityExtHardDiskOffline, hwEntityExtLPUPlugIn, hwEntityExtLPUPlugOut"
REVISION "201609280000Z"
DESCRIPTION "V2.87, Add hwCpuUsageMutationNotification, hwMemoryUsageMutationNotification, hwPreValue, hwCurValue, hwChangeValue, hwChangeValueThreshold, hwSamplingInterval"
REVISION "201609230000Z"
DESCRIPTION "V2.86, Add hwHardDiskStateTable, hwEntityExtHardDiskFull, hwEntityExtHardDiskFullResume, hwEntityExtHardDiskPlugIn, hwEntityExtHardDiskPlugOut, hwEntityExtHardDiskOnline, hwEntityExtHardDiskOffline, hwEntityExtLPUPlugIn, hwEntityExtLPUPlugOut"
REVISION "201608301020Z" -- August 30, 2016 at 10:20 GMT
DESCRIPTION "V2.85, Add hwBoardDropRuntPacketNotify"
REVISION "201607260000Z"
DESCRIPTION "V2.84, Add hwEntityOpticalWaveLengthExact"
REVISION "201607260000Z"
DESCRIPTION "V2.83, Add hwEntityExtEncryptionCardFail"
REVISION "201607160000Z"
DESCRIPTION "V2.82, Add hwEntityHda1Usage, hwEntityHda1UsageThreshold, hwEntityHda1UsageResumeThreshold, hwEntityExtHda1UsageThresholdNotfication, hwEntityExtHda1UsageResumeThresholdNotfication"
REVISION "201605230000Z"
DESCRIPTION "V2.80, Add hwDiskType"
REVISION "201605100000Z"
DESCRIPTION "V2.80, Add hwEntityExtDiskDamaged,hwEntityExtDiskFull"
REVISION "201605050000Z"
DESCRIPTION "V2.79, Add hwEntityRuntPacketCheckNotify"
REVISION "201604210000Z"
DESCRIPTION "V2.78, Add hwProcessStateInfo, hwProcessName, hwEntityExtProcessErrorNotification"
REVISION "201604150000Z"
DESCRIPTION "V2.77, Updated the hwEntityOpticalType, add gps(18) to the list of hwEntityOpticalType values"
REVISION "201604050000Z"
DESCRIPTION "V2.76, Modify hwEntityHigErrorPacketThresholdAlarm"
REVISION "201603280000Z"
DESCRIPTION "V2.75, Add hwEntityPositionMismatchNotify"
REVISION "201602010000Z"
DESCRIPTION "V2.74, Delete bits from definitions"
REVISION "201601110000Z"
DESCRIPTION "V2.73, Add hwEntityHigCrcErrorThresholdAlarm, hwEntityHigStateChangeNotify, hwEntityHigStateDownNotify"
REVISION "201512210000Z"
DESCRIPTION "V2.71, Add hwEntityOpticalBandWidth"
REVISION "201511230000Z"
DESCRIPTION "V2.70, Add the hwEntityOpticalTransType, hwEntityOpticalConnectType, hwEntityOpticalOrderingName, hwEntityOpticalTransferDistance"
REVISION "201509180000Z"
DESCRIPTION "V2.68, Add hwEntityPbufUsage, hwEntityTMUsage"
REVISION "201509080000Z"
DESCRIPTION "V2.67, modify hwFileGeneResourceType Description"
REVISION "201509010000Z"
DESCRIPTION "V2.66, modify hwEntityCpuFrequency UNITS"
REVISION "201508070000Z"
DESCRIPTION "V2.65, Add the hwEntityInputRateThresholdAlarm, hwEntityInputRateThresholdAlarmResume, hwEntityOutputRateThresholdAlarm, hwEntityOutputRateThresholdAlarmResume"
REVISION "201507100000Z"
DESCRIPTION "V2.64, modify hwEntityCurrent UNITS"
REVISION "201505160000Z"
DESCRIPTION "V2.63, Add hwEntityOpticalMaxRxPower,hwEntityOpticalMinRxPower,hwEntityOpticalMaxTxPower,hwEntityOpticalMinTxPower"
REVISION "201504250000Z"
DESCRIPTION "V2.62, Updated the hwEntityTemperatureLowThreshold Description"
REVISION "201504250000Z"
DESCRIPTION "V2.61, Updated the hwEntityOpticalType, add msa100glh(17) to the list of hwEntityOpticalType values"
REVISION "201502120000Z"
DESCRIPTION "V2.59, Add the hwEntityCpuUsageHistoryTable, hwEntityMemUsageHistoryTable"
REVISION "201409170000Z"
DESCRIPTION "V2.57, Add the hwEntityFaultLightKeepTime"
REVISION "201408100000Z"
DESCRIPTION "V2.56, Add CE hwPwrStatusTable and hwEntityFanDesc"
REVISION "201406230000Z"
DESCRIPTION "V2.55, Add access network product's hwEntityPhysicalSpecTable"
REVISION "201406090000Z"
DESCRIPTION "V2.54, Add the hwEntityOpticalVendorOUI, hwEntityOpticalVendorRev, hwEntityOpticalGponSN"
REVISION "201406090000Z"
DESCRIPTION "V2.53, Add hwAdmPortTable, hwAdmPortEntry and hwAdmPortDescription."
REVISION "201404260000Z"
DESCRIPTION "V2.52, Updated the hwEntityOpticalType"
REVISION "201404180000Z"
DESCRIPTION "V2.51, Add hwGPSLocationInfo"
REVISION "201403280000Z"
DESCRIPTION "V2.50, Add hwBatteryState"
REVISION "201401030000Z"
DESCRIPTION "V2.49, Add the hwEntityManufacturerOUI"
REVISION "201312280000Z"
DESCRIPTION "V2.48, Add hwBoardSplitPorts"
REVISION "201312231120Z"
DESCRIPTION "V2.47, Update the hwEntityOpticalType, hwEntityOpticalFiberType"
REVISION "201311281400Z"
DESCRIPTION "V2.46, Add hwEntitySplitAttribute , hwSystemPowerReservedPower"
REVISION "201311200000Z"
DESCRIPTION "V2.45, Add hwEntityStartMode"
REVISION "201308230000Z"
DESCRIPTION "V2.44, Add hwBatteryInfoTable "
REVISION "201307250000Z"
DESCRIPTION "V2.43, Add hwEntityOpticalLaneBiasCurrent , hwEntityOpticalLaneRxPower , hwEntityOpticalLaneTxPower "
REVISION "201307111307Z"
DESCRIPTION "V2.42, Updated the hwEntityOpticalTunableType "
REVISION "201306270000Z"
DESCRIPTION "V2.41, Add hwDeviceServiceType "
REVISION "201306070000Z"
DESCRIPTION "V2.40, Add hwOSPUnifyManageObjects ,hwEntityExtOSPTrapsPrefix ,hwEntityExtUnconnected,hwEntityExtUnconnectedResume "
REVISION "201306060000Z"
DESCRIPTION "V2.39, Updated the hwEntityOpticalType, hwEntityOpticalFiberType"
REVISION "201304270000Z"
DESCRIPTION "V2.38, Add hwEntityOpticalWaveBand"
REVISION "201304250000Z"
DESCRIPTION "V2.37, Add hwEntityBoardName,hwEntityBoardDescription,hwEntity5MinCpuUsage to hwEntityStateEntry"
REVISION "201304230000Z"
DESCRIPTION "V2.36, Updated the hwEntityOpticalType enum name of value 5 and add a new hwSystemGlobalObjects hwEntitySystemServiceType "
REVISION "201304080000Z"
DESCRIPTION "V2.35, Add hwBoardSoftwareVersionIncompatible "
REVISION "201304030000Z"
DESCRIPTION "V2.34, Add hwEntityOpticalTunableModuleChannel"
REVISION "201303200000Z"
DESCRIPTION "V2.33, Add hwAlarmPnPSequenceNo and hwAlarmPnPChangeNotification "
REVISION "201303130000Z"
DESCRIPTION "V2.32, Add hwEntityOpticalTunableType and hwEntityOpticalWaveLengthDecimal "
REVISION "201201250000Z"
DESCRIPTION "V2.20, Updated the hwSystemGlobalObjects hwEntitySystemServiceType "
REVISION "201409170000Z"
DESCRIPTION "V2.58, Updated the hwEntityBoardClass"
REVISION "201503250000Z"
DESCRIPTION "V2.59, Add hwEntityTransceiverType"
REVISION "201511020000Z"
DESCRIPTION "V2.60, Add hwEntityStatusChange"
REVISION "201511230000Z"
DESCRIPTION "V2.60, Add hwEntityExtCpuUsageThresholdNotficationClear and hwEntityExtMemUsageThresholdNotificationClear"
REVISION "201612240000Z"
DESCRIPTION "V2.97, Add hwUsbConfigInfoPara"
::= { hwDatacomm 31 }
--
-- Textual conventions
--
HwAdminState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" Represents the various possible administrative states.
A value of locked means the resource is administratively
prohibited from use. A value of shuttingDown means that
usage is administratively limited to current instances of
use. A value of unlocked means the resource is not
administratively prohibited from use. A value of up means
that the port is not administratively shut down and a value
of down is the oppsite. A value of loopback here means the
port is working in the loopback local mode. When a port is
both shut down and looped back, we user the vale of down."
REFERENCE
"ITU Recommendation X.731, 'Information Technology - Open
Systems Interconnection - System Management: State
Management Function', 1992"
SYNTAX INTEGER
{
notSupported(1),
locked(2),
shuttingDown(3),
unlocked(4),
up(11),
down(12),
loopback(13)
}
HwOperState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" Represents the possible values of operational states.
A value of disabled means the resource is totally
inoperable. A value of enabled means the resource
is partially or fully operable. The values up(11),down(12) and
connect(13) is used only for NE5000E BTB or it's extended system.
A value of protocolUp means the port is available in the protocol
lay or has already prepared for transmitting or receiving data.
A value of linkUp means the port is only available in the physical
lay. A value of linkDown means the port is not available physically."
REFERENCE
"ITU Recommendation X.731, 'Information Technology - Open
Systems Interconnection - System Management: State
Management Function', 1992"
SYNTAX INTEGER
{
notSupported(1),
disabled(2),
enabled(3),
offline(4),
up(11),
down(12),
connect(13),
protocolUp(15),
linkUp(16),
linkDown(17),
present(18),
absent(19)
}
HwStandbyStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
" Represents the possible values of standby status.
A value of hotStandby means the resource is not providing
service, but is will be immediately able to take over the
role of the resource to be backed-up, without the need for
initialization activity, and will contain the same
information as the resource to be backed up. A value of
coldStandy means that the resource is to back-up another
resource, but will not be immediately able to take over
the role of a resource to be backed up, and will require
some initialization activity. A value of providingService
means the resource is providing service."
REFERENCE
"ITU Recommendation X.731, 'Information Technology - Open
Systems Interconnection - System Management: State
Management Function', 1992"
SYNTAX INTEGER
{
notSupported(1),
hotStandby(2),
coldStandby(3),
providingService(4)
}
HwAlarmStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Represents the possible values of alarm status.
When no bits of this attribute are set, then none of the
status conditions described below are present. When the
value of under repair is set, the resource is currently
being repaired.
When the value of critical is set, one or more critical
alarms are active against the resource. When the value of
major is set, one or more major alarms are active against
the resource. When the value of minor is set, one or more
minor alarms are active against the resource. When the
value of warning is set, one or more warning alarms are
active against the resource. When the value of
indeterminate is set, one or more alarms of indeterminate
severity are active against the resource.
When the value of alarm outstanding is set, one or more
alarms is active against the resource. The fault may or may
not be disabling. "
REFERENCE
"ITU Recommendation X.731, 'Information Technology - Open
Systems Interconnection - System Management: State
Management Function', 1992"
SYNTAX BITS
{
notSupported(0),
underRepair(1),
critical(2),
major(3),
minor(4),
alarmOutstanding(5),
warning(6),
indeterminate(7)
}
HWLevelState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The normal state of input line ."
SYNTAX INTEGER
{
lowLevel(1),
highLevel(2)
}
--
-- Node definitions
--
-- 1.3.6.1.4.1.2011.5.25.31.1
hwEntityExtObjects OBJECT IDENTIFIER ::= { hwEntityExtentMIB 1 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1
hwEntityState OBJECT IDENTIFIER ::= { hwEntityExtObjects 1 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1
hwEntityStateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEntityStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains one row per physical entity, There is
always at least one row for an 'overall' physical entity.
The information in each row may be not include all the object
in this table, because of the entity need not some of the
information here. "
::= { hwEntityState 1 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1
hwEntityStateEntry OBJECT-TYPE
SYNTAX HwEntityStateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular physical entity.
Each entry provides objects (entPhysicalDescr,
entPhysicalVendorType, and entPhysicalClass) to help an NMS
identify and characterize the entry, and objects
(entPhysicalContainedIn and entPhysicalParentRelPos) to help
an NMS relate the particular entry to other entries in this
table."
INDEX { entPhysicalIndex }
::= { hwEntityStateTable 1 }
HwEntityStateEntry ::=
SEQUENCE {
hwEntityAdminStatus
HwAdminState,
hwEntityOperStatus
HwOperState,
hwEntityStandbyStatus
HwStandbyStatus,
hwEntityAlarmLight
HwAlarmStatus,
hwEntityCpuUsage
Integer32,
hwEntityCpuUsageThreshold
Integer32,
hwEntityMemUsage
Integer32,
hwEntityMemUsageThreshold
Integer32,
hwEntityMemSize
Integer32,
hwEntityUpTime
Integer32,
hwEntityTemperature
Integer32,
hwEntityTemperatureThreshold
Integer32,
hwEntityVoltage
Integer32,
hwEntityVoltageLowThreshold
Integer32,
hwEntityVoltageHighThreshold
Integer32,
hwEntityTemperatureLowThreshold
Integer32,
hwEntityOpticalPower
Integer32,
hwEntityCurrent
Integer32,
hwEntityMemSizeMega
Integer32,
hwEntityPortType
INTEGER,
hwEntityDuplex
INTEGER,
hwEntityOpticalPowerRx
Integer32,
hwEntityCpuUsageLowThreshold
Integer32,
hwEntityBoardPower
Integer32,
hwEntityCpuFrequency
Integer32,
hwEntitySupportFlexCard
INTEGER,
hwEntityBoardClass
INTEGER,
hwNseOpmStatus
Integer32,
hwEntityCpuMaxUsage
Integer32,
hwEntityCPUType
SnmpAdminString,
hwEntityMemoryType
SnmpAdminString,
hwEntityFlashSize
Integer32,
hwEntityIfUpTimes
Integer32,
hwEntityIfDownTimes
Integer32,
hwEntityCPUAvgUsage
Integer32,
hwEntityMemoryAvgUsage
Integer32,
hwEntityMemUsed
Unsigned32,
hwEntityTotalFanNum
Integer32,
hwEntityNomalFanNum
Integer32,
hwEntityTotalPwrNum
Integer32,
hwEntityNomalPwrNum
Integer32,
hwEntityFaultLight
INTEGER,
hwEntityBoardName
OCTET STRING,
hwEntityBoardDescription
OCTET STRING,
hwEntity5MinCpuUsage
Integer32,
hwEntityStartMode
INTEGER,
hwEntitySplitAttribute
OCTET STRING,
hwEntityFaultLightKeepTime
Integer32,
hwEntityPbufUsage
Integer32,
hwEntityTMUsage
Integer32,
hwEntityHda1Usage
Integer32,
hwEntityHda1UsageThreshold
Integer32,
hwEntityHda1UsageResumeThreshold
Integer32,
hwEntitySlotID
Integer32,
hwEntityCpuID
Integer32,
hwEntityPreviousValue
Integer32,
hwEntityCurrentValue
Integer32,
hwEntityChangeValue
Integer32,
hwEntityChangeValueThreshold
Integer32,
hwEntityModelName
OCTET STRING,
hwEntityIssueNumber
OCTET STRING
}
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.1
hwEntityAdminStatus OBJECT-TYPE
SYNTAX HwAdminState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The administrative state for this object, and it is possible to set
the state when needed. "
::= { hwEntityStateEntry 1 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.2
hwEntityOperStatus OBJECT-TYPE
SYNTAX HwOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The operational state for this object. "
::= { hwEntityStateEntry 2 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.3
hwEntityStandbyStatus OBJECT-TYPE
SYNTAX HwStandbyStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Some entity in a device can support standby mode,
This object is used for monitoring standby status. "
::= { hwEntityStateEntry 3 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.4
hwEntityAlarmLight OBJECT-TYPE
SYNTAX HwAlarmStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The alarm status for this entity. It does not include
the severity of alarms raised on child components. On
the condition, there are a alarm light on the entity,
the object should have the same status with it."
::= { hwEntityStateEntry 4 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5
hwEntityCpuUsage OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The CPU usage for this entity. Generally, the CPU usage
will calculate the overall CPU usage on the entity, and it
is not sensible with the number of CPU on the entity. "
::= { hwEntityStateEntry 5 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.6
hwEntityCpuUsageThreshold OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The threshold for the CPU usage. When the CPU usage exceed
the threshold, a notification will be sent. "
::= { hwEntityStateEntry 6 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.7
hwEntityMemUsage OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The memory usage for the entity. This object point out how
many percent of memory has been used. "
::= { hwEntityStateEntry 7 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.8
hwEntityMemUsageThreshold OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The threshold for the Memory usage, When the memory usage
exceed the threshold, a notification will be sent. "
::= { hwEntityStateEntry 8 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.9
hwEntityMemSize OBJECT-TYPE
SYNTAX Integer32
UNITS "bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The size of memory for the entity. "
::= { hwEntityStateEntry 9 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.10
hwEntityUpTime OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The up time for the entity. The mean of up time is
when the entity is up, and the value of the object
will add one per seconds while the entity running. "
::= { hwEntityStateEntry 10 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.11
hwEntityTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The temperature for the entity. The value 0X7FFFFFF indicates invalid temperature. "
::= { hwEntityStateEntry 11 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.12
hwEntityTemperatureThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The threshold for the temperature. When the temperature
exceeds the threshold, a notification will be sent. "
::= { hwEntityStateEntry 12 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.13
hwEntityVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The voltage for the entity. "
::= { hwEntityStateEntry 13 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.14
hwEntityVoltageLowThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The low-threshold for the voltage. Generally, we have two
threshold for the voltage, one is low-threshold, and the other
is high-threshold. the normal status of voltage should be
greater than the low-threshold, and lower than the high-threshold.
When the voltage low than the low-threshold, a notification
will be sent. "
::= { hwEntityStateEntry 14 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.15
hwEntityVoltageHighThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The high-threshold for the voltage. Generally, we have two
threshold for the voltage, one is low-threshold, and the other
is high-threshold. the normal status of voltage should be
greater than the low-threshold, and lower than the high-threshold.
When the voltage greater than the high-threshold, a notification
will be sent. "
::= { hwEntityStateEntry 15 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.16
hwEntityTemperatureLowThreshold OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The low-threshold of temperature. If the device temperature is
higher than the threshold, an alarm is raised.
"
::= { hwEntityStateEntry 16 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.17
hwEntityOpticalPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The optical power of the optical module. Unit: uW"
::= { hwEntityStateEntry 17 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.18
hwEntityCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The current for the entity. "
::= { hwEntityStateEntry 18 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.19
hwEntityMemSizeMega OBJECT-TYPE
SYNTAX Integer32
UNITS "M bytes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The size of SDRAM(Synchronous Dynamic Random Access Memory) memory for the entity. Unit: M bytes"
::= { hwEntityStateEntry 19 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.20
hwEntityPortType OBJECT-TYPE
SYNTAX INTEGER
{
notSupported(1),
copper(2),
fiber100(3),
fiber1000(4),
fiber10000(5),
opticalnotExist(6),
optical(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Indicates the type of the Ethernet interface: an optical interface or an electrical interface. "
::= { hwEntityStateEntry 20 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.21
hwEntityDuplex OBJECT-TYPE
SYNTAX INTEGER
{
notSupported(1),
full(2),
half(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" Indicates the duplex mode of the Ethernet interface. An electrical Ethernet interface can
work in half-duplex mode or full-duplex mode. An optical Ethernet can work only in full-duplex mode. "
::= { hwEntityStateEntry 21 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.22
hwEntityOpticalPowerRx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The optical power(Rx) of the optical module. Unit: uW"
::= { hwEntityStateEntry 22 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.23
hwEntityCpuUsageLowThreshold OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" The threshold for the CPU usage. When the CPU usage exceed
the threshold, a notification will be sent. "
::= { hwEntityStateEntry 23 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.24
hwEntityBoardPower OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The board power for the entity. Unit: W"
::= { hwEntityStateEntry 24 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.25
hwEntityCpuFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "Hz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The frequency of the entity. Unit: Hz"
::= { hwEntityStateEntry 25 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.26
hwEntitySupportFlexCard OBJECT-TYPE
SYNTAX INTEGER
{
notSupported(1),
flexible(2),
unflexible(3),
dummy(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" It describes whether the whole board supports flexible cards. When
the board doesn't support flexible cards, the cards may be dummy ones
whose ports will not be seen by the customer."
::= { hwEntityStateEntry 26 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.27
hwEntityBoardClass OBJECT-TYPE
SYNTAX INTEGER
{
notSupported(1),
mpu(2),
lpu(3),
sfu(4),
icu(5),
ecu(6),
fan(7),
power(8),
lcd(9),
pmu(10),
cmu(11)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" It describes the board type of the whole board."
::= { hwEntityStateEntry 27 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.28
hwNseOpmStatus OBJECT-TYPE
SYNTAX Integer32 (0..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"OPM status. 0: pass, 1: bypass, 2: invalid"
::= { hwEntityStateEntry 28 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.29
hwEntityCpuMaxUsage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
" The Max CPU usage for this entity. Generally, the Max CPU usage
will calculate the overall CPU usage on the entity, and it
is not sensible with the number of CPU on the entity. "
::= { hwEntityStateEntry 29 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.30
hwEntityCPUType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CPU type."
::= { hwEntityStateEntry 30 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.31
hwEntityMemoryType OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Memory type."
::= { hwEntityStateEntry 31 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.32
hwEntityFlashSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Flash size, in KB."
::= { hwEntityStateEntry 32 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.33
hwEntityIfUpTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Times that the interface goes Up."
::= { hwEntityStateEntry 33 }
-- 1.3.6.1.4.1.2011.5.25.31.1.1.1.1.34
hwEntityIfDownTimes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Times that the interface goes Down."
::= { hwEntityStateEntry 34 }