-
Notifications
You must be signed in to change notification settings - Fork 3
/
A3COM-HUAWEI-LswINF-MIB
executable file
·1428 lines (1261 loc) · 52.2 KB
/
A3COM-HUAWEI-LswINF-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) 2002 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: HUAWEI Lan Switch Interface Management MIB
-- Reference:
-- Version: V3.3
-- History:
-- V1.0 (1) Created by Zhangshilin, 2001.06.29
-- (2) Revised by Qizhenglin, 2002.01.08
-- V1.1 2004/7/20 Add PortList and VlanIndex define
-- V1.2 2004/8/05 Add hwifEthernetIsolate and hwIsolateGroupMax
-- by Chenshixing
-- V1.3 2004/9/08 add fabric value to hwifVLANType object and
-- change the DESCRIPTION by chenshixing
-- 2004/9/08 1.change the DESCRIPTION and the range of
-- SYNTAX INTEGER from (5..100) to (1..100)
-- in hwifMcastControl object by wangyingxia
-- 2.add the hwifPpsMcastControl object
-- by wangyingxia
-- 3.change the status in hwLswVlanMngObject
-- to current by gaolong
-- V1.4 2004-10-12 updated by gaolong
-- Import TEXTUAL-CONVENTION, OBJECT-IDENTITY, Unsigned32.
-- Relocate hwLswL2InfMib MODULE-IDENTITY clause.
-- Change SYNTAX clause type of VlanIndex from INTEGER to Unsigned32.
-- Change MAX-ACCESS clause vlaue of hwifClearStat and hwifEthernetTest
-- from write-only to read-write.
-- Change value of hwifAggregateModel, hwdot1qVlanType, hwVlanInterfaceFrameType
-- and hwifEthernetMdi from underscores to hyphens.
-- Change value of hwifMacAddrLearnMode, beginning with lowercase.
-- V1.5 2004-11-15
-- Add the object hwdot1qVlanBcastSuppressionPPS by lihaijun
-- Adjust the format of the description of hwdot1qVlanBroadcastSuppression
-- V1.6 2004-12-2
-- Add the object hwGlobalBroadcastMaxPps by zhanggang
-- Add the object hwGlobalBroadcastMaxRatio by zhanggang
-- Add hwifVlanVPNStatus and hwBpduTunnelStatus by caiqiang
-- Add hwVlanInterfaceIpMethod by wangchao
-- V1.7 2005-01-22
-- Remove the content of hwLswVlan from this mib to A3COM-HUAWEI-LswVLAN-MIB
-- Remove SnmpAdminString
-- V1.8 2005-2-2
-- Add the object hwifPpsBcastDisValControl by zhangjianwei
-- V1.9 2005-03-08
-- Add hwifUniSuppressionStep, hwifPpsUniSuppressionMax, hwifMulSuppressionStep,
-- hwifPpsMulSuppressionMax, hwifUniSuppression, hwifPpsUniSuppression,
-- hwifMulSuppression, hwifPpsMulSuppression by wanghaisheng
-- V2.0 2005-06-14
-- Add the object hwifComboActivePort by majun and adjust format
-- V2.1 2005-06-30
-- Add the object hwifVlanVPNUplinkStatus, hwifVlanVPNTPID,
-- hwVlanVPNTPIDMode and hwVlanVPNTPID by hejunwei
-- Add hwifUnknownPacketDropMul, hwifUnknownPacketDropUni by wangyupeng
-- Add hwifBMbpsMulSuppressionMax, hwifBMbpsMulSuppression,
-- hwifBKbpsMulSuppressionMax, hwifBKbpsMulSuppressionStep
-- and hwifBKbpsMulSuppression by lichunyan
-- Update decription of MIB objects by gaolong
-- V2.2 2005-09-05
-- Add the object hwifIsolateGroupID, hwifisUplinkPort,
-- hwPortIsolateGroupTable, hwPortIsolateGroupEntry,
-- hwPortIsolateGroupIndex, hwPortIsolateUplinkIfIndex,
-- hwPortIsolateGroupRowStatus by huzinan
-- V2.3 2005-10-13
-- Add the object hwPortIsolateGroupDescription by hejunwei
-- V2.4 2005-11-15
-- Add the value 24000M to hwifEthernetSpeed by wanglirong
-- V2.5 2006-01-16
-- Add hwMaxMacLearnRange by zhangyinfei
-- Change the DESCRIPTION and the range of hwMaxMacLearn by zhangyinfei
-- V2.6 2006-01-03
-- Remove the value range from the definition of hwifXXBasePortIndex
-- by wangzhaoyan
-- V2.7 2006-02-11
-- Modify description of hwifXXBasePortIndex and hwifXXDevPortIndex
-- Modify description of hwifHybridTaggedVlanListLow, hwifHybridTaggedVlanListHigh,
-- hwifHybridUnTaggedVlanListLow and hwifHybridUnTaggedVlanListHigh
-- Modify some wrong format of the description
-- V2.8 2006-03-14
-- Add hwifEthernetAutoSpeedMask, hwifEthernetAutoSpeed in
-- hwethernetTable and SpeedModeFlag definition by Jin Yongfeng.
-- V2.9 2006-04-24
-- Remove value range of hwifEthernetMTU by Chenxi.
-- V3.0 2006-04-30
-- Add hwifBMbpsUniSuppressionMax, hwifBMbpsUniSuppression,
-- hwifBKbpsUniSuppressionMax, hwifBKbpsUniSuppressionStep
-- and hwifBKbpsUniSuppression by lichunyan.
-- V3.1 2006-09-27
-- hwifComboActivePort is obsoleted in hwifXXTable.
-- hwifComboPortTable is added for combo interface.
-- hwifComboActivePort is replaced with hwifComboPortCurActive.
-- V3.2 2009-04-11
-- Add hwifOutPayloadOctets, hwifInPayloadOctets, hwifInErrorPktsRate,
-- hwifInPkts, hwifInNormalPkts, hwifOutPkts by lisong.
-- V3.3 2011-11-08
-- Add the value s40000M and s100000M to SpeedModeFlag and
-- hwifEthernetSpeed by xiedong.
-- ==================================================================
-- ==================================================================
--
-- Varibles and types be imported
--
-- ==================================================================
A3COM-HUAWEI-LswINF-MIB DEFINITIONS ::= BEGIN
IMPORTS
RowStatus, DisplayString, TruthValue, TEXTUAL-CONVENTION
FROM SNMPv2-TC
MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress, TimeTicks,
OBJECT-IDENTITY, Unsigned32
FROM SNMPv2-SMI
ifEntry, ifIndex
FROM RFC1213-MIB
lswCommon
FROM A3COM-HUAWEI-OID-MIB;
hwLswL2InfMib MODULE-IDENTITY
LAST-UPDATED "200106290000Z"
ORGANIZATION ""
CONTACT-INFO
""
DESCRIPTION
""
REVISION "200106290000Z"
DESCRIPTION
""
::= { lswCommon 5 }
-- =============================================================
-- Textual Conventions
-- =============================================================
PortList ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Each octet within this value specifies a set of eight
ports, with the first octet specifying ports 1 through
8, the second octet specifying ports 9 through 16, etc.
Within each octet, the most significant bit represents
the lowest numbered port, and the least significant bit
represents the highest numbered port. Thus, each port
of the bridge is represented by a single bit within the
value of this object. If that bit has a value of '1'
then that port is included in the set of ports; the port
is not included if its bit has a value of '0'."
SYNTAX OCTET STRING
VlanIndex ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"A value used to index per-VLAN tables: values of 0 and
4095 are not permitted; if the value is between 1 and
4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with
global scope within a given bridged domain (see VlanId
textual convention). If the value is greater than 4095
then it represents a VLAN with scope local to the
particular agent, i.e. one without a global VLAN-ID
assigned to it. Such VLANs are outside the scope of
IEEE 802.1Q but it is convenient to be able to manage them
in the same way using this MIB."
SYNTAX Unsigned32 (0..4294967295)
InterfaceIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A unique value, greater than zero, for each interface or
interface sub-layer in the managed system. It is
recommended that values are assigned contiguously starting
from 1. The value for each interface sub-layer must remain
constant at least from one re-initialization of the entity's
network management system to the next re-initialization."
SYNTAX Integer32
DropDirection ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Representing the direction of dropping packets, if applicable."
SYNTAX INTEGER {
disable (1),
enableInbound (2),
enableOutbound (3),
enableBoth (4)
}
SpeedModeFlag ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of Negotiable Speed mode."
SYNTAX BITS
{
s10M(0), -- 10M speed
s100M(1), -- 100M speed
s1000M(2), -- 1000M speed
s10000M(3), -- 10000M speed
s24000M(4), -- 24000M speed
s40000M(5), -- 40000M speed
s100000M(6) -- 100000M speed
}
-- ==================================================================
--
-- ======================= definition begin =========================
--
-- ==================================================================
hwLswExtInterface OBJECT IDENTIFIER ::= { lswCommon 1 }
hwifXXTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIfXXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Extended Huawei private interface information table."
::= { hwLswExtInterface 1 }
hwifXXEntry OBJECT-TYPE
SYNTAX HwIfXXEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Entries of extended Huawei private interface information table."
AUGMENTS { ifEntry }
::= { hwifXXTable 1}
HwIfXXEntry ::=
SEQUENCE {
hwifUnBoundPort TruthValue ,
hwifISPhyPort TruthValue ,
hwifAggregatePort TruthValue ,
hwifMirrorPort TruthValue ,
hwifVLANType INTEGER ,
hwifMcastControl INTEGER ,
hwifFlowControl TruthValue ,
hwifSrcMacControl TruthValue ,
hwifClearStat INTEGER,
hwifXXBasePortIndex INTEGER,
hwifXXDevPortIndex INTEGER,
hwifPpsMcastControl Integer32,
hwifPpsBcastDisValControl INTEGER,
hwifUniSuppressionStep Integer32,
hwifPpsUniSuppressionMax Integer32,
hwifMulSuppressionStep Integer32,
hwifPpsMulSuppressionMax Integer32,
hwifUniSuppression Integer32,
hwifPpsUniSuppression Integer32,
hwifMulSuppression Integer32,
hwifPpsMulSuppression Integer32,
hwifComboActivePort INTEGER,
hwifBMbpsMulSuppressionMax Integer32,
hwifBMbpsMulSuppression Integer32,
hwifBKbpsMulSuppressionMax Integer32,
hwifBKbpsMulSuppressionStep Integer32,
hwifBKbpsMulSuppression Integer32,
hwifUnknownPacketDropMul DropDirection,
hwifUnknownPacketDropUni DropDirection,
hwifBMbpsUniSuppressionMax Integer32,
hwifBMbpsUniSuppression Integer32,
hwifBKbpsUniSuppressionMax Integer32,
hwifBKbpsUniSuppressionStep Integer32,
hwifBKbpsUniSuppression Integer32,
hwifOutPayloadOctets Counter64,
hwifInPayloadOctets Counter64,
hwifInErrorPktsRate Integer32,
hwifInPkts Counter64,
hwifInNormalPkts Counter64,
hwifOutPkts Counter64
}
hwifUnBoundPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Whether it is the unbound port. (true indicates that the port is
the main port of the aggregation or the port does not participate
in the aggregation.)"
::= { hwifXXEntry 1 }
hwifISPhyPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Whether it is a physical interface."
::= { hwifXXEntry 2 }
hwifAggregatePort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Whether it is the aggregated port. (if the port participates
in the aggregation, this value is true.)"
::= { hwifXXEntry 3 }
hwifMirrorPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Whether it is a mirror port."
::= { hwifXXEntry 4 }
hwifVLANType OBJECT-TYPE
SYNTAX INTEGER
{
vLANTrunk (1),
access (2),
hybrid (3),
fabric (4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"port vlan types.
hybrid (3) port can carry multiple VLANs.
If fabric function is supported, fabric(4) means the port is
a fabric port."
::= { hwifXXEntry 5 }
hwifMcastControl OBJECT-TYPE
SYNTAX INTEGER (1..100)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Broadcast storm suppression with the step length of 1,
ranging from 1 to 100 percent.
In some products the step is 5, ranging from 5 to 100."
::= { hwifXXEntry 6 }
hwifFlowControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Flow control status."
::= { hwifXXEntry 7 }
hwifSrcMacControl OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Whether to filter by source MAC address."
::= { hwifXXEntry 8 }
hwifClearStat OBJECT-TYPE
SYNTAX INTEGER
{
clear(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Clear all port statistics. Read operation not supported."
::= { hwifXXEntry 9 }
hwifXXBasePortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index number of the port and the first port index of the
device is 1."
::= { hwifXXEntry 10 }
hwifXXDevPortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Device index of the port."
::= { hwifXXEntry 11 }
hwifPpsMcastControl OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The broadcast suppression with pps(packet per second) type.
The max value is determined by the port type and product."
::= { hwifXXEntry 12 }
hwifPpsBcastDisValControl OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Control the port's pps(packet per second) broadcast suppression.
When the port is enabled, its pps broadcast suppression value is the
global disperse value, and when disabled, it doesn't suppress broadcast."
::= { hwifXXEntry 13 }
hwifUniSuppressionStep OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The step of unicast suppression in ratio mode."
::= { hwifXXEntry 14 }
hwifPpsUniSuppressionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max pps(packet per second) value of unicast suppression
in pps mode."
::= { hwifXXEntry 15 }
hwifMulSuppressionStep OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The step of multicast suppression in ratio mode."
::= { hwifXXEntry 16 }
hwifPpsMulSuppressionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The max pps(packet per second) value of multicast suppression
in pps mode."
::= { hwifXXEntry 17 }
hwifUniSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unicast suppression with the ranging from 1 to 100 percent
in ratio mode.
The step is determined by hwifUniSuppressionStep."
::= { hwifXXEntry 18 }
hwifPpsUniSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unicast suppression in pps(packet per second) mode.
The max value is determined by hwifPpsUniSuppressionMax."
::= { hwifXXEntry 19 }
hwifMulSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The multicast suppression with ranging from 1 to 100 percent
in ratio mode.
The step is determined by hwifMulSuppressionStep."
::= { hwifXXEntry 20 }
hwifPpsMulSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The multicast suppression in pps(packet per second) mode.
The max pps value is determined by hwifPpsMulSuppressionMax."
::= { hwifXXEntry 21 }
hwifComboActivePort OBJECT-TYPE
SYNTAX INTEGER
{
fiber (1), -- Optical port
copper (2), -- Electrical port
na (3) -- Not applicable
}
MAX-ACCESS read-write
STATUS obsolete
DESCRIPTION "Active port on combo interface."
::= { hwifXXEntry 22 }
hwifBMbpsMulSuppressionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of the multicast suppression with bandwidth-based(Mbps)
that a port can be configured."
::= { hwifXXEntry 23 }
hwifBMbpsMulSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"With bandwidth-based multicast suppression, the bandwidth is measured
in Mbps.
The upper limit of the multicast suppession with bandwidth-based(Mbps)
is the value of hwifBMbpsMulSuppressionMax in the entry.
The default value of hwifBMbpsMulSuppression is the value of
hwifBMbpsMulSuppressionMax."
::= { hwifXXEntry 24 }
hwifBKbpsMulSuppressionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum value of the multicast suppression with bandwidth-based(Kbps)
that a port can be configured."
::= { hwifXXEntry 25 }
hwifBKbpsMulSuppressionStep OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The step of multicast suppression with bandwidth-based(Kbps)."
::= { hwifXXEntry 26 }
hwifBKbpsMulSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"With bandwidth-based multicast suppression, the bandwidth
is measured in Kbps.
The upper limit of the multicast suppession with bandwidth-based(Kbps)
is the value of hwifBKbpsMulSuppressionMax in the entry.
The value of hwifBKbpsMulSuppression must be multiple of the
value of hwifBKbpsMulSuppressionStep.
The default value of hwifBKbpsMulSuppression is the value of
hwifBKbpsMulSuppressionMax."
::= { hwifXXEntry 27 }
hwifUnknownPacketDropMul OBJECT-TYPE
SYNTAX DropDirection
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Control the port's unknown-multicast packets drop. When
inbound direction is enabled on this port, the port will
drop unknown-multicast packets in inbound direction. When
outbound direction is enabled on this port, the port will
drop unknown-multicast packets in outbound direction. When
both directions are enabled on this port, the port will
drop unknown-multicast packets in both inbound and outbound
directions."
DEFVAL { disable }
::= { hwifXXEntry 28 }
hwifUnknownPacketDropUni OBJECT-TYPE
SYNTAX DropDirection
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Control the port's unknown-unicast packets drop. When
inbound direction is enabled on this port, the port will
drop unknown-unicast packets in inbound direction. When
outbound direction is enabled on this port, the port will
drop unknown-unicast packets in outbound direction. When
both directions are enabled on this port, the port will
drop unknown-unicast packets in both inbound and outbound
directions."
DEFVAL { disable }
::= { hwifXXEntry 29 }
hwifBMbpsUniSuppressionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The maximum value of the unicast suppression with bandwidth-based
(Mbps) that a port can be configured."
::= { hwifXXEntry 30 }
hwifBMbpsUniSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "
With bandwidth-based Unicast suppression, the bandwidth is measured
in Mbps.
The upper limit of the unicast suppession with bandwidth-based(Mbps)
is the value of hwifBMbpsUniSuppressionMax in the entry.
The default value of hwifBMbpsUniSuppression is the value of
hwifBMbpsUniSuppressionMax."
::= { hwifXXEntry 31 }
hwifBKbpsUniSuppressionMax OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The maximum value of the unicast suppression with bandwidth-based
(Kbps) that a port can be configured."
::= { hwifXXEntry 32 }
hwifBKbpsUniSuppressionStep OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The step of unicast suppression with bandwidth-based(Kbps)."
::= { hwifXXEntry 33 }
hwifBKbpsUniSuppression OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION "
With bandwidth-based unicast suppression, the bandwidth
is measured in Kbps.
The upper limit of the unicast suppession with bandwidth-based(Kbps)
is the value of hwifBKbpsUniSuppressionMax in the entry.
The value of hwifBKbpsUniSuppression must be multiple of the
value of hwifBKbpsUniSuppressionStep.
The default value of hwifBKbpsUniSuppression is the value of
hwifBKbpsUniSuppressionMax."
::= { hwifXXEntry 34 }
hwifOutPayloadOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The actual output octets of the interface."
::= { hwifXXEntry 35 }
hwifInPayloadOctets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The actual input octets of the interface."
::= { hwifXXEntry 36 }
hwifInErrorPktsRate OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The rate of inbound error packets on the interface."
::= { hwifXXEntry 37 }
hwifInPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The number of packets received on the interface."
::= { hwifXXEntry 38 }
hwifInNormalPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The number of normal packets received on the interface."
::= { hwifXXEntry 39 }
hwifOutPkts OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION "
The number of packets sent on the interface."
::= { hwifXXEntry 40 }
hwifAggregateTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIfAggregateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port aggregation information table."
::= { hwLswExtInterface 2 }
hwifAggregateEntry OBJECT-TYPE
SYNTAX HwIfAggregateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Port aggregation information table."
INDEX { hwifAggregatePortIndex }
::= { hwifAggregateTable 1}
HwIfAggregateEntry ::=
SEQUENCE {
hwifAggregatePortIndex InterfaceIndex,
hwifAggregatePortName OCTET STRING,
hwifAggregatePortListPorts PortList,
hwifAggregateModel INTEGER,
hwifAggregateOperStatus RowStatus
}
hwifAggregatePortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index number of the main aggregated port."
::= { hwifAggregateEntry 1 }
hwifAggregatePortName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..40))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Aggregation group name."
::= { hwifAggregateEntry 2 }
hwifAggregatePortListPorts OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Portlist of a aggregating."
::= { hwifAggregateEntry 3 }
hwifAggregateModel OBJECT-TYPE
SYNTAX INTEGER
{
ingress (1),
both (2),
round-robin (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Load sharing mode for the port aggregation."
::= { hwifAggregateEntry 4 }
hwifAggregateOperStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Current operation status of the row."
::= { hwifAggregateEntry 5 }
-- ==================================================================
hwifHybridPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwifHybridPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Hybrid-port configuration table."
::= { hwLswExtInterface 3 }
hwifHybridPortEntry OBJECT-TYPE
SYNTAX HwifHybridPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Hybrid-port configuration table."
INDEX { hwifHybridPortIndex }
::= { hwifHybridPortTable 1}
HwifHybridPortEntry ::=
SEQUENCE {
hwifHybridPortIndex INTEGER,
hwifHybridTaggedVlanListLow OCTET STRING,
hwifHybridTaggedVlanListHigh OCTET STRING,
hwifHybridUnTaggedVlanListLow OCTET STRING,
hwifHybridUnTaggedVlanListHigh OCTET STRING
}
hwifHybridPortIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index number of Hybrid-port."
::= { hwifHybridPortEntry 1 }
hwifHybridTaggedVlanListLow OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Each octet within this value specifies a set of eight
VLANs, with the first octet specifying VLANs 1 through
8, the second octet specifying VLANs 9 through 16, etc.
Within each octet, the most significant bit represents
the highest numbered VLAN, and the least significant bit
represents the lowest numbered VLAN. Thus, each tagged VLAN
of the hybrid port is represented by a single bit within
the value of this object. If that bit has a value of '1'
then that VLAN is tagged in the set of VLANs; the VLAN
is not tagged if its bit has a value of '0'."
::= { hwifHybridPortEntry 2 }
hwifHybridTaggedVlanListHigh OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Each octet within this value specifies a set of eight
VLANs, with the first octet specifying VLANs 2049 through
2056, the second octet specifying VLANs 2057 through 2064,
etc. Within each octet, the most significant bit represents
the highest numbered VLAN, and the least significant bit
represents the lowest numbered VLAN. Thus, each tagged VLAN
of the hybrid port is represented by a single bit within
the value of this object. If that bit has a value of '1'
then that VLAN is tagged in the set of VLANs; the VLAN
is not tagged if its bit has a value of '0'."
::= { hwifHybridPortEntry 3 }
hwifHybridUnTaggedVlanListLow OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Each octet within this value specifies a set of eight
VLANs, with the first octet specifying VLANs 1 through
8, the second octet specifying VLANs 9 through 16, etc.
Within each octet, the most significant bit represents
the highest numbered VLAN, and the least significant bit
represents the lowest numbered VLAN. Thus, each untagged
VLAN of the hybrid port is represented by a single bit
within the value of this object. If that bit has a value
of '1' then that VLAN is untagged in the set of VLANs; the
VLAN is not untagged if its bit has a value of '0'."
::= { hwifHybridPortEntry 4 }
hwifHybridUnTaggedVlanListHigh OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(0..256))
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Each octet within this value specifies a set of eight
VLANs, with the first octet specifying VLANs 2049 through
2056, the second octet specifying VLANs 2057 through 2064,
etc. Within each octet, the most significant bit represents
the highest numbered VLAN, and the least significant bit
represents the lowest numbered VLAN. Thus, each untagged
VLAN of the hybrid port is represented by a single bit
within the value of this object. If that bit has a value of
'1' then that VLAN is untagged in the set of VLANs; the VLAN
is not untagged if its bit has a value of '0'."
::= { hwifHybridPortEntry 5 }
-- ==================== Combo port table ============================
hwifComboPortTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwifComboPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Combo-port table."
::= { hwLswExtInterface 4 }
hwifComboPortEntry OBJECT-TYPE
SYNTAX HwifComboPortEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The entry of hwifComboPortTable."
INDEX { hwifComboPortIndex }
::= { hwifComboPortTable 1}
HwifComboPortEntry ::=
SEQUENCE {
hwifComboPortIndex InterfaceIndex,
hwifComboPortCurActive INTEGER
}
hwifComboPortIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The combo-port interface index. Its value is the same as the value
of ifIndex in ifTable, but only includes indexes of the combo-port
interfaces."
::= { hwifComboPortEntry 1 }
hwifComboPortCurActive OBJECT-TYPE
SYNTAX INTEGER
{
fiber (1), -- Optical port
copper (2), -- Electrical port
na (3) -- Not applicable
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Current active interface of combo interfaces. The value 'fiber'
means the interface with fiber connector of the pair of combo-port
interfaces is active. The value 'copper' means the interface with
copper connector of the pair is active. The value 'na' means not
supported."
::= { hwifComboPortEntry 2 }
-- ========================l2========================================
hwLswL2InfMibObject OBJECT IDENTIFIER ::= { hwLswL2InfMib 1 }
hwSlotPortMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Max ports of the slots."
::= { hwLswL2InfMibObject 1 }
hwSwitchPortMax OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Max ports that this switch includes."
::= { hwLswL2InfMibObject 2 }
hwifVLANTrunkStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIfVLANTrunkStatusEntry
MAX-ACCESS not-accessible STATUS current
DESCRIPTION "Gvrp attributes on the VlanTrunk port."
::= { hwLswL2InfMibObject 3 }
hwifVLANTrunkStatusEntry OBJECT-TYPE
SYNTAX HwIfVLANTrunkStatusEntry
MAX-ACCESS not-accessible STATUS current
DESCRIPTION "Gvrp attributes on the VlanTrunk port."
INDEX { hwifVLANTrunkIndex }
::= { hwifVLANTrunkStatusTable 1}
HwIfVLANTrunkStatusEntry ::=
SEQUENCE {
hwifVLANTrunkIndex InterfaceIndex,
hwifVLANTrunkGvrpRegistration INTEGER,
hwifVLANTrunkPassListLow OCTET STRING,
hwifVLANTrunkPassListHigh OCTET STRING,
hwifVLANTrunkAllowListLow OCTET STRING,
hwifVLANTrunkAllowListHigh OCTET STRING
}
hwifVLANTrunkIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Index number of the VLANTrunk interface."
::= { hwifVLANTrunkStatusEntry 1 }
hwifVLANTrunkGvrpRegistration OBJECT-TYPE
SYNTAX INTEGER
{
normal (1),
fixed (2),
forbidden (3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"GVRP registration information
normal: This is the default configuration. Allow create, register
and unregister vlans dynamiclly at this port.
fixed: Aallow create and register vlan manually at this port.
Prevent from unregistering vlans or registering known
vlans of this port at another trunk port.
forbidden: Unregister all vlans but vlan 1, forbid to create or
register any other vlans at this port."
::= { hwifVLANTrunkStatusEntry 2 }
hwifVLANTrunkPassListLow OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Each octet within this value specifies a set of eight
VLANs, with the first octet specifying VLANs 1 through
8, the second octet specifying VLANs 9 through 16, etc.
Within each octet, the most significant bit represents
the highest numbered VLAN, and the least significant bit
represents the lowest numbered VLAN. Thus, each actually
passed VLAN of the trunk port is represented by a single
bit within the value of this object. If that bit has a
value of '1' then that VLAN is actually passed in the set
of VLANs; the VLAN is not actually passed if its bit has
a value of '0'."
::= { hwifVLANTrunkStatusEntry 4 }
hwifVLANTrunkPassListHigh OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Each octet within this value specifies a set of eight
VLANs, with the first octet specifying VLANs 2049 through
2056, the second octet specifying VLANs 2057 through 2064,
etc. Within each octet, the most significant bit represents
the highest numbered VLAN, and the least significant bit
represents the lowest numbered VLAN. Thus, each actually
passed VLAN of the trunk port is represented by a single
bit within the value of this object. If that bit has a
value of '1' then that VLAN is actually passed in the set
of VLANs; the VLAN is not actually passed if its bit has
a value of '0'."
::= { hwifVLANTrunkStatusEntry 5 }
hwifVLANTrunkAllowListLow OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS current