forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-CBQOS-MIB
executable file
·4104 lines (3642 loc) · 142 KB
/
A3COM-HUAWEI-CBQOS-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) 2004 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description:This mib file is used for management of huawei Class Based
-- QoS information.
-- Reference:
-- Version: V1.8
-- History:
-- V1.0 tianli,2004.4.10,publish
-- V1.1 lizhiyong, 2004-9-14
-- modify the hyphens which is not allowed used in SMIv2
-- v1.2 changed by gaolong
-- replace chinese characters in this file with english characters
-- move MODULE-IDENTITY after IMPORTS CLAUSE
-- changed by yangjianjun
-- change description of hwCBQoSMatchRuleIntValue1 and hwCBQoSMatchRuleIntValue2
-- changed by wanghao
-- add an object hwCBQoSQueueCbsRatio
-- v1.3 changed by liguanmin,2004-12-23.
-- added two values in the node hwCBQoSMatchRuleType of the hwCBQoSMatchRuleCfgInfoTable.
-- this two values are typeMatchDe,typeMatchClp.
-- V1.4 2005-04-15 modify description of hwCBQoSMatchRuleStringValue by tangshun.
-- V1.5 2005-05-23 add hwCBQoSFrPvcClassAverageRate, hwCBQoSAtmPvcClassAverageRate,
-- and hwCBQoSIfClassAverageRate by dongjun.
-- V1.6 2005-08-11 add enum value 25 for MatchRuleType,
-- modify description of hwCBQoSMatchRuleType and hwCBQoSMatchRuleStringValue
-- by dongjun.
-- update file format by gaolong
-- V1.7 2006-05-18 modified by haochunbo
-- Add an enumeration unitRemainPercent for QueueBandwidthUnit.
-- Modify the description of hwCBQoSQueueBandwidthUnit and hwCBQoSQueueBandwidthValue.
-- V1.8 2007-05-23 modified by huguohua
-- Add LrCirUnit, hwCBQoSNestPolicyCfgInfoTable, hwCBQoSLrCfgInfoTable,
-- hwCBQoSIfLrRunInfoTable, hwCBQoSAtmPvcLrRunInfoTable, hwCBQoSFrPvcLrRunInfoTable
-- ==========================================================================
A3COM-HUAWEI-CBQOS-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwQoS
FROM A3COM-HUAWEI-OID-MIB
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
IpAddress, Integer32, Counter32, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY,
Counter64
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus, DisplayString, MacAddress
FROM SNMPv2-TC;
hwCBQoSMIB MODULE-IDENTITY
LAST-UPDATED "200404100000Z" -- April 10, 2004 at 00:00 GMT
ORGANIZATION
"Huawei Technologies co.,Ltd."
CONTACT-INFO
" R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com "
DESCRIPTION
"The A3COM-HUAWEI-CBQOS-MIB contains objects to
Manage configuration and Monitor running state
for Class Based QoS feature.
*********************************
MIB Tables
**********************************
This MIB consists of the following tables:
1 : hwCBQoSClassifierCfgInfoTable
2 : hwCBQoSMatchRuleCfgInfoTable
3 : hwCBQoSBehaviorCfgInfoTable
4 : hwCBQoSCarCfgInfoTable
5 : hwCBQoSGtsCfgInfoTable
6 : hwCBQoSRemarkCfgInfoTable
7 : hwCBQoSQueueCfgInfoTable
8 : hwCBQoSWredCfgInfoTable
9 : hwCBQoSWredClassCfgInfoTable
10: hwCBQoSPolicyRouteCfgInfoTable
11: hwCBQoSNatCfgInfoTable
12: hwCBQoSFirewallCfgInfoTable
13: hwCBQoSSamplingCfgInfoTable
14: hwCBQoSPolicyCfgInfoTable
15: hwCBQoSPolicyClassCfgInfoTable
16: hwCBQoSIfApplyPolicyTable
17: hwCBQoSAtmPvcApplyPolicyTable
18: hwCBQoSIfVlanApplyPolicyTable
19: hwCBQoSFrClassApplyPolicyTable
20: hwCBQoSFrPvcApplyPolicyTable
21: hwCBQoSIfCbqRunInfoTable
22: hwCBQoSIfClassMatchRunInfoTable
23: hwCBQoSIfCarRunInfoTable
24: hwCBQoSIfGtsRunInfoTable
25: hwCBQoSIfRemarkRunInfoTable
26: hwCBQoSIfQueueRunInfoTable
27: hwCBQoSIfWredRunInfoTable
28: hwCBQoSAtmPvcCbqRunInfoTable
29: hwCBQoSAtmPvcClassMatchRunInfoTable
30: hwCBQoSAtmPvcCarRunInfoTable
31: hwCBQoSAtmPvcGtsRunInfoTable
32: hwCBQoSAtmPvcRemarkRunInfoTable
33: hwCBQoSAtmPvcQueueRunInfoTable
34: hwCBQoSAtmPvcWredRunInfoTable
35: hwCBQoSFrPvcCbqRunInfoTable
36: hwCBQoSFrPvcClassMatchRunInfoTable
37: hwCBQoSFrPvcCarRunInfoTable
38: hwCBQoSFrPvcGtsRunInfoTable
39: hwCBQoSFrPvcRemarkRunInfoTable
40: hwCBQoSFrPvcQueueRunInfoTable
41: hwCBQoSFrPvcWredRunInfoTable
42: hwCBQoSIfVlanClassMatchRunInfoTable
Software QoS supports the following tables:
1 : hwCBQoSClassifierCfgInfoTable
2 : hwCBQoSMatchRuleCfgInfoTable
3 : hwCBQoSBehaviorCfgInfoTable
4 : hwCBQoSCarCfgInfoTable
5 : hwCBQoSGtsCfgInfoTable
6 : hwCBQoSRemarkCfgInfoTable
7 : hwCBQoSQueueCfgInfoTable
8 : hwCBQoSWredCfgInfoTable
9 : hwCBQoSWredClassCfgInfoTable
14: hwCBQoSPolicyCfgInfoTable
15: hwCBQoSPolicyClassCfgInfoTable
16: hwCBQoSIfApplyPolicyTable
17: hwCBQoSAtmPvcApplyPolicyTable
19: hwCBQoSFrClassApplyPolicyTable
20: hwCBQoSFrPvcApplyPolicyTable
21: hwCBQoSIfCbqRunInfoTable
22: hwCBQoSIfClassMatchRunInfoTable
23: hwCBQoSIfCarRunInfoTable
24: hwCBQoSIfGtsRunInfoTable
25: hwCBQoSIfRemarkRunInfoTable
26: hwCBQoSIfQueueRunInfoTable
27: hwCBQoSIfWredRunInfoTable
28: hwCBQoSAtmPvcCbqRunInfoTable
29: hwCBQoSAtmPvcClassMatchRunInfoTable
30: hwCBQoSAtmPvcCarRunInfoTable
31: hwCBQoSAtmPvcGtsRunInfoTable
32: hwCBQoSAtmPvcRemarkRunInfoTable
33: hwCBQoSAtmPvcQueueRunInfoTable
34: hwCBQoSAtmPvcWredRunInfoTable
35: hwCBQoSFrPvcCbqRunInfoTable
36: hwCBQoSFrPvcClassMatchRunInfoTable
37: hwCBQoSFrPvcCarRunInfoTable
38: hwCBQoSFrPvcGtsRunInfoTable
39: hwCBQoSFrPvcRemarkRunInfoTable
40: hwCBQoSFrPvcQueueRunInfoTable
41: hwCBQoSFrPvcWredRunInfoTable
Hardware QoS supports the following tables:
1 : hwCBQoSClassifierCfgInfoTable
2 : hwCBQoSMatchRuleCfgInfoTable
3 : hwCBQoSBehaviorCfgInfoTable
4 : hwCBQoSCarCfgInfoTable
6 : hwCBQoSRemarkCfgInfoTable
10: hwCBQoSPolicyRouteCfgInfoTable
11: hwCBQoSNatCfgInfoTable
12: hwCBQoSFirewallCfgInfoTable
13: hwCBQoSSamplingCfgInfoTable
14: hwCBQoSPolicyCfgInfoTable
15: hwCBQoSPolicyClassCfgInfoTable
16: hwCBQoSIfApplyPolicyTable
18: hwCBQoSIfVlanApplyPolicyTable
22: hwCBQoSIfClassMatchRunInfoTable
42: hwCBQoSIfVlanClassMatchRunInfoTable
"
::= { hwQoS 1 }
--
--type definitions in the traffic classifier
--
--MatchRuleType
MatchRuleType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of Match Rule."
SYNTAX INTEGER {
typeAny(1),
typeAcl(2),
typeRtpPort(3),
typeProtocol(4),
typeIpPrec(5),
typeDscp(6),
typeVlan8021p(7),
typeMplsExp(8),
typeSourceMac(9),
typeDestinationMac(10),
typeClassifier(11),
typeInboundInterface(12),
typeMacGroup(13),
-- value 14 and 15 are reserved for future use.
typeMatchDe(16), -- the match rule is FR DE
typeMatchClp(17), -- the match rule is ATM CLP
-- enum values 18 to 24 are reserved
typeOutboundInterface(25)
}
--
--end of type definitions in the traffic classifier
--
--
--type definitions in the traffic behavior
--
--CarAction
CarAction ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The actions taken when packets conforming or exceeding the configured
CIR:
pass (1),
discard (2),
remark IP Precedence (3),
remark DSCP(4),
remark Mpls Exp(5),
remark (6)
"
SYNTAX INTEGER {
pass (1),
discard (2),
remarkIpPrec (3),
remarkDscp(4),
remarkMplsExp(5),
remark(6)
}
--RemarkType
RemarkType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"typeIpPrec(1)
typeDscp(2)
typeMplsExp(3)
typeVlan8021p(4)
typeAtmClp(5)
typeFrDe(6)
"
SYNTAX INTEGER {
typeIpPrec(1),
typeDscp(2),
typeMplsExp(3),
typeVlan8021p(4),
typeAtmClp(5),
typeFrDe(6)
}
--WredType
WredType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"IpPrec Based (1)
DSCP Based (2)
"
SYNTAX INTEGER {
typeIpPrecbased (1),
typeDscpbased (2)
}
--QueueType
QueueType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Queueing Type:
EF: (1)
AF: (2)
WFQ: (3)
"
SYNTAX INTEGER {
ef (1),
af (2),
wfq (3)
}
--QueueBandwidthUnit
QueueBandwidthUnit ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Bandwidth Unit:
Absolute, Unit Kbps (1)
Percent, Unit % (2), means the percentage of the reserved bandwidth besides the part
configured for RTP queue.
Remaining percent, Unit % (3), means the percentage of the reserved bandwidth besides
the parts configured for EF and RTP queue.
"
SYNTAX INTEGER {
unitUnavailable(-1),
unitAbsolute(1),
unitPercent(2),
unitRemainPercent(3)
}
-- LrCirUnit
LrCirUnit ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"CIR Unit:
Absolute, Unit bps (1)
Percent, Unit % (2)
"
SYNTAX INTEGER
{
absoluteUnitBps(1),
percentUnit(2)
}
--
--end of type definitions in the traffic behavior
--
--
--type definitions in the policy
--
--Direction
DirectionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The Direction Policy apply on."
SYNTAX INTEGER {
inbound (1),
outbound (2)
}
--
--end of type definitions in policy
--
--
-- Node definitions
--
hwCBQoSObjects OBJECT IDENTIFIER ::= { hwCBQoSMIB 1 }
--hwCBQoSClassifierObjects
hwCBQoSClassifierObjects OBJECT IDENTIFIER ::= { hwCBQoSObjects 1 }
-- Traffic Classifier Next Index
hwCBQoSClassifierIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an appropriate value to be used for
hwCBQoSClassifierIndex when creating rows in the
hwCBQoSClassifierCfgInfoTable. Begin with 0."
::= { hwCBQoSClassifierObjects 1 }
-- Traffic Classifier
hwCBQoSClassifierCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCBQoSClassifierCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Traffic Classifier configuration information."
::= { hwCBQoSClassifierObjects 2 }
hwCBQoSClassifierCfgInfoEntry OBJECT-TYPE
SYNTAX HwCBQoSClassifierCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Traffic Classifier Configuration Information Entry."
INDEX { hwCBQoSClassifierIndex }
::= { hwCBQoSClassifierCfgInfoTable 1 }
HwCBQoSClassifierCfgInfoEntry ::=
SEQUENCE {
hwCBQoSClassifierIndex
Integer32,
hwCBQoSClassifierName
OCTET STRING,
hwCBQoSClassifierRuleCount
Integer32,
hwCBQoSClassifierOperator
INTEGER,
hwCBQoSClassifierLayer
INTEGER,
hwCBQoSClassifierRowStatus
RowStatus
}
hwCBQoSClassifierIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of Traffic Classifier. Begin with 0."
::= { hwCBQoSClassifierCfgInfoEntry 1 }
hwCBQoSClassifierName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of Traffic Classifier."
::= { hwCBQoSClassifierCfgInfoEntry 2 }
hwCBQoSClassifierRuleCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The count of match rules of Traffic classifier. It can be used
for hwCBQoSMatchRuleIndex when creating rows in the
hwCBQoSMatchRuleCfgInfoTable. Begin with 0."
::= { hwCBQoSClassifierCfgInfoEntry 3 }
hwCBQoSClassifierOperator OBJECT-TYPE
SYNTAX INTEGER {
and(1),
or(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operator of the match rules of traffic classifier.
Software QoS support and,or.
Hardware QoS support and."
DEFVAL {and}
::= { hwCBQoSClassifierCfgInfoEntry 4 }
hwCBQoSClassifierLayer OBJECT-TYPE
SYNTAX INTEGER {
unavailable(-1),
l2(1),
l3(2),
both(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Configuration layer of traffic classifier.
Only hardware QoS support it.
-1(unavailable) is returned only when getting value from software QoS.
-1(unavailable) can't be set."
DEFVAL {l3}
::= { hwCBQoSClassifierCfgInfoEntry 5 }
hwCBQoSClassifierRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy"
::= { hwCBQoSClassifierCfgInfoEntry 6 }
-- Match rule
hwCBQoSMatchRuleCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCBQoSMatchRuleCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Match Rule configuration information."
::= { hwCBQoSClassifierObjects 3 }
hwCBQoSMatchRuleCfgInfoEntry OBJECT-TYPE
SYNTAX HwCBQoSMatchRuleCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Match Rule Configuration Information Entry."
INDEX { hwCBQoSClassifierIndex, hwCBQoSMatchRuleIndex }
::= { hwCBQoSMatchRuleCfgInfoTable 1 }
HwCBQoSMatchRuleCfgInfoEntry ::=
SEQUENCE {
hwCBQoSMatchRuleIndex
Integer32,
hwCBQoSMatchRuleIfNot
INTEGER,
hwCBQoSMatchRuleType
MatchRuleType,
hwCBQoSMatchRuleStringValue
OCTET STRING,
hwCBQoSMatchRuleIntValue1
Unsigned32,
hwCBQoSMatchRuleIntValue2
Unsigned32,
hwCBQoSMatchRuleRowStatus
RowStatus
}
hwCBQoSMatchRuleIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of Match Rule."
::= { hwCBQoSMatchRuleCfgInfoEntry 1 }
hwCBQoSMatchRuleIfNot OBJECT-TYPE
SYNTAX INTEGER {
match(1),
match-Not(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"whether the if-match rule is a Match or Match-Not statement.
Software QoS support match,match-Not.
Hardware QoS support match."
DEFVAL {match}
::= { hwCBQoSMatchRuleCfgInfoEntry 2 }
hwCBQoSMatchRuleType OBJECT-TYPE
SYNTAX MatchRuleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of Match Rule.
typeAny(1)
typeAcl(2),
typeRtpPort(3),
typeProtocol(4),
typeIpPrec(5),
typeDscp(6),
typeVlan8021p(7),
typeMplsExp(8),
typeSourceMac(9),
typeDestinationMac(10),
typeClassifier(11),
typeInboundInterface(12),
typeMacGroup(13),
typeMatchDe(16), /* the match rule is FR DE */
typeMatchClp(17), /* the match rule is ATM CLP */
typeOutboundInterface(25)
Software QoS supports any type except typeMacGroup.
Hardware QoS supports typeAcl,typeDscp,typeMacGroup.
"
::= { hwCBQoSMatchRuleCfgInfoEntry 3 }
hwCBQoSMatchRuleStringValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of Match Rule.
SourceMAC(9): SIZE (12) HHHHHHHHHHHH for example: 010102020303 means
the match rule is 'if-match source-mac 0101-0202-0303'
DestinationMAC(10): SIZE (12) HHHHHHHHHHHH for example: 010102020303 means
the match rule is 'if-match destination-mac 0101-0202-0303'
Classifier(11): SIZE (1..31)
InboundInterface(12): SIZE (1..47)
typeOutboundInterface(25): SIZE (1..47)
other type: Set is not permitted. Zero-length String will be
returned when getting.
"
::= { hwCBQoSMatchRuleCfgInfoEntry 4 }
hwCBQoSMatchRuleIntValue1 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of Match Rule.
Acl(2):
Software QoS: 2000~3999 Hardware Qos: 10000~42767
RtpPort(3): start-port: 2000~65535
Protocol(4): 1(Ip)
IpPrec(5): value:0~7, up to 8 value can be input. The bit set
to 1 of the last 8 bits of hwCBQoSMatchRuleIntValue1
is used to indicate the value 0~7.
For example: 0x00000053(Binary format is 01010011)
means the match rule is 'if-match ip-prec 0 1 4 6'
Dscp(6): value:0~63,up to 8 value can be input.
The bit set to 1 of hwCBQoSMatchRuleIntValue1 is
used to indicate the value 32~63.
The bit set to 1 of hwCBQoSMatchRuleIntValue2 is
used to indicate the value 0~31.
For example: 0x80000003 means the match rule is
'if-match dscp 32 33 63'
Vlan8021p(7): value:0~7, up to 8 value can be input. The bit
set to 1 of the last 8 bits of hwCBQoSMatchRuleIntValue1
is used to indicate the 8 value 0~7.
For example: 0x53(Binary format is 01010011) means
the match rule is 'if-match vlan 0 1 4 6'
MplsExp(8): value:0~7, up to 8 value can be input. The bit set
to 1 of the last 8 bits of hwCBQoSMatchRuleIntValue1
is used to indicate the 8 value 0~7.
For example: 0x53(Binary format is 01010011) means
the match rule is 'if-match mpls 0 1 4 6'
MacGroup(13): 1~63
other type: Set is not permitted. 0xffffffff will be returned
when getting.
"
::= { hwCBQoSMatchRuleCfgInfoEntry 5 }
hwCBQoSMatchRuleIntValue2 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of Match Rule.
RtpPort(3): end-port: 2000~65535
Dscp(6): value:0~63,up to 8 value can be input.
The bit set to 1 of hwCBQoSMatchRuleIntValue1 is used
to indicate the value 32~63.
The bit set to 1 of hwCBQoSMatchRuleIntValue2 is used
to indicate the value 0~31.
for example: 0x80000003 means the match rule is
'if-match dscp 0 1 31'
other type: Set is not permitted. 0xffffffff will be returned
when getting.
"
::= { hwCBQoSMatchRuleCfgInfoEntry 6 }
hwCBQoSMatchRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus for Match Rule Table.
Three actions are used: active, createAndGo, destroy"
::= { hwCBQoSMatchRuleCfgInfoEntry 7 }
--hwCBQoSBehaviorObjects
hwCBQoSBehaviorObjects OBJECT IDENTIFIER ::= { hwCBQoSObjects 2 }
-- Traffic Behavior Next Index
hwCBQoSBehaviorIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an appropriate value to be used for
hwCBQoSBehaviorIndex when creating rows in the
hwCBQoSBehaviorCfgInfoTable. Begin with 0."
::= { hwCBQoSBehaviorObjects 1 }
-- Traffic Behavior
hwCBQoSBehaviorCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCBQoSBehaviorCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Traffic Behavior configuration information."
::= { hwCBQoSBehaviorObjects 2 }
hwCBQoSBehaviorCfgInfoEntry OBJECT-TYPE
SYNTAX HwCBQoSBehaviorCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Traffic Behavior Configuration Information Entry."
INDEX { hwCBQoSBehaviorIndex }
::= { hwCBQoSBehaviorCfgInfoTable 1 }
HwCBQoSBehaviorCfgInfoEntry ::=
SEQUENCE {
hwCBQoSBehaviorIndex
Integer32,
hwCBQoSBehaviorName
OCTET STRING,
hwCBQoSBehaviorRowStatus
RowStatus
}
hwCBQoSBehaviorIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of Traffic Behavior."
::= { hwCBQoSBehaviorCfgInfoEntry 1 }
hwCBQoSBehaviorName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of Traffic Behavior."
::= { hwCBQoSBehaviorCfgInfoEntry 2 }
hwCBQoSBehaviorRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy"
::= { hwCBQoSBehaviorCfgInfoEntry 3 }
-- CAR
hwCBQoSCarCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCBQoSCarCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of CAR feature configuration information."
::= { hwCBQoSBehaviorObjects 3 }
hwCBQoSCarCfgInfoEntry OBJECT-TYPE
SYNTAX HwCBQoSCarCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CAR Configuration Information Entry."
INDEX { hwCBQoSBehaviorIndex }
::= { hwCBQoSCarCfgInfoTable 1 }
HwCBQoSCarCfgInfoEntry ::=
SEQUENCE {
hwCBQoSCarCir
Integer32,
hwCBQoSCarCbs
Integer32,
hwCBQoSCarEbs
Integer32,
hwCBQoSCarPir
Integer32,
hwCBQoSCarPbs
Integer32,
hwCBQoSCarGreenAction
CarAction,
hwCBQoSCarGreenRemarkValue
Integer32,
hwCBQoSCarYellowAction
INTEGER,
hwCBQoSCarRedAction
CarAction,
hwCBQoSCarRedRemarkValue
Integer32,
hwCBQoSCarRowStatus
RowStatus
}
hwCBQoSCarCir OBJECT-TYPE
SYNTAX Integer32 (8..10000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed Information Rate. Unit: kbps.
software QoS: 8..155000
hardware QoS: 100..10000000"
::= { hwCBQoSCarCfgInfoEntry 1 }
hwCBQoSCarCbs OBJECT-TYPE
SYNTAX Integer32 (64..19375000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed Burst Size. Unit: byte
software QoS: 1875..19375000 (default:max(cir*125/2,1875))
hardware QoS: 64..131071(default:12288)"
::= { hwCBQoSCarCfgInfoEntry 2 }
hwCBQoSCarEbs OBJECT-TYPE
SYNTAX Integer32(-1|0..19375000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Excess Burst Size. Unit: byte. 0..19375000
Only software QoS support this node.
-1 is returned only when getting value from hardware QoS.
-1 can't be set."
DEFVAL {0}
::= { hwCBQoSCarCfgInfoEntry 3 }
hwCBQoSCarPir OBJECT-TYPE
SYNTAX Integer32 (-1|100..10000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Peak Information Rate. Unit: kbps. 100..10000000
Only hardware QoS support this node.
-1 is returned only when getting value from software QoS.
-1 can't be set."
::= { hwCBQoSCarCfgInfoEntry 4 }
hwCBQoSCarPbs OBJECT-TYPE
SYNTAX Integer32 (-1|64..4000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Peak Burst Size. Unit: byte.
64..4000000.(default:cbs when Peak Information Rate configured)
Only hardware QoS support this node.
-1 is returned only when getting value from software QoS.
-1 can't be set."
::= { hwCBQoSCarCfgInfoEntry 5 }
hwCBQoSCarGreenAction OBJECT-TYPE
SYNTAX CarAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Green Action:
pass (1)
discard (2)
remark IP Precedence (3)
remark DSCP (4)
remark MPLS EXP (5)
remark (6)
Hardware QoS : pass, discard, remark.
Software QoS : pass, discard, remark IP Precedence, remark DSCP,
remark MPLS EXP.
"
DEFVAL {pass}
::= { hwCBQoSCarCfgInfoEntry 6 }
hwCBQoSCarGreenRemarkValue OBJECT-TYPE
SYNTAX Integer32 (-1|0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value is to remark When green action is remarking.
For remarking DSCP, the range is 0~63;
For remarking IP Precedence and MPLS EXP, the range is 0~7;
Only software QoS support this node.
-1 is returned only when getting value from hardware QoS or
when action being pass, discard of software QoS.
-1 can't be set."
::= { hwCBQoSCarCfgInfoEntry 7 }
hwCBQoSCarYellowAction OBJECT-TYPE
SYNTAX INTEGER {
unavailable(-1),
pass (1),
discard (2),
remarkIpPrec (3),
remarkDscp(4),
remarkMplsExp(5),
remark(6)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Yellow Action:
unavailable(-1)
pass (1)
discard (2)
remark IP Precedence (3)
remark DSCP (4)
remark MPLS EXP (5)
remark(6)
Only hardware QoS support this node. Hardware QoS support pass,
discard, remark.
-1 is returned only when getting value from software QoS.
-1 can't be set."
DEFVAL {remark}
::= { hwCBQoSCarCfgInfoEntry 8 }
hwCBQoSCarRedAction OBJECT-TYPE
SYNTAX CarAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Red Action:
pass (1)
discard (2)
remark IP Precedence (3)
remark DSCP (4)
remark MPLS EXP (5)
remark (6)
Hardware QoS : pass, discard, remark.
Software QoS : pass, discard, remark IP Precedence, remark DSCP,
remark MPLS EXP.
"
DEFVAL {discard}
::= { hwCBQoSCarCfgInfoEntry 9 }
hwCBQoSCarRedRemarkValue OBJECT-TYPE
SYNTAX Integer32 (-1|0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value is to remark When red action is remarking.
For remarking DSCP, the range is 0~63;
For remarking IP Precedence and MPLS EXP, the range is 0~7;
Only software QoS support this node.
-1 is returned only when getting value from hardware QoS or
when action being pass, discard of software QoS.
-1 can't be set."
::= { hwCBQoSCarCfgInfoEntry 10 }
hwCBQoSCarRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy"
::= { hwCBQoSCarCfgInfoEntry 11 }
-- GTS
hwCBQoSGtsCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCBQoSGtsCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of GTS feature configuration information."
::= { hwCBQoSBehaviorObjects 4 }
hwCBQoSGtsCfgInfoEntry OBJECT-TYPE
SYNTAX HwCBQoSGtsCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"GTS Configuration Information Entry."
INDEX { hwCBQoSBehaviorIndex }
::= { hwCBQoSGtsCfgInfoTable 1 }
HwCBQoSGtsCfgInfoEntry ::=
SEQUENCE {
hwCBQoSGtsCir
Integer32,
hwCBQoSGtsCbs
Integer32,
hwCBQoSGtsEbs
Integer32,
hwCBQoSGtsQueueLength
Integer32,
hwCBQoSGtsRowStatus
RowStatus
}
hwCBQoSGtsCir OBJECT-TYPE
SYNTAX Integer32 (8000..155000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed Information Rate. Unit: bps"
::= { hwCBQoSGtsCfgInfoEntry 1 }
hwCBQoSGtsCbs OBJECT-TYPE
SYNTAX Integer32 (15000..155000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed Burst Size. Unit: bit
default: max(cir*1/2,15000)"
::= { hwCBQoSGtsCfgInfoEntry 2 }
hwCBQoSGtsEbs OBJECT-TYPE
SYNTAX Integer32 (0..155000000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Excess Burst Size. Unit: bit"
DEFVAL {0}
::= { hwCBQoSGtsCfgInfoEntry 3 }
hwCBQoSGtsQueueLength OBJECT-TYPE
SYNTAX Integer32 (1..1024)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The length of GTS buffer."
DEFVAL {50}
::= { hwCBQoSGtsCfgInfoEntry 4 }
hwCBQoSGtsRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus. Three actions are used: active,
createAndGo, destroy"
::= { hwCBQoSGtsCfgInfoEntry 5 }
-- REMARK
hwCBQoSRemarkCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwCBQoSRemarkCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Remarking feature configuration information."
::= { hwCBQoSBehaviorObjects 5 }
hwCBQoSRemarkCfgInfoEntry OBJECT-TYPE
SYNTAX HwCBQoSRemarkCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Remarking Configuration Information Entry."
INDEX { hwCBQoSBehaviorIndex, hwCBQoSRemarkType }
::= { hwCBQoSRemarkCfgInfoTable 1 }
HwCBQoSRemarkCfgInfoEntry ::=
SEQUENCE {
hwCBQoSRemarkType