-
Notifications
You must be signed in to change notification settings - Fork 14
/
HUAWEI-PORT-MIB.mib
12292 lines (10551 loc) · 374 KB
/
HUAWEI-PORT-MIB.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:
-- Version: V2.75
-- ===================================================================
HUAWEI-PORT-MIB DEFINITIONS ::= BEGIN
IMPORTS
EnabledStatus
FROM P-BRIDGE-MIB
InterfaceIndex
FROM IF-MIB
ImaFrameLength, ImaGroupState
FROM HUAWEI-IMA-MIB
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, Integer32, Unsigned32, Counter64, IpAddress
FROM SNMPv2-SMI
TruthValue, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
hwDatacomm
FROM HUAWEI-MIB
NOTIFICATION-GROUP, OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
DateAndTime
FROM SNMPv2-TC
entPhysicalName
FROM ENTITY-MIB
hwGtlItemName
FROM HUAWEI-GTL-MIB;
hwPortMIB MODULE-IDENTITY
LAST-UPDATED "201707081826Z"
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.hwDatacomm(157).hwPortMIB"
-- Add revision info here!
REVISION "201707081826Z"
DESCRIPTION
"add hwCableSnrAbnormal,hwCableSnrNormal,hwCableSnrDetectNotSupport"
-- Add revision info here!
REVISION "201704272334Z"
DESCRIPTION
"modify hwEthernetSpeedSet."
REVISION "201703281130Z"
DESCRIPTION
"add hwPortLicenseActFail,hwPortLicenseActSuccess."
-- Add revision info here!
REVISION "201703150909Z"
DESCRIPTION
"add blockAc alarm."
-- Add revision info here!
REVISION "201701241430Z"
DESCRIPTION
"add hwNbAcBlock hwNbRealTimeDelay."
-- Add revision info here!
REVISION "201701041730Z"
DESCRIPTION
"add hwPortProtectGroupId,hwPortProtectGroupAvailable,hwPortProtectGroupDelete."
-- Add revision info here!
REVISION "201612161730Z"
DESCRIPTION
"add hwBoardNotSupportAssignTrunk."
-- Add revision info here!
REVISION "201610122026Z"
DESCRIPTION
"modify hwEthernetJumboframeMaxLength."
REVISION "201609252334Z"
DESCRIPTION
"modify hwEthernetSpeedSet."
REVISION "201608151106Z"
DESCRIPTION
"Add hwPhysicalPortInBroadcastRapidChange, hwInputBroadcastChangeThreshold, hwCurrentStatisticalInputBroadcast, hwBaseStatisticalInputBroadcast."
REVISION "201608022211Z"
DESCRIPTION
"modify hwImpedanceMismatch."
REVISION "201607251508Z"
DESCRIPTION
"Add hwPicLcdAlarm ,hwPicLcdAlarmResume."
REVISION "201607211145Z"
DESCRIPTION
"Add hwImpedenceMismatch."
REVISION "201606161054Z"
DESCRIPTION
"Add hwPhysicalPortName of this mib nodes:hwPtimAlarm,hwB3TcaAlarm,hwPplmAlarm,hwPrdiAlarm,hwLomAlarm,hwPuneqAlarm,hwPaisAlarm."
-- Add revision info here!
REVISION "201605111850Z"
DESCRIPTION
"Add hwPortGroupTransModeDiff,hwPortGroupTransModeDiffResume,hwPhysicalPortGroupID,hwPortTransModeReasonDescr."
-- Add revision info here!
REVISION "201605041850Z"
DESCRIPTION
"Add hwPortErrorRateExceed."
REVISION "201604251526Z"
DESCRIPTION
"Add hwIPIfStatTable."
REVISION "201604180926Z"
DESCRIPTION
"Add hwPortSpeedChangeTrap,hwPhysicalPortCurSpeed,hwPhysicalPortLastSpeed."
REVISION "201603291516Z" -- March 29, 2016 at 15:16 GMT
DESCRIPTION
"Add hwSubIfNumExceededSpecTrapObject,hwSubIfSpecNum,hwSubIfNumExceededSpecAlarm,hwSubIfNumExceededSpecAlarmResume."
REVISION "201602171634Z"
DESCRIPTION
"Add hwPortCrcRateExceed."
REVISION "201512011108Z"
DESCRIPTION
"Add hwNbPortType."
REVISION "201510191105Z"
DESCRIPTION
"Modify hwCollisionAlarm,hwCollisionAlarmResume."
REVISION "201510161105Z"
DESCRIPTION
"Modify hwRdiAlarm,hwRdiAlarmResume,hwAisAlarm ,hwAisAlarmResume,hwCollisionAlarm,hwCollisionAlarmResume."
REVISION "201510091105Z"
DESCRIPTION
"Add hwRdiAlarm,hwRdiAlarmResume,hwAisAlarm ,hwAisAlarmResume,hwCollisionAlarm,hwCollisionAlarmResume."
REVISION "201508221138Z"
DESCRIPTION
"Add hwPortModeChange,hwPhysicalPortMode."
REVISION "201508221138Z"
DESCRIPTION
"Increased the default Mib node for hwEthernetFlowControl."
REVISION "201508221138Z"
DESCRIPTION
"Add hwLicenseInactiveAlarm,hwLicenseInactiveAlarmResume,hwLicenseResourceLackAlarm,hwLicenseResourceLackAlarmResume."
REVISION "201507101139Z"
DESCRIPTION
"Add hwPortTotalStatistics."
REVISION "201504110000Z"
DESCRIPTION
"Add hwPortPhysicalRate, hwPortPhysicalRateDegradeAlarm, hwPortPhysicalRateDegradeAlarmResume."
-- Add revision info here!
REVISION "201504100000Z"
DESCRIPTION
"Add hwPhysicalPortName of this mib nodes: hwAuAisAlarm, hwB3ExcAlarm, hwBip2ExcAlarm, hwBip2TcaAlarm,
hwCposE1AlmE1RaiAlarm, hwCposE1DownE1AisAlarm, hwCposE1LfaAlarm, hwCposE1LmfaAlarm, hwCposE1UpE1AisAlarm,
hwLpSlmVc12Alarm, hwLpTimVc12Alarm, hwLpUneqVc12Alarm, hwTuAisVc12Alarm, hwV5VcaisAlarm, hwVlopAlarm, hwVrdiAlarm, hwVrfiAlarm"
-- Add revision info here!
REVISION "201504030000Z"
DESCRIPTION
"Add hwInputRateChangeThresholdPercent, hwOutputRateChangeThresholdPercent, hwCurrentStatisticalPeriodRate, hwLastStatisticalPeriodRate, hwInputRateChangeOverThresholdNotice, hwOutputRateChangeOverThresholdNotice."
REVISION "201503250000Z"
DESCRIPTION
"Add hwLinkHeartbeat trap"
REVISION "201503241002Z"
DESCRIPTION
"Modify description of symbol error alarm high and low threshold."
-- Add revision info here!
REVISION "201503191000Z"
DESCRIPTION
"Add hwNbCommonTable and its leafs, add x50 lof,abit alarms"
-- Add revision info here!
REVISION "201503161416Z"
DESCRIPTION
"Modify description of crc error alarm high and low threshold."
REVISION "201503021009Z"
DESCRIPTION
"Modified hwEthernetSpeedSet."
REVISION "201502060000Z"
DESCRIPTION
"Increased the otn Mib leafs for the WDM interface."
-- Add revision info here!
REVISION "201501311400Z"
DESCRIPTION
"Add hwNarrowBand and its tables and leafs."
REVISION "201408221142Z"
DESCRIPTION
"Modify the description of the hwEthHalfDuplex and hwEthFullDuplex."
REVISION "201408221142Z"
DESCRIPTION
"Bind hwPhysicalPortAlarmName to hwDslLinkSignalLost and hwDslLinkSignalResume ."
REVISION "201408221142Z"
DESCRIPTION
"Add hwMultiServiceOnOneCardAlarm,hwMultiServiceOnOneCardAlarmResume."
REVISION "201408221142Z"
DESCRIPTION
"Add hwLogicalPort."
REVISION "201406121140Z"
DESCRIPTION
"Add hwPhysicalPortFlowSurge, hwInputBroadcastSurgeOccur, hwInputBroadcastSurgeResume, hwOutputBroadcastSurgeOccur, hwOutputBroadcastSurgeResume."
REVISION "201404162141Z"
DESCRIPTION
"Increased the otn Mib nodes for the WDM interface."
REVISION "201404111150Z"
DESCRIPTION
"Increased two OBJECT-TYPE nodes hwPhysicalPortPreFecCoefficientStatistics and hwPhysicalPortPreFecPowerStatistics.
Increased two traps hwPrefecTcaAlarm and hwPrefecTcaAlarmResume."
REVISION "201404021011Z"
DESCRIPTION
"Added a object named hwPRBSTestInfo and it includes 4 tables : hwPRBSTestPortStatusTable,hwPRBSTestResultTable,
hwPRBSTestIntervalTable and hwPRBSTestSegmentTable.hwPRBSTestPortStatusTable includes 10 nodes :
hwPRBSTestPortStatusIfName,hwPRBSTestPortStatusSide,hwPRBSTestPortStatusSuportFlag,hwPRBSTestPortStatusPatternBitmap,
hwPRBSTestPortStatusErrInsertLevel,hwPRBSTestPortStatusSlotNum,hwPRBSTestPortStatusCardNum,
hwPRBSTestPortStatusPhyPortIfName,hwPRBSTestPortStatusResultCount,hwPRBSTestPortStatusOngoingTestIndex.
hwPRBSTestResultTable includes 25 nodes : hwPRBSTestResultIfName,hwPRBSTestResultTestIndex,
hwPRBSTestResultPhyPortIfName,hwPRBSTestResultSide,hwPRBSTestResultPattern,hwPRBSTestResultIntervalTime,
hwPRBSTestResultIntervalCount,hwPRBSTestResultTestingIntervalIndex,hwPRBSTestResultStartTime,
hwPRBSTestResultStopTime,hwPRBSTestResultProgress,hwPRBSTestResultRemainTime,hwPRBSTestResultErrInserted,
hwPRBSTestResultTotalBit,hwPRBSTestResultErrorBit,hwPRBSTestResultBerCoe,hwPRBSTestResultBerPow,
hwPRBSTestResultLos,hwPRBSTestResultEs,hwPRBSTestResultEfs,hwPRBSTestResultSes,hwPRBSTestResultUas,
hwPRBSTestResultSegmentTime,hwPRBSTestResultSegmentTotalCount,hwPRBSTestResultTestingSegmentIndex.
hwPRBSTestIntervalTable includes 17 nodes : hwPRBSTestIntervalIfName,hwPRBSTestIntervalTestIndex,
hwPRBSTestIntervalIndex,hwPRBSTestIntervalStartTime,hwPRBSTestIntervalStopTime,hwPRBSTestIntervalProgress,
hwPRBSTestIntervalRemainTime,hwPRBSTestIntervalErrInserted,hwPRBSTestIntervalTotalBit,hwPRBSTestIntervalErrorBit,
hwPRBSTestIntervalBerCoe,hwPRBSTestIntervalBerPow,hwPRBSTestIntervalLos,hwPRBSTestIntervalEs,
hwPRBSTestIntervalEfs,hwPRBSTestIntervalSes,hwPRBSTestIntervalUas.hwPRBSTestSegmentTable includes 14 nodes :
hwPRBSTestSegmentIfName,hwPRBSTestSegmentTestIndex,hwPRBSTestSegmentIndex,hwPRBSTestSegmentStartTime,
hwPRBSTestSegmentEndTime,hwPRBSTestSegmentTotalBit,hwPRBSTestSegmentErrorBit,hwPRBSTestSegmentBerCoe,
hwPRBSTestSegmentBerPow,hwPRBSTestSegmentLos,hwPRBSTestSegmentEs,hwPRBSTestSegmentEfs,hwPRBSTestSegmentSes,
hwPRBSTestSegmentUas."
REVISION "201403311711Z"
DESCRIPTION
"Modified hwPhysicalLoopbackType."
REVISION "201403241700Z"
DESCRIPTION
"Add hwPhysicalPortCrcPerWarningThresholdCoefficient, hwPhysicalPortCrcPerWarningThresholdPower,
hwPhysicalPortCrcPerWarningResumeThresholdCoefficient, hwPhysicalPortCrcPerWarningResumeThresholdPower,
hwPhysicalPortCrcPerWarningThresholdString, hwPhysicalPortCrcPerWarningResumeThresholdString;
Add hwPhysicalPortCrcPerWarning and hwPhysicalPortCrcPerWarningResume"
REVISION "201402211038Z"
DESCRIPTION
"Modified hwEthernetSpeedSet."
REVISION "201402141135Z"
DESCRIPTION
"Increased 4 traps hwE3UpE3AisAlarm and hwE3UpE3AisAlarmResume and hwE3AlmE3RaiAlarm and hwE3AlmE3RaiAlarmResume."
REVISION "201312240955Z"
DESCRIPTION
"Increased 24 traps hwOtuLomAlarm and hwOtuLomAlarmResume and hwOtuAisAlarm and hwOtuAisAlarmResume and
hwOtuSdAlarm and hwOtuSdAlarmResume and hwOtuSfAlarm and hwOtuSfAlarmResume and hwSmBdiAlarm and
hwSmBdiAlarmResume and hwSmIaeAlarm and hwSmIaeAlarmResume and hwSmTimAlarm and hwSmTimAlarmResume and
hwOduAisAlarm and hwOduAisAlarmResume and hwOduLokAlarm and hwOduLokAlarmResume and hwOduOciAlarm and
hwOduOciAlarmResume and hwPmBdiAlarm and hwPmBdiAlarmResume and hwPmTimAlarm and hwPmTimAlarmResume."
REVISION "201312231101Z"
DESCRIPTION
"Modified hwDs0ChannelBundleSpeed."
REVISION "201312041642Z"
DESCRIPTION
"Increased two nodes hwPhysicalPortCrcSdAlarmTriggerLsp and hwPhysicalPortCrcExcAlarmTriggerLsp."
REVISION "201311161154Z"
DESCRIPTION
"Increased two nodes hwPhysicalPortCrcPerAlarmCoefficientStatistics and hwPhysicalPortCrcPerAlarmPowerStatistics."
REVISION "201310281016Z"
DESCRIPTION
"Add hwNotSameBoardInTrunk"
REVISION "201310142026Z"
DESCRIPTION
"Add hwPortDescription."
REVISION "201309060954Z"
DESCRIPTION
"Add four nodes hwPhysicalPortCrcSd and hwPhysicalPortCrcSdResume
and hwPhysicalPortCrcExc and hwPhysicalPortCrcExcResume."
REVISION "201308082127Z"
DESCRIPTION
"Add hwPhysicalPortAutoDetectFail and hwPhysicalPortAutoDetectSuccess."
REVISION "201307091716Z"
DESCRIPTION
"Add hwPortLine and hwPortIfStatistics."
REVISION "201307051425Z"
DESCRIPTION
"Add one nodes hwCposVc4Flag and one STRING object hwPhysicalPortAlarmName ."
REVISION "201306271422Z"
DESCRIPTION
"Add hwPortProtectGroupCfg."
REVISION "201306141851Z"
DESCRIPTION
"Add half-duplex alarm."
REVISION "201305311751Z"
DESCRIPTION
"Add negotiation failed alarm."
REVISION "201305081751Z"
DESCRIPTION
"THE PRIVATE MIB FILE INCLUDES THE GENERAL EXTENT
INFORMATION OF THE DEVICE.HWDATACOMM(157).HWPORTMIB"
REVISION "201303251039Z"
DESCRIPTION
"Increased two nodes hwCopperPolarityError and hwCopperPolarityErrorResume."
REVISION "201105180930Z"
DESCRIPTION
"Initial version."
::= { hwDatacomm 157 }
hwPortMIBObjects OBJECT IDENTIFIER ::= { hwPortMIB 1 }
hwEthernet OBJECT IDENTIFIER ::= { hwPortMIBObjects 1 }
hwEthernetTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwEthernetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the physical attributes of the Ethernet interface.
This table lists the physical attributes of various Ethernet interfaces."
::= { hwEthernet 1 }
hwEthernetEntry OBJECT-TYPE
SYNTAX HwEthernetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the physical attributes of the Ethernet interface.
This table lists the physical attributes of various Ethernet interfaces."
INDEX { hwEthernetIfIndex }
::= { hwEthernetTable 1 }
HwEthernetEntry ::= SEQUENCE {
hwEthernetIfIndex
InterfaceIndex,
hwEthernetLoopback
INTEGER,
hwEthernetPortType
INTEGER,
hwEthernetSpeedSet
INTEGER,
hwEthernetDuplex
INTEGER,
hwEthernetNegotiation
EnabledStatus,
hwEthernetPortTypeOperate
INTEGER,
hwEthernetClock
INTEGER,
hwEthernetFlagJ0Mode
INTEGER,
hwEthernetFlagJ0Value
Integer32,
hwEthernetFlagJ0Trace
OCTET STRING,
hwEthernetFlagJ1Mode
INTEGER,
hwEthernetFlagJ1Value
Integer32,
hwEthernetFlagJ1Trace
OCTET STRING,
hwEthernetFlagC2Value
Integer32,
hwEthernetUpHoldTime
Integer32,
hwEthernetDownHoldTime
Integer32,
hwEthernetSubinterfaceStatisticEnable
EnabledStatus,
hwEthernetFlowControl
INTEGER,
hwEthernetOffline
INTEGER,
hwEthernetSetTransferMode
INTEGER,
hwEthernetJumboframeMaxLength
Integer32,
hwEthernetComboType
INTEGER,
hwEthernetPortMode
INTEGER,
hwEthernetNegotiationMode
INTEGER
}
hwEthernetIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface index(es) of port(s) present on the device ."
::= { hwEthernetEntry 1 }
hwEthernetLoopback OBJECT-TYPE
SYNTAX INTEGER {otherLoop(1),stopLoopback(2),local(3),remote(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local loopback of an Ethernet interface is used to test the interface itself.
If an interface works in a normal situation, disable the local loopback.
By default, stopLoopback is used."
::= { hwEthernetEntry 11 }
hwEthernetPortType OBJECT-TYPE
SYNTAX INTEGER {other(1),copper(2),fiber(3)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the type of the Ethernet interface: an optical interface or an electrical interface."
::= { hwEthernetEntry 12 }
hwEthernetSpeedSet OBJECT-TYPE
SYNTAX INTEGER {other(1),speed10(2),speed100(3),speed1000(4),speed10000(5),speed40000(6),speed20000(7),speed2500(8),speed5000(9),speed100000(10),speed12000(11),speed48000(12)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the speed of the Ethernet interface. This parameter takes effect only on some Ethernet
electrical interfaces rather than optical interfaces. The parameter can be 10 M, 100 M, 1000 M,
10000 M,40000 M,20000 M,2500 M,5000 M,100000 M,12000 M,48000 M."
::= { hwEthernetEntry 13 }
hwEthernetDuplex OBJECT-TYPE
SYNTAX INTEGER {full(1),half(2)}
MAX-ACCESS read-write
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."
::= { hwEthernetEntry 14 }
hwEthernetNegotiation OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the auto-negotiation mode of the Ethernet electrical interface. By default, auto-negotiation is enabled.
The three objects, hwEthernetSpeedSet, hwEthernetDuplex, and hwEthernetNegotiation are associated with each other.
If the auto-negotiation of hwEthernetNegotiation is enabled, the values of hwEthernetSpeedSet and hwEthernetDuplex are auto-negotiated.
If hwEthernetSpeedSet is set to a certain value, hwEthernetDuplex is modified to the default value full,
and hwEthernetNegotiation is automatically changed to disable. If the auto-negotiation of hwEthernetNegotiation is
enabled, hwEthernetDuplex cannot be set."
::= { hwEthernetEntry 15 }
hwEthernetPortTypeOperate OBJECT-TYPE
SYNTAX INTEGER {other(1),copper(2),fiber100(3),fiber1000(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the link type of the Ethernet interface. The type can be optical link or electrical link.
This parameter takes effect only on specific Ethernet interfaces."
::= { hwEthernetEntry 16 }
hwEthernetClock OBJECT-TYPE
SYNTAX INTEGER {master(1),slave(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the mode of the clock. The mode can be master or slave.
By default, the mode of a clock is slave. This parameter takes effect only on the WAN board."
::= { hwEthernetEntry 20 }
hwEthernetFlagJ0Mode OBJECT-TYPE
SYNTAX INTEGER {j01ByteMode(1),j016ByteMode(2),j064ByteOrNullMode(3),peer(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Before the 10 GE WAN board processes packets, the overhead byte must be configured on the interface.
The overhead byte for the SDH frame, j0: Set section trace byte
The default value is j016ByteMode(2):hwEthernetFlagJ0Trace:NetEngine"
::= { hwEthernetEntry 21 }
hwEthernetFlagJ0Value OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"j01ByteMode Value. When hwEthernetFlagJ0Mode is set to j01ByteMode, this parameter takes effect."
::= { hwEthernetEntry 22 }
hwEthernetFlagJ0Trace OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set section trace byte.
When hwEthernetFlagJ0Mode is set to j016ByteMode or j064ByteOrNullMode, this variable takes effect.
When hwEthernetFlagJ0Mode is set to j016ByteMode, this variable is up to 15 characters trace byte.
When hwEthernetFlagJ0Mode is set to j064ByteOrNullMode, this variable is up to 64 characters trace byte."
::= { hwEthernetEntry 23 }
hwEthernetFlagJ1Mode OBJECT-TYPE
SYNTAX INTEGER {j11ByteMode(1),j116ByteMode(2),j164ByteOrNullMode(3),peer(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the overhead byte of the SDH frame. j1:sets path trace byte.
The default value is j116ByteMode(2) hwEthernetFlagJ1Trace NetEngine."
::= { hwEthernetEntry 24 }
hwEthernetFlagJ1Value OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"j11ByteMode Value. When hwEthernetFlagJ1Mode is set to j11ByteMode, this parameter takes effect."
::= { hwEthernetEntry 25 }
hwEthernetFlagJ1Trace OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set path trace byte.
When hwEthernetFlagJ1Mode is set to j116ByteMode or j164ByteOrNullMode, this variable takes effect.
When hwEthernetFlagJ1Mode is set to j116ByteMode, this variable is up to 15 characters trace byte.
When hwEthernetFlagJ1Mode is set to j164ByteOrNullMode, this variable is up to 64 characters trace byte."
::= { hwEthernetEntry 26 }
hwEthernetFlagC2Value OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the overhead byte of the SDH frame.
c2: indicates the signal label byte. It is a hexdecimal value ranging from 00 to FF.
The default value is 0x02."
::= { hwEthernetEntry 27 }
hwEthernetUpHoldTime OBJECT-TYPE
SYNTAX Integer32 (0..86400000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the response time to the event that the port turns Up. The units of hwEthernetUpHoldTime is millisecond."
::= { hwEthernetEntry 31 }
hwEthernetDownHoldTime OBJECT-TYPE
SYNTAX Integer32 (0..86400000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the response time to the event that the port turns Down. The units of hwEthernetDownHoldTime is millisecond."
::= { hwEthernetEntry 32 }
hwEthernetSubinterfaceStatisticEnable OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enable the statistical function of the sub-interface."
::= { hwEthernetEntry 33 }
hwEthernetFlowControl OBJECT-TYPE
SYNTAX INTEGER {receive(1),send(2),both(3),none(4),default(5)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set flow control of this port."
::= { hwEthernetEntry 34 }
hwEthernetOffline OBJECT-TYPE
SYNTAX INTEGER {true(1),false(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set Line protocol state to down of this port."
::= { hwEthernetEntry 35 }
hwEthernetSetTransferMode OBJECT-TYPE
SYNTAX INTEGER {lan(1),wan(2),none(3),otn(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set transfer mode of this port."
::= { hwEthernetEntry 36 }
hwEthernetJumboframeMaxLength OBJECT-TYPE
SYNTAX Integer32 (1536..16000)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set the jumboframe max length of this port."
::= { hwEthernetEntry 37 }
hwEthernetComboType OBJECT-TYPE
SYNTAX INTEGER {auto(1),copper(2),fiber(3),other(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"combo mode of this port."
::= { hwEthernetEntry 38 }
hwEthernetPortMode OBJECT-TYPE
SYNTAX INTEGER {copper(1),fiber(2),other(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates combo mode of this port."
::= { hwEthernetEntry 39 }
hwEthernetNegotiationMode OBJECT-TYPE
SYNTAX INTEGER {notsupport(1),auto(2),master(3),slave(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set negotiation-mode for phy of electronic GE port.The mode is uesed for synchronizing clock. "
::= { hwEthernetEntry 40 }
hwPos OBJECT IDENTIFIER ::= { hwPortMIBObjects 2 }
hwPosTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwPosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the physical attributes of the POS interface.
This table lists the physical attributes of the POS interface."
::= { hwPos 1 }
hwPosEntry OBJECT-TYPE
SYNTAX HwPosEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the physical attributes of the POS interface.
This table lists the physical attributes of the POS interface."
INDEX { hwPosIfIndex }
::= { hwPosTable 1 }
HwPosEntry ::= SEQUENCE {
hwPosIfIndex
InterfaceIndex,
hwPosLinkProtocol
INTEGER,
hwPosFrameFormat
INTEGER,
hwPosLoopback
INTEGER,
hwPosScramble
EnabledStatus,
hwPosClock
INTEGER,
hwPosCrcVerifyCode
INTEGER,
hwPosFlagJ0Mode
INTEGER,
hwPosFlagJ0Value
Integer32,
hwPosFlagJ0Trace
OCTET STRING,
hwPosFlagJ1Mode
INTEGER,
hwPosFlagJ1Value
Integer32,
hwPosFlagJ1Trace
OCTET STRING,
hwPosFlagC2Value
Integer32
}
hwPosIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface index(es) of port(s) present on the device ."
::= { hwPosEntry 1 }
hwPosLinkProtocol OBJECT-TYPE
SYNTAX INTEGER {ietf(1),nonstandard(2),hdlc(3),ppp(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the link layer protocol of the POS interface.
By default, on a POS interface, PPP serves as the link layer protocol."
::= { hwPosEntry 11 }
hwPosFrameFormat OBJECT-TYPE
SYNTAX INTEGER {sonet(1),sdh(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the frame type of the POS interface.
By default, the frame type of the POS interface is SDH.
This variable identifies whether a SONET or a SDH signal is used across this interface."
::= { hwPosEntry 12 }
hwPosLoopback OBJECT-TYPE
SYNTAX INTEGER {otherLoop(1),stopLoopback(2),local(3),remote(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The local loopback of a POS interface is used to test the interface itself.
If an interface works in a normal situation, disable the local loopback.
By default, stopLoopback is used."
::= { hwPosEntry 13 }
hwPosScramble OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the scramble function of payload. By default, the scramble function of payload is enabled."
::= { hwPosEntry 14 }
hwPosClock OBJECT-TYPE
SYNTAX INTEGER {master(1),slave(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the clock is in master mode or slave mode.
By default, the clock is in slave mode."
::= { hwPosEntry 15 }
hwPosCrcVerifyCode OBJECT-TYPE
SYNTAX INTEGER {crc16(1),crc32(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the length of the CRC verity code. The default value is 32."
::= { hwPosEntry 16 }
hwPosFlagJ0Mode OBJECT-TYPE
SYNTAX INTEGER {j01ByteMode(1),j016ByteMode(2),j064ByteOrNullMode(3),peer(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the overhead byte of the SDH frame. j0: sets section trace byte.
The default value is j016ByteMode(2);hwPosFlagJ0Trace:NetEngine."
::= { hwPosEntry 21 }
hwPosFlagJ0Value OBJECT-TYPE
SYNTAX Integer32 (0..127)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the value of j01ByteMode. When hwPosFlagJ0Mode is set to j01ByteMode, hwPosFlagJ0Value takes effect."
::= { hwPosEntry 22 }
hwPosFlagJ0Trace OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set section trace byte.
When hwPosFlagJ0Mode is set to j016ByteMode or j064ByteOrNullMode, this variable takes effect.
When hwPosFlagJ0Mode is set to j016ByteMode, the value of this variable is up to 15 characters trace byte.
When hwPosFlagJ0Mode is set to j064ByteOrNullMode, the value of this variable is up to 64 characters trace byte."
::= { hwPosEntry 23 }
hwPosFlagJ1Mode OBJECT-TYPE
SYNTAX INTEGER {j11ByteMode(1),j116ByteMode(2),j164ByteOrNullMode(3),peer(4)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the overhead byte of the SDH frame. j1: sets path trace byte.
The default value is j116ByteMode(2);hwPosFlagJ1Trace:NetEngine."
::= { hwPosEntry 24 }
hwPosFlagJ1Value OBJECT-TYPE
SYNTAX Integer32 (0..127)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the value of j11ByteMode. When hwPosFlagJ1Mode is set to j11ByteMode, hwPosFlagJ1Value takes effect."
::= { hwPosEntry 25 }
hwPosFlagJ1Trace OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Set path trace byte.
When hwPosFlagJ1Mode is set to j116ByteMode or j164ByteOrNullMode, this variable takes effect.
When hwPosFlagJ1Mode is set to j116ByteMode, this variable is up to 15 characters trace byte.
When hwPosFlagJ1Mode is set to j164ByteOrNullMode, this variable is up to 64 characters trace byte."
::= { hwPosEntry 26 }
hwPosFlagC2Value OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the overhead byte of the SDH frame.
c2: indicates the signal label byte. It is a hexdecimal value ranging from 00 to FF.
The default value is 0x02."
::= { hwPosEntry 27 }
hwCpos OBJECT IDENTIFIER ::= { hwPortMIBObjects 3 }
hwCposTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCposEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the physical attributes of the CPOS interface.
This table lists the physical attributes of the CPOS interface."
::= { hwCpos 1 }
hwCposEntry OBJECT-TYPE
SYNTAX HwCposEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Indicates the physical attributes of the CPOS interface.
This table lists the physical attributes of the CPOS interface."
INDEX { hwCposIfIndex }
::= { hwCposTable 1 }
HwCposEntry ::= SEQUENCE {
hwCposIfIndex
InterfaceIndex,
hwCposClock
INTEGER,
hwCposIfType
INTEGER,
hwCposFrameFormat
INTEGER,
hwCposMultiplex
INTEGER,
hwCposLoopback
INTEGER,
hwCposFlagJ0Mode
INTEGER,
hwCposFlagJ0Value
Integer32,
hwCposFlagJ0Trace
OCTET STRING,
hwCposFlagJ1Mode
INTEGER,
hwCposFlagJ1Value
Integer32,
hwCposFlagJ1Trace
OCTET STRING,
hwCposFlagC2Value
Integer32,
hwCposB1SdAlarmThreshold
Integer32,
hwCposB1ExcAlarmThreshold
Integer32,
hwCposB2SdAlarmThreshold
Integer32,
hwCposB2ExcAlarmThreshold
Integer32,
hwCposB3SdAlarmThreshold
Integer32,
hwCposB3ExcAlarmThreshold
Integer32,
hwCposLpBipSdAlarmThreshold
Integer32,
hwCposLpBipExcAlarmThreshold
Integer32,
hwCposHighPathNumber
Integer32,
hwCposLowPathNumber
Integer32,
hwCposMappingMode
INTEGER,
hwCposRxJ0Mode
INTEGER,
hwCposRxJ1Mode
INTEGER,
hwCposRxJ0Value
Integer32,
hwCposRxJ1Value
Integer32,
hwCposRxJ0Trace
OCTET STRING,
hwCposRxJ1Trace
OCTET STRING,
hwCposVc4Flag
Integer32
}
hwCposIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Interface index(es) of port(s) present on the device ."
::= { hwCposEntry 1 }
hwCposClock OBJECT-TYPE
SYNTAX INTEGER {master(1),slave(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the clock is in master mode or slave mode.
By default, the clock is in slave mode."
::= { hwCposEntry 11 }
hwCposIfType OBJECT-TYPE
SYNTAX INTEGER {stm1(1),stm16(2)}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates the interface type."
::= { hwCposEntry 12 }
hwCposFrameFormat OBJECT-TYPE
SYNTAX INTEGER {sonet(1),sdh(2)}