-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathA3COM-HUAWEI-LswQos-MIB
3987 lines (3558 loc) · 111 KB
/
A3COM-HUAWEI-LswQos-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
-- ------------------------------------------------------------------
-- Descripton: Huawei-3com draft for Lan Switch Qos MIB
--
-- History V2.3
-- V1.0 2002-11-18 created by qizhenglin
-- V1.1 2004-05-09 add and modify hwPortWredTable by tangshun
-- V1.2 2004-08-05 modify hwQueueScheduleMode(add hq_wrr(9)) by qizhenglin
-- v1.3 2004-08-12 add hwFlowtempVlanId,hwFlowtempCos to hwFlowtempTable
-- v1.4 2004-09-17 change value range of hwRateLimitTargetRateKbps from 200..100000
-- to 64..1000000 by zhuangyu
-- v1.5 2004-10-12 updated by gaolong
-- Import Counter64.
-- Remove some adjacent hyphens
-- Rewrite value of hwQueueScheduleMode and hwRateLimitConformActionType.
-- Change all underscore('_') characters to hyphen characters('-') because
-- underscore character is not allowed in MIB module.
-- v1.51 2004-10-27 changed by zhuangyu
-- 1 Add an enumeration in hwRateLimitConformActionType
-- 2 Add hwRateLimitConformCos and hwRateLimitConformDscp in hwRateLimitTable
-- 3 Import IpAddress
-- v1.52 2004-12-13 updated by jinyi
-- Fix syntax bugs and adjust format of the whole file.
-- v1.53 2004-12-13 updated by zhuangyu
-- Modify description of hwRateLimitExceedDscp,hwRateLimitConformDscp and hwPriorityDscp.
-- v1.6 2004-12-1 changed by yangjianjun
-- Add hwMirroringGroupTable
-- hwMirroringGroupMirrorTable
-- hwMirroringGroupMonitorTable
-- hwMirroringGroupReflectorTable
-- hwMirroringGroupRprobeVlanTable
-- v1.7 2005-4-6 changed by fanghailin
-- Add hwRedirectToSlotNo hwRedirectRemarkedDSCP hwRedirectRemarkedPri hwRedirectRemarkedTos
-- hwRedirectToNextHop3 hwRedirectTargetVlan hwRedirectMode
-- in hwRedirectTable Notice:All the nodes are used only for L3plus funtion and speciality.
-- v1.8 2005-5-18 updated by zhangyinxi
-- Add hwRedirectToNestedVlanID and hwRedirectToModifiedVlanID
-- v1.9 2005-6-27
-- 1. Add hwMirroringGroupMirrorMacTable, hwMirroringGroupMirrorVlanTable,
-- hwPortTrustTable, hwRemarkVlanIDTable, hwCosToDscpMapTable, hwDscpToLocalPreMapTable,
-- hwDscpToDropPreMapTable, hwDscpToCosMapTable, hwDscpToDscpMapTable,
-- hwRateLimitMeterStatByteCount, hwRateLimitMeterStatByteXCount,
-- hwRateLimitMeterStatState by liyan and wangyingxia
-- 2. Modify the range of hwRateLimitTargetRateKbps by liyan and wangyingxia
-- 3. Add hwMirrorToGroup in hwMirrorTable by yubin
-- v2.0 2005-10-25 updated by houli
-- 1. Remove value range of hwLineRateValue
-- 2. Remove value range of hwRateLimitTargetRateMbps
-- V2.1 2005-11-07 update by wangyingxia
-- 1. Add HwMirrorOrMonitorType and hwMirroringGroupMonitorType
-- 2. Modify the description of hwMirroringGroupMonitorIfIndex
-- 3. Change the value range of hwRedirectTargetVlan by lihaijun
-- V2.2 2005-12-19 update by wangyingxia
-- 1. Add hwMirroringGroupMirrorInTypeList, hwMirroringGroupMirrorOutTypeList
-- by wangyingxia
-- 2. change the description of hwMirroringGroupMirrorInboundIfIndexList
-- add hwMirroringGroupMirrorOutboundIfIndexList by wangyingxia
-- v2.3 2006-01-16 updated by houli
-- 1. Remove value range of hwTrafficShapeMaxRate
-- 2. Remove value range of hwTrafficShapeBurstSize
-- ------------------------------------------------------------------
-- ------------------------------------------------------------------
--
-- Import and definition
--
-- ------------------------------------------------------------------
A3COM-HUAWEI-LswQos-MIB DEFINITIONS ::= BEGIN
IMPORTS
Integer32, MODULE-IDENTITY,OBJECT-TYPE,Counter32, Counter64,IpAddress
FROM SNMPv2-SMI
TruthValue, MacAddress, RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC
lswCommon
FROM A3COM-HUAWEI-OID-MIB;
---------- Following is for Node£ºhwLswQosMib --------
hwLswQosAclMib MODULE-IDENTITY
LAST-UPDATED "200211190000Z"
ORGANIZATION "HUAWEI LANSWITCH"
CONTACT-INFO
"huawei beiyan"
DESCRIPTION
"Module node for qos and acl."
REVISION "200211190000Z"
DESCRIPTION
"Table of qos and acl."
::= { lswCommon 16 }
HwMirrorOrMonitorType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
Specify the mirror source or destination type.
port(1):
the mirror source or destination is port.
board(2):
the mirror source or destination is board.
"
SYNTAX INTEGER
{
port(1),
board(2)
}
---------- Following is for Node£ºhwLswQosMibObject --------
hwLswQosMibObject OBJECT IDENTIFIER ::= { hwLswQosAclMib 2 }
hwPriorityTrustMode OBJECT-TYPE
SYNTAX INTEGER
{
default(0),
dscp(1),
ipprecedence(2),
cos(3),
localprecedence(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Priority type of inbound queue."
DEFVAL { 0}
::= { hwLswQosMibObject 1 }
hwPortMonitorBothIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ifIndex of in/out monitor port."
DEFVAL { 0}
::= { hwLswQosMibObject 2 }
--TABLE: hwQueueTable
hwQueueTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Queue table which contains queue entry."
::= { hwLswQosMibObject 3 }
hwQueueEntry OBJECT-TYPE
SYNTAX HwQueueEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information of queue."
INDEX {
hwQueueIfIndex
}
::= { hwQueueTable 1 }
HwQueueEntry ::=
SEQUENCE
{
hwQueueIfIndex INTEGER,
hwQueueScheduleMode INTEGER,
hwQueueWeight1 INTEGER,
hwQueueWeight2 INTEGER,
hwQueueWeight3 INTEGER,
hwQueueWeight4 INTEGER,
hwQueueMaxDelay INTEGER,
hwQueueWeight5 INTEGER,
hwQueueWeight6 INTEGER,
hwQueueWeight7 INTEGER,
hwQueueWeight8 INTEGER
}
hwQueueIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ifIndex of port."
::= { hwQueueEntry 1 }
hwQueueScheduleMode OBJECT-TYPE
SYNTAX INTEGER{
sp(1),
wrr(2),
wrr-max-delay(3),
sc-0(4),
sc-1(5),
sc-2(6),
rr(7),
wfq(8),
hq-wrr(9)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The mode of the queue schedule."
DEFVAL { sp }
::= { hwQueueEntry 2 }
hwQueueWeight1 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight1 represent the bandwidth of queue 1.
If queue mode is wrr, then hwQueueWeight1 represent the weight of queue 1."
::= { hwQueueEntry 3 }
hwQueueWeight2 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight2 represent the bandwidth of queue 2.
If queue mode is wrr, then hwQueueWeight2 represent the weight of queue 2."
::= { hwQueueEntry 4 }
hwQueueWeight3 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight3 represent the bandwidth of queue 3.
If queue mode is wrr, then hwQueueWeight3 represent the weight of queue 3."
::= { hwQueueEntry 5 }
hwQueueWeight4 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight4 represent the bandwidth of queue 4.
If queue mode is wrr, then hwQueueWeight4 represent the weight of queue 4."
::= { hwQueueEntry 6 }
hwQueueMaxDelay OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
" "
::= { hwQueueEntry 7 }
hwQueueWeight5 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight5 represent the bandwidth of queue 5.
If queue mode is wrr, then hwQueueWeight5 represent the weight of queue 5."
::= { hwQueueEntry 8 }
hwQueueWeight6 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight6 represent the bandwidth of queue 6.
If queue mode is wrr, then hwQueueWeight6 represent the weight of queue 6."
::= { hwQueueEntry 9 }
hwQueueWeight7 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight7 represent the bandwidth of queue 7.
If queue mode is wrr, then hwQueueWeight7 represent the weight of queue 7."
::= { hwQueueEntry 10 }
hwQueueWeight8 OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"If queue mode is wfq, then hwQueueWeight8 represent the bandwidth of queue 8.
If queue mode is wrr, then hwQueueWeight8 represent the weight of queue 8."
::= { hwQueueEntry 11 }
-- TABLE: hwRateLimitTable ------
hwRateLimitTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRateLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Rate limit table which contains limit entry. "
::= { hwLswQosMibObject 4 }
hwRateLimitEntry OBJECT-TYPE
SYNTAX HwRateLimitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information of the rate-limited port."
INDEX {
hwRateLimitAclIndex,
hwRateLimitIfIndex,
hwRateLimitVlanID,
hwRateLimitDirection
}
::= { hwRateLimitTable 1 }
HwRateLimitEntry ::=
SEQUENCE
{
hwRateLimitAclIndex INTEGER,
hwRateLimitIfIndex INTEGER,
hwRateLimitVlanID INTEGER,
hwRateLimitDirection INTEGER,
hwRateLimitUserAclNum INTEGER,
hwRateLimitUserAclRule INTEGER,
hwRateLimitIpAclNum INTEGER,
hwRateLimitIpAclRule INTEGER,
hwRateLimitLinkAclNum INTEGER,
hwRateLimitLinkAclRule INTEGER,
hwRateLimitTargetRateMbps INTEGER,
hwRateLimitTargetRateKbps INTEGER,
hwRateLimitPeakRate INTEGER,
hwRateLimitCIR INTEGER,
hwRateLimitCBS INTEGER,
hwRateLimitEBS INTEGER,
hwRateLimitPIR INTEGER,
hwRateLimitConformLocalPre INTEGER,
hwRateLimitConformActionType INTEGER,
hwRateLimitExceedActionType INTEGER,
hwRateLimitExceedDscp INTEGER,
hwRateLimitRuntime TruthValue,
hwRateLimitRowStatus RowStatus,
hwRateLimitExceedCos INTEGER,
hwRateLimitConformCos INTEGER,
hwRateLimitConformDscp INTEGER,
hwRateLimitMeterStatByteCount Counter64,
hwRateLimitMeterStatByteXCount Counter64,
hwRateLimitMeterStatState INTEGER
}
hwRateLimitAclIndex OBJECT-TYPE
SYNTAX INTEGER(0..2999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of acl rule."
::= { hwRateLimitEntry 1 }
hwRateLimitIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ifIndex of the rate-limited port."
::= { hwRateLimitEntry 2 }
hwRateLimitVlanID OBJECT-TYPE
SYNTAX INTEGER(0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Vlan ID."
::= { hwRateLimitEntry 3 }
hwRateLimitDirection OBJECT-TYPE
SYNTAX INTEGER{invalid(0), input(1), output(2)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Direction of the rate-limited port."
::= { hwRateLimitEntry 4 }
hwRateLimitUserAclNum OBJECT-TYPE
SYNTAX INTEGER(0|5000..5999|10000..12999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of user acl."
::= { hwRateLimitEntry 5 }
hwRateLimitUserAclRule OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of user acl-rule."
::= { hwRateLimitEntry 6 }
hwRateLimitIpAclNum OBJECT-TYPE
SYNTAX INTEGER(0|2000..3999|10000..12999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of Ip acl."
::= { hwRateLimitEntry 7 }
hwRateLimitIpAclRule OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of Ip acl-rule."
::= { hwRateLimitEntry 8 }
hwRateLimitLinkAclNum OBJECT-TYPE
SYNTAX INTEGER(0|4000..4999|10000..12999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of link acl."
::= { hwRateLimitEntry 9 }
hwRateLimitLinkAclRule OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of link acl-rule."
::= { hwRateLimitEntry 10 }
hwRateLimitTargetRateMbps OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Target rate: Mbps."
::= { hwRateLimitEntry 11 }
hwRateLimitTargetRateKbps OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Target rate: Kbps."
::= { hwRateLimitEntry 12 }
hwRateLimitPeakRate OBJECT-TYPE
SYNTAX INTEGER(0|64..8388608)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Peak rate of the rate-limited port."
::= { hwRateLimitEntry 13 }
hwRateLimitCIR OBJECT-TYPE
SYNTAX INTEGER(0..34120000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"CIR of the rate-limited port."
::= { hwRateLimitEntry 14 }
hwRateLimitCBS OBJECT-TYPE
SYNTAX INTEGER(0..1048575)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Burst traffic of the rate-limited port."
::= { hwRateLimitEntry 15 }
hwRateLimitEBS OBJECT-TYPE
SYNTAX INTEGER(0..268435455)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Excess burst traffic of the rate-limited port."
::= { hwRateLimitEntry 16 }
hwRateLimitPIR OBJECT-TYPE
SYNTAX INTEGER(0..34120000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"PIR of the rate-limited port."
::= { hwRateLimitEntry 17 }
hwRateLimitConformLocalPre OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Conform local pre."
DEFVAL { 1 }
::= { hwRateLimitEntry 18 }
hwRateLimitConformActionType OBJECT-TYPE
SYNTAX INTEGER{
invalid(0),
remark-cos(1),
remark-drop-priority(2),
remark-cos-drop-priority(3),
remark-policed-service(4),
remark-dscp(5)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Conform action type."
DEFVAL { 1 }
::= { hwRateLimitEntry 19 }
hwRateLimitExceedActionType OBJECT-TYPE
SYNTAX INTEGER{invalid(0), forward(1), drop(2), remarkdscp(3), exceed-cos(4)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Exceed action type."
DEFVAL { 1 }
::= { hwRateLimitEntry 20 }
hwRateLimitExceedDscp OBJECT-TYPE
SYNTAX INTEGER(0..63|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Exceed DSCP.
<0-63> Value of DSCP
af11 Specify Assured Forwarding 11 service(10)
af12 Specify Assured Forwarding 12 service(12)
af13 Specify Assured Forwarding 13 service(14)
af21 Specify Assured Forwarding 21 service(18)
af22 Specify Assured Forwarding 22 service(20)
af23 Specify Assured Forwarding 23 service(22)
af31 Specify Assured Forwarding 31 service(26)
af32 Specify Assured Forwarding 32 service(28)
af33 Specify Assured Forwarding 33 service(30)
af41 Specify Assured Forwarding 41 service(34)
af42 Specify Assured Forwarding 42 service(36)
af43 Specify Assured Forwarding 43 service(38)
be Specify Best Effort service(0)
cs1 Specify Class Selector 1 service(8)
cs2 Specify Class Selector 2 service(16)
cs3 Specify Class Selector 3 service(24)
cs4 Specify Class Selector 4 service(32)
cs5 Specify Class Selector 5 service(40)
cs6 Specify Class Selector 6 service(48)
cs7 Specify Class Selector 7 service(56)
ef Specify Expedited Forwarding service(46)"
DEFVAL { 255 }
::= { hwRateLimitEntry 21 }
hwRateLimitRuntime OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Runtime."
::= { hwRateLimitEntry 22 }
hwRateLimitRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, now support three status: createAndGo, active, destroy."
::= { hwRateLimitEntry 23 }
hwRateLimitExceedCos OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Exceeding COS of rate-limited port."
DEFVAL { 255 }
::= { hwRateLimitEntry 24 }
hwRateLimitConformCos OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the user choose remark-cos value of the hwRateLimitConformActionType,
This object can be used to set the conform COS value. There are a few
enumerations as follows:
background Specify background priority(1)
best-effort Specify best-effort priority(0)
controlled-load Specify controlled-load priority(4)
excellent-effort Specify excellent-effort priority(3)
network-management Specify network-management priority(7)
spare Specify spare priority(2)
video Specify video priority(5)
voice Specify voice priority(6)"
DEFVAL { 255 }
::= { hwRateLimitEntry 25 }
hwRateLimitConformDscp OBJECT-TYPE
SYNTAX INTEGER(0..63|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the user choose remark-dscp value of the hwRateLimitConformActionType,
This object can be used to set the conform dscp value. There are a few
enumerations as follows:
<0-63> Value of DSCP
af11 Specify Assured Forwarding 11 service(10)
af12 Specify Assured Forwarding 12 service(12)
af13 Specify Assured Forwarding 13 service(14)
af21 Specify Assured Forwarding 21 service(18)
af22 Specify Assured Forwarding 22 service(20)
af23 Specify Assured Forwarding 23 service(22)
af31 Specify Assured Forwarding 31 service(26)
af32 Specify Assured Forwarding 32 service(28)
af33 Specify Assured Forwarding 33 service(30)
af41 Specify Assured Forwarding 41 service(34)
af42 Specify Assured Forwarding 42 service(36)
af43 Specify Assured Forwarding 43 service(38)
be Specify Best Effort service(0)
cs1 Specify Class Selector 1 service(8)
cs2 Specify Class Selector 2 service(16)
cs3 Specify Class Selector 3 service(24)
cs4 Specify Class Selector 4 service(32)
cs5 Specify Class Selector 5 service(40)
cs6 Specify Class Selector 6 service(48)
cs7 Specify Class Selector 7 service(56)
ef Specify Expedited Forwarding service(46)"
DEFVAL { 255 }
::= { hwRateLimitEntry 26 }
hwRateLimitMeterStatByteCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter of conform byte."
::= { hwRateLimitEntry 27 }
hwRateLimitMeterStatByteXCount OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter of exceed byte."
::= { hwRateLimitEntry 28 }
hwRateLimitMeterStatState OBJECT-TYPE
SYNTAX INTEGER
{
set(1), --enable meter statistic
unDo(2), --undo meter statistic
reset(3), --reset meter statistic
running(4), --status of meter statistic running
notRunning(5) --status of meter statistic not running
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of meter statistic."
::= { hwRateLimitEntry 29 }
-- TABLE: hwPriorityTable ------
hwPriorityTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwPriorityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The priority table which contains priority entry."
::= { hwLswQosMibObject 5 }
hwPriorityEntry OBJECT-TYPE
SYNTAX HwPriorityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The configuration information of priority."
INDEX {
hwPriorityAclIndex,
hwPriorityIfIndex,
hwPriorityVlanID,
hwPriorityDirection
}
::= { hwPriorityTable 1 }
HwPriorityEntry ::=
SEQUENCE
{
hwPriorityAclIndex INTEGER,
hwPriorityIfIndex INTEGER,
hwPriorityVlanID INTEGER,
hwPriorityDirection INTEGER,
hwPriorityUserAclNum INTEGER,
hwPriorityUserAclRule INTEGER,
hwPriorityIpAclNum INTEGER,
hwPriorityIpAclRule INTEGER,
hwPriorityLinkAclNum INTEGER,
hwPriorityLinkAclRule INTEGER,
hwPriorityDscp INTEGER,
hwPriorityIpPre INTEGER,
hwPriorityIpPreFromCos TruthValue,
hwPriorityCos INTEGER,
hwPriorityCosFromIpPre TruthValue,
hwPriorityLocalPre INTEGER,
hwPriorityPolicedServiceType INTEGER,
hwPriorityPolicedServiceDscp INTEGER,
hwPriorityPolicedServiceExp INTEGER,
hwPriorityPolicedServiceCos INTEGER,
hwPriorityPolicedServiceLoaclPre INTEGER,
hwPriorityPolicedServiceDropPriority INTEGER,
hwPriorityRuntime TruthValue,
hwPriorityRowStatus RowStatus
}
hwPriorityAclIndex OBJECT-TYPE
SYNTAX INTEGER(0..2999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of acl rule."
::= { hwPriorityEntry 1 }
hwPriorityIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ifIndex of the port."
::= { hwPriorityEntry 2 }
hwPriorityVlanID OBJECT-TYPE
SYNTAX INTEGER(0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Vlan ID."
::= { hwPriorityEntry 3 }
hwPriorityDirection OBJECT-TYPE
SYNTAX INTEGER{invalid(0), input(1), output(2)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Direction of data stream."
::= { hwPriorityEntry 4 }
hwPriorityUserAclNum OBJECT-TYPE
SYNTAX INTEGER(0|5000..5999|10000..12999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of user acl."
::= { hwPriorityEntry 5 }
hwPriorityUserAclRule OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The subitem of the user acl."
::= { hwPriorityEntry 6 }
hwPriorityIpAclNum OBJECT-TYPE
SYNTAX INTEGER(0|2000..3999|10000..12999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of Ip acl."
::= { hwPriorityEntry 7 }
hwPriorityIpAclRule OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The subitem of the IP acl."
::= { hwPriorityEntry 8 }
hwPriorityLinkAclNum OBJECT-TYPE
SYNTAX INTEGER(0|4000..4999|10000..12999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of Link acl."
::= { hwPriorityEntry 9 }
hwPriorityLinkAclRule OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The subitem of the link acl."
::= { hwPriorityEntry 10 }
hwPriorityDscp OBJECT-TYPE
SYNTAX INTEGER(0..63|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set DSCP Value.
<0-63> Value of DSCP
af11 Specify Assured Forwarding 11 service(10)
af12 Specify Assured Forwarding 12 service(12)
af13 Specify Assured Forwarding 13 service(14)
af21 Specify Assured Forwarding 21 service(18)
af22 Specify Assured Forwarding 22 service(20)
af23 Specify Assured Forwarding 23 service(22)
af31 Specify Assured Forwarding 31 service(26)
af32 Specify Assured Forwarding 32 service(28)
af33 Specify Assured Forwarding 33 service(30)
af41 Specify Assured Forwarding 41 service(34)
af42 Specify Assured Forwarding 42 service(36)
af43 Specify Assured Forwarding 43 service(38)
be Specify Best Effort service(0)
cs1 Specify Class Selector 1 service(8)
cs2 Specify Class Selector 2 service(16)
cs3 Specify Class Selector 3 service(24)
cs4 Specify Class Selector 4 service(32)
cs5 Specify Class Selector 5 service(40)
cs6 Specify Class Selector 6 service(48)
cs7 Specify Class Selector 7 service(56)
ef Specify Expedited Forwarding service(46)"
DEFVAL { 255 }
::= { hwPriorityEntry 11 }
hwPriorityIpPre OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set Ip precedence."
DEFVAL { 255 }
::= { hwPriorityEntry 12 }
hwPriorityIpPreFromCos OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set Ip precedence according to vlan priority."
DEFVAL { 2 }
::= { hwPriorityEntry 13 }
hwPriorityCos OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set vlan priority."
DEFVAL { 255 }
::= { hwPriorityEntry 14 }
hwPriorityCosFromIpPre OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set vlan priority according to IP precedence."
DEFVAL { 2 }
::= { hwPriorityEntry 15 }
hwPriorityLocalPre OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Set local precedence."
DEFVAL { 255 }
::= { hwPriorityEntry 16 }
hwPriorityPolicedServiceType OBJECT-TYPE
SYNTAX INTEGER{invalid(0), auto(1), trust-dscp(2), new-dscp(3), untrusted(4)}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service type of proliced Priority."
::= { hwPriorityEntry 17 }
hwPriorityPolicedServiceDscp OBJECT-TYPE
SYNTAX INTEGER(0..63|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service Dscp of proliced Priority."
DEFVAL { 255 }
::= { hwPriorityEntry 18 }
hwPriorityPolicedServiceExp OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service Exp of proliced Priority."
DEFVAL { 255 }
::= { hwPriorityEntry 19 }
hwPriorityPolicedServiceCos OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service COS of proliced Priority."
DEFVAL { 255 }
::= { hwPriorityEntry 20 }
hwPriorityPolicedServiceLoaclPre OBJECT-TYPE
SYNTAX INTEGER(0..7|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service local pre of proliced Priority."
DEFVAL { 255 }
::= { hwPriorityEntry 21 }
hwPriorityPolicedServiceDropPriority OBJECT-TYPE
SYNTAX INTEGER(0..2|255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The service drop priority of proliced Priority."
DEFVAL { 255 }
::= { hwPriorityEntry 22 }
hwPriorityRuntime OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Is run or not."
::= { hwPriorityEntry 23 }
hwPriorityRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus, now support three status: createAndGo, active, destroy."
::= { hwPriorityEntry 24 }
-- TABLE: hwRedirectTable ------
hwRedirectTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwRedirectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Redirect table which contains rediect entry."
::= { hwLswQosMibObject 6 }
hwRedirectEntry OBJECT-TYPE
SYNTAX HwRedirectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Configuration information of redirection."
INDEX {
hwRedirectAclIndex,
hwRedirectIfIndex,
hwRedirectVlanID,
hwRedirectDirection
}
::= { hwRedirectTable 1 }
HwRedirectEntry ::=
SEQUENCE
{
hwRedirectAclIndex INTEGER,
hwRedirectIfIndex INTEGER,
hwRedirectVlanID INTEGER,
hwRedirectDirection INTEGER,
hwRedirectUserAclNum INTEGER,
hwRedirectUserAclRule INTEGER,
hwRedirectIpAclNum INTEGER,
hwRedirectIpAclRule INTEGER,
hwRedirectLinkAclNum INTEGER,
hwRedirectLinkAclRule INTEGER,
hwRedirectToCpu TruthValue,
hwRedirectToIfIndex INTEGER,
hwRedirectToNextHop1 IpAddress,
hwRedirectToNextHop2 IpAddress,
hwRedirectRuntime TruthValue,
hwRedirectRowStatus RowStatus,
hwRedirectToSlotNo INTEGER,
hwRedirectRemarkedDSCP INTEGER,
hwRedirectRemarkedPri INTEGER,
hwRedirectRemarkedTos INTEGER,
hwRedirectToNextHop3 IpAddress,
hwRedirectTargetVlanID INTEGER,
hwRedirectMode INTEGER,
hwRedirectToNestedVlanID Integer32,
hwRedirectToModifiedVlanID Integer32
}
hwRedirectAclIndex OBJECT-TYPE
SYNTAX INTEGER(0..2999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Index of acl rule."
::= { hwRedirectEntry 1 }
hwRedirectIfIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"ifIndex of port."
::= { hwRedirectEntry 2 }
hwRedirectVlanID OBJECT-TYPE
SYNTAX INTEGER(0..4094)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Vlan ID."
::= { hwRedirectEntry 3 }