forked from AlexandreYang/snmp-mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
A3COM-HUAWEI-CBQOS2-MIB
executable file
·5805 lines (5192 loc) · 200 KB
/
A3COM-HUAWEI-CBQOS2-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) 2009 by H3C Technologies. All rights reserved.
--
-- Description: This MIB file is used for management of h3c Class Based
-- QoS information.
-- Reference:
-- Version: V1.7
-- History:
-- V1.0 created by tangshun.
-- V1.1 2006/01/17 modified by wangjinwang
-- add enum value 22 and 23 in MatchRuleType
-- add comment for h3cCBQoSMatchRuleIntValue1
-- V1.2 2006/02/24 modified by changhuifeng
-- Add an enumeration Bittorrent(24) to object h3cCBQoSMatchRuleType.
-- Add h3cCBQoSMirrorCfgInfoTable for flow mirror.
-- Add h3cCBQoSRedirectIpv6Interface1 and h3cCBQoSRedirectIpv6Interface2
-- object for h3cCBQoSRedirectCfgInfoTable.
-- Modify the value range of h3cCBQoSRemarkValue from "1~4094" to "1~4095"
-- in h3cIfQoSPQClassRuleTable.
-- V1.3 2006/03/29 modified by xialei
-- Modify the MAX-ACCESS clause of h3cCBQoSQueueDropType.
-- Modify the description for object h3cCBQoSQueueCbs.
-- Modify the enumeration name of object h3cCBQoSRedirectType.
-- V1.4 2007/10/15 modified by wangjinwang
-- Add h3cCBQoSGlobalApplyTable to global policy apply.
-- Add h3cCBQoSPolicyClassMode and h3cCBQoSPolicyClassCfgOrder to
-- h3cCBQoSPolicyClassCfgInfoTable.
-- Add h3cCBQoSNestCfgInfoTable to traffic behavior.
-- Add enumeration matchRuleServiceDot1p
-- to object h3cCBQoSMatchRuleType.
-- Add enumeration typeTopMostVlanID to object h3cCBQoSRemarkType.
-- V1.5 2007/12/12 modified by Xu Hang/ChenWei
-- Delete the default value of h3cCBQoSGlobalApplyDirection
-- in h3cCBQoSGlobalApplyTable
-- Add h3cCBQoSApplyPolicyIndexObjects to h3cCBQoSApplyPolicyStaticsObjects
-- Add h3cCBQoSStaticsObjects to h3cCBQoSApplyPolicyStaticsObjects
-- Modify the MAX-ACCESS clause of h3cCBQoSQueueDropType.
-- Modify the MAX-ACCESS clause of h3cCBQoSIfApplyPolicyIfIndex,
-- h3cCBQoSIfApplyPolicyDirection, h3cCBQoSVlanApplyPolicyVlanid
-- and h3cCBQoSVlanApplyPolicyDirection.
-- Add h3cCBQoSApplyingStatusObjects to h3cCBQoSObjects.
-- Add h3cCBQoSApplyingStatus to h3cCBQoSApplyPolicyObjects.
-- Add h3cCBQoSNotifications to h3cCBQoSObjects.
-- Add h3cCBQoSNotificationsPrefix to h3cCBQoSNotifications.
-- Add h3cCBQoSIfPolicyChanged and h3cCBQoSVlanPolicyChanged
-- to h3cCBQoSNotificationsPrefix.
-- Add remark-local-pre-pass and remark-drop-pre-pass to CarAction.
-- Delete the default value of h3cCBQoSVlanApplyPolicyDirection and
-- h3cCBQoSGlobalApplyDirection.
-- V1.6 2008/05/28 modified by ChenWei
-- Add h3cCBQoSNestPolicyCfgInfoTable to h3cCBQoSBehaviorObjects.
-- Add h3cCBQoSNestPolicyApplyObjectTable to h3cCBQoSApplyPolicyIndexObjects.
-- V1.7 2011/01/25 modified by XuGuoFang/zhaixiaoxiang
-- Modify the range of h3cCBQoSQueueBandwidthValue.
-- Modify the range of h3cCBQoSQueueCbs.
-- Modify the description of h3cCBQoSQueueCbsRatio.
-- Modify the description of h3cCBQoSBehaviorIndexNext.
-- ==========================================================================
A3COM-HUAWEI-CBQOS2-MIB DEFINITIONS ::= BEGIN
IMPORTS
h3cCommon
FROM A3COM-HUAWEI-OID-MIB
Integer32, Counter64, Unsigned32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
InetAddressType, InetAddress
FROM INET-ADDRESS-MIB -- [RFC3291]
TEXTUAL-CONVENTION, RowStatus, TruthValue
FROM SNMPv2-TC;
h3cCBQos2 MODULE-IDENTITY
LAST-UPDATED "200507300000Z" --July 30, 2005 at 00:00 GMT
ORGANIZATION
"Hangzhou H3C Tech. Co., Ltd."
CONTACT-INFO
"Platform Team Hangzhou H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"This 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 : h3cCBQoSClassifierCfgInfoTable
2 : h3cCBQoSMatchRuleCfgInfoTable
3 : h3cCBQoSBehaviorCfgInfoTable
4 : h3cCBQoSCarCfgInfoTable
5 : h3cCBQoSAggregativeCarCfgInfoTable
6 : h3cCBQoSGtsCfgInfoTable
7 : h3cCBQoSRemarkCfgInfoTable
8 : h3cCBQoSQueueCfgInfoTable
9 : h3cCBQoSWredCfgInfoTable
10: h3cCBQoSWredClassCfgInfoTable
11: h3cCBQoSPolicyRouteCfgInfoTable
12: h3cCBQoSNatCfgInfoTable
13: h3cCBQoSFirewallCfgInfoTable
14: h3cCBQoSSamplingCfgInfoTable
15: h3cCBQoSAccountCfgInfoTable
16: h3cCBQoSRedirectCfgInfoTable
17: h3cCBQoSPriorityMapCfgInfoTable
18: h3cCBQoSPolicyCfgInfoTable
19: h3cCBQoSPolicyClassCfgInfoTable
20: h3cCBQoSIfApplyPolicyTable
21: h3cCBQoSAtmPvcApplyPolicyTable
22: h3cCBQoSVlanApplyPolicyTable
23: h3cCBQoSFrClassApplyPolicyTable
24: h3cCBQoSFrPvcApplyPolicyTable
25: h3cCBQoSIfCbqRunInfoTable
26: h3cCBQoSIfClassMatchRunInfoTable
27: h3cCBQoSIfCarRunInfoTable
28: h3cCBQoSIfGtsRunInfoTable
29: h3cCBQoSIfRemarkRunInfoTable
30: h3cCBQoSIfQueueRunInfoTable
31: h3cCBQoSIfWredRunInfoTable
32: h3cCBQoSIfAccountingRunInfoTable
33: h3cCBQoSAtmPvcCbqRunInfoTable
34: h3cCBQoSAtmPvcClassMatchRunInfoTable
35: h3cCBQoSAtmPvcCarRunInfoTable
36: h3cCBQoSAtmPvcGtsRunInfoTable
37: h3cCBQoSAtmPvcRemarkRunInfoTable
38: h3cCBQoSAtmPvcQueueRunInfoTable
39: h3cCBQoSAtmPvcWredRunInfoTable
40: h3cCBQoSAtmPvcAccountingRunInfoTable
41: h3cCBQoSFrPvcCbqRunInfoTable
42: h3cCBQoSFrPvcClassMatchRunInfoTable
43: h3cCBQoSFrPvcCarRunInfoTable
44: h3cCBQoSFrPvcGtsRunInfoTable
45: h3cCBQoSFrPvcRemarkRunInfoTable
46: h3cCBQoSFrPvcQueueRunInfoTable
47: h3cCBQoSFrPvcWredRunInfoTable
48: h3cCBQoSFrPvcAccountingRunInfoTable
49: h3cCBQoSIfVlanClassMatchRunInfoTable
50: h3cCBQoSIfVlanAccountingRunInfoTable
51: h3cCBQoSMirrorCfgInfoTable
52: h3cCBQoSGlobalApplyTable
53: h3cCBQoSNestCfgInfoTable
54: h3cCBQoSApplyObjectTable
55: h3cCBQoSIntApplyObjectTable
56: h3cCBQoSVlanApplyObjectTable
57: h3cCBQoSPvcApplyObjectTable
58: h3cCBQoSCbqRunInfoTable
59: h3cCBQoSClassMatchRunInfoTable
60: h3cCBQoSCarRunInfoTable
61: h3cCBQoSGtsRunInfoTable
62: h3cCBQoSRemarkRunInfoTable
63: h3cCBQoSQueueRunInfoTable
64: h3cCBQoSWredRunInfoTable
65: h3cCBQoSAccountingRunInfoTable
66: h3cCBQoSApplyingStatusObjects
67: h3cCBQoSNotifications
"
::= { h3cQos2 2 }
h3cQos2 OBJECT IDENTIFIER ::= { h3cCommon 65 }
--
--type definitions in the traffic classifier
--
--MatchRuleType
MatchRuleType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of Match Rule. "
SYNTAX INTEGER
{
matchRuleAny(1),
matchRuleIpv4Acl(2),
matchRuleIPv6Acl(3) ,
matchRuleIPv4Protocol(4),
matchRuleIPv6Protocol(5),
matchRuleIPXProtocol(6),
matchRuleDscp(7),
matchRuleIpPre(8),
matchRuleVlan8021p(9),
matchRuleMplsExp(10),
matchRuleAtmClp(11),
matchRuleFrDe(12),
matchRuleSourceMac(13),
matchRuleDestinationMac(14),
matchRuleQosLocalID(15),
matchRuleClassifier(16),
matchRuleInboundInterface(17),
matchRuleRtpPort(18),
matchRuleSourceIp(19),
matchRuleVlanID(20),
matchRuleTopMostVlanID(21),
matchRuleLocalPrecedence(22),
matchRuleDropPriority(23),
matchRuleBittorrent(24),
matchRuleServiceDot1p(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 committed information rate(CIR)."
SYNTAX INTEGER
{
invalid(0),
pass(1),
continue(2),
discard(3),
remark(4),
remark-ip-continue(5),
remark-ip-pass(6),
remark-mplsexp-continue(7),
remark-mplsexp-pass(8),
remark-dscp-continue(9),
remark-dscp-pass(10),
remark-dot1p-continue(11),
remark-dot1p-pass(12),
remark-atm-clp-continue(13),
remark-atm-clp-pass(14),
remark-fr-de-continue(15),
remark-fr-de-pass(16),
remark-local-pre-pass(17),
remark-drop-pre-pass(18)
}
--RemarkType
RemarkType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of remark."
SYNTAX INTEGER
{
typeIpPrecedence(1),
typeDscp(2),
typeMplsExp(3),
typeVlan8021p(4),
typeAtmClp(5),
typeFrDe(6),
typeVlanID(7),
typeQosLocalID(8),
typeDropPrecedence(9),
typeLocalPrecedence(10),
typeTopMostVlanID(11)
}
--WredType
WredType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"WRED type."
SYNTAX INTEGER
{
typeIpPrecBased(1),
typeDscpBased(2),
typeDropLevelBased(3),
typeAtmClpBased(4),
typeVlan8021pBased(5),
typeMplsExpBased(6)
}
--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)
"
SYNTAX INTEGER
{
unitUnavailable(0),
unitAbsolute(1),
unitPercent(2)
}
--
--end of type definitions in the traffic behavior
--
--
--type definitions in the policy
--
--Direction
DirectionType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The direction of policy apply on at interface."
SYNTAX INTEGER
{
inbound(1),
outbound(2)
}
-- ApplyObjectType
ApplyObjectType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Type of QoS apply object."
SYNTAX INTEGER
{
interface(1),
vlan(2),
atmPvc(3),
frDlci(4)
}
--
--end of type definitions in policy
--
--
-- Node definitions
--
h3cCBQoSObjects OBJECT IDENTIFIER ::= { h3cCBQos2 1 }
-- h3cCBQoSClassifierObjects
h3cCBQoSClassifierObjects OBJECT IDENTIFIER ::= { h3cCBQoSObjects 1 }
-- Traffic Classifier Next Index
h3cCBQoSClassifierIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an appropriate value to be used for
h3cCBQoSClassifierIndex when creating rows in the
h3cCBQoSClassifierCfgInfoTable. Begin with 22.
"
::= { h3cCBQoSClassifierObjects 1 }
-- Traffic Classifier
h3cCBQoSClassifierCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cCBQoSClassifierCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Traffic Classifier configuration information."
::= { h3cCBQoSClassifierObjects 2 }
h3cCBQoSClassifierCfgInfoEntry OBJECT-TYPE
SYNTAX H3cCBQoSClassifierCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Traffic Classifier Configuration Information Entry."
INDEX { h3cCBQoSClassifierIndex }
::= { h3cCBQoSClassifierCfgInfoTable 1 }
H3cCBQoSClassifierCfgInfoEntry ::=
SEQUENCE
{
h3cCBQoSClassifierIndex
Integer32,
h3cCBQoSClassifierName
OCTET STRING,
h3cCBQoSClassifierRuleCount
Integer32,
h3cCBQoSClassifierOperator
INTEGER,
h3cCBQoSClassifierLayer
INTEGER,
h3cCBQoSClassifierType
INTEGER,
h3cCBQosClassifierMatchRuleNextIndex
Integer32,
h3cCBQoSClassifierRowStatus
RowStatus
}
h3cCBQoSClassifierIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of Traffic Classifier. Begin with 0."
::= { h3cCBQoSClassifierCfgInfoEntry 1 }
h3cCBQoSClassifierName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of Traffic Classifier."
::= { h3cCBQoSClassifierCfgInfoEntry 2 }
h3cCBQoSClassifierRuleCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The counter of match rules of Traffic classifier."
::= { h3cCBQoSClassifierCfgInfoEntry 3 }
h3cCBQoSClassifierOperator 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 supports and, or.
Hardware QoS supports and.
"
DEFVAL { and }
::= { h3cCBQoSClassifierCfgInfoEntry 4 }
h3cCBQoSClassifierLayer OBJECT-TYPE
SYNTAX INTEGER
{
unavailable(1),
l2(2),
l3(3),
both(4)
}
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 }
::= { h3cCBQoSClassifierCfgInfoEntry 5 }
h3cCBQoSClassifierType OBJECT-TYPE
SYNTAX INTEGER
{
systemDefined(1),
userDefined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of classifier."
::= { h3cCBQoSClassifierCfgInfoEntry 6 }
h3cCBQosClassifierMatchRuleNextIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an appropriate value to be used for
h3cCBQoSMatchRuleIndex when creating rows in the
h3cCBQoSMatchRuleCfgInfoTable. Begin with 0.
If the value of this node is 65535,
it indicates creating a row in h3cCBQoSMatchRuleCfgInfoTable is not permitted.
"
::= { h3cCBQoSClassifierCfgInfoEntry 7 }
h3cCBQoSClassifierRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::= { h3cCBQoSClassifierCfgInfoEntry 8 }
-- Match rule
h3cCBQoSMatchRuleCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cCBQoSMatchRuleCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Match Rule configuration information."
::= { h3cCBQoSClassifierObjects 3 }
h3cCBQoSMatchRuleCfgInfoEntry OBJECT-TYPE
SYNTAX H3cCBQoSMatchRuleCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Match Rule Configuration Information Entry."
INDEX { h3cCBQoSClassifierIndex, h3cCBQoSMatchRuleIndex }
::= { h3cCBQoSMatchRuleCfgInfoTable 1 }
H3cCBQoSMatchRuleCfgInfoEntry ::=
SEQUENCE
{
h3cCBQoSMatchRuleIndex
Integer32,
h3cCBQoSMatchRuleIfNot
INTEGER,
h3cCBQoSMatchRuleType
MatchRuleType,
h3cCBQoSMatchRuleStringValue
OCTET STRING,
h3cCBQoSMatchRuleIntValue1
Unsigned32,
h3cCBQoSMatchRuleIntValue2
Unsigned32,
h3cCBQoSMatchIpAddressType
InetAddressType,
h3cCBQoSMatchIpAddress
InetAddress,
h3cCBQoSMatchRuleRowStatus
RowStatus
}
h3cCBQoSMatchRuleIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of Match Rule."
::= { h3cCBQoSMatchRuleCfgInfoEntry 1 }
h3cCBQoSMatchRuleIfNot OBJECT-TYPE
SYNTAX INTEGER
{
match(1),
matchNot(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Whether the if-match rule is a match or matchNot statement.
Software QoS supports match, matchNot.
Hardware QoS supports match.
"
DEFVAL { match }
::= { h3cCBQoSMatchRuleCfgInfoEntry 2 }
h3cCBQoSMatchRuleType OBJECT-TYPE
SYNTAX MatchRuleType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of Match Rule."
::= { h3cCBQoSMatchRuleCfgInfoEntry 3 }
h3cCBQoSMatchRuleStringValue OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of Match Rule.
SourceMAC: SIZE (12) HHHHHHHHHHHH
for example: 010102020303 means the match rule is
'if-match source-mac 0101-0202-0303'
DestinationMAC: SIZE (12) HHHHHHHHHHHH
for example: 010102020303 means the match rule is
'if-match destination-mac 0101-0202-0303'
Classifier: SIZE (1..31) classifier name
InboundInterface: SIZE (1..47) interface description
TopMostVlanID, VlanID:SIZE(1..39), up to 8 value can be input;
for example: 1#11#111#1111 means the match rule if
'if-match vlanid 1 11 111 1111'
SourceIp: SIZE (12) HHHHHHHHHHHH
for example: 010102020303 means the match rule is
'if-match source-ip mac-address 0101-0202-0303'
other types: Set is not permitted. Zero-length String will
be returned when getting.
"
::= { h3cCBQoSMatchRuleCfgInfoEntry 4 }
h3cCBQoSMatchRuleIntValue1 OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Value of Match Rule.
IPv4 ACL: 2000~5999
IPv6 ACL: 2000~3999; 10000~42767
Software QoS: 2000~3999
Hardware Qos: 10000~42767
RtpPort: start-port: 2000~65535
IpPrec: value: 0~7, up to 8 value can be input. The bit set to
1 of the last 8 bits of h3cCBQoSMatchRuleIntValue1 is
used to indicate the value 0~7.
for example: 0x53(Binary format is 01010011)
means the match rule is 'if-match ip-prec 0 1 4 6'
Dscp: value:0~63,up to 8 value can be input.
The bit set to 1 of h3cCBQoSMatchRuleIntValue1 is used
to indicate the value 32~63.
The bit set to 1 of h3cCBQoSMatchRuleIntValue2 is used to
indicate the value 0~31.
for example: 0x80000003 means the match rule is 'if-match
dscp 32 33 63'
Vlan8021p: value:0~7, up to 8 value can be input. The bit set
to 1 of the last 8 bits of h3cCBQoSMatchRuleIntValue1
is used to indicate the value 0~7.
for example: 0x53(Binary format is 01010011) means the
match rule is 'if-match customer-dot1p 0 1 4 6'
MplsExp: value:0~7, up to 8 value can be input. The bit set to 1
of the last 8 bits of h3cCBQoSMatchRuleIntValue1 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'
SourceIp: 1~4095
QosLocalID: 1~4095
AtmClp: 0~1
FrDe: 0~1
LocalPrecedence: 0~7, up to 8 value can be input. The bit set to
1 of the last 8 bits of h3cCBQoSMatchRuleIntValue1
is used to indicate the value 0~7.
for example: 0x53(Binary format is 01010011) means the match
rule is 'if-match localprecedence 0 1 4 6'
DropPriority: 0~2, up to 3 value can be input. The bit set to 1
of the last 3 bits of h3cCBQoSMatchRuleIntValue1 is
used to indicate the value 0~2.
ServiceDot1p: 0~7, up to 8 value can be input.
The bit set to 1 of the last 8 bits of
h3cCBQoSMatchRuleIntValue1 is used to indicate
the value 0~7.
for example: 0x53(Binary format is 01010011) means the match
rule is 'if-match service-dot1p 0 1 4 6'
other types: Set is not permitted. 0xffffffff will be returned
when getting.
"
::= { h3cCBQoSMatchRuleCfgInfoEntry 5 }
h3cCBQoSMatchRuleIntValue2 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 h3cCBQoSMatchRuleIntValue1 is used to indicate the value 32~63.
The bit set to 1 of h3cCBQoSMatchRuleIntValue2 is used to indicate the value 0~31.
for example: 0x80000003 means the match rule is 'if-match dscp 0 1 31'
other types: Set is not permitted. 0xffffffff will be returned when getting.
"
::= { h3cCBQoSMatchRuleCfgInfoEntry 6 }
h3cCBQoSMatchIpAddressType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A value that represents a type of Internet address.
unknown(0) An unknown address type. This value MUST
be used if the value of the corresponding
InetAddress object is a zero-length string.
It may also be used to indicate an IP address
which is not in one of the formats defined below.
ipv4(1) An IPv4 address as defined by the
InetAddressIPv4 textual convention.
ipv6(2) A global IPv6 address as defined by the
InetAddressIPv6 textual convention.
ipv4z(3) A non-global IPv4 address including a zone
index as defined by the InetAddressIPv4z textual convention.
ipv6z(4) A non-global IPv6 address including a zone
index as defined by the InetAddressIPv6z textual convention.
dns(16) A DNS domain name as defined by the
InetAddressDNS textual convention.
Value of match rule.
SourceIp support this node.
other types: Set is not permitted. Unknown will be returned when getting.
"
::= { h3cCBQoSMatchRuleCfgInfoEntry 7 }
h3cCBQoSMatchIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Denotes a generic Internet address.
SourceIP support this node.
other types: Set is not permitted. NULL will be returned when getting.
"
::= { h3cCBQoSMatchRuleCfgInfoEntry 8 }
h3cCBQoSMatchRuleRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::= { h3cCBQoSMatchRuleCfgInfoEntry 9 }
-- h3cCBQoSBehaviorObjects
h3cCBQoSBehaviorObjects OBJECT IDENTIFIER ::= { h3cCBQoSObjects 2 }
-- Traffic Behavior Next Index
h3cCBQoSBehaviorIndexNext OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object contains an appropriate value to be used for
h3cCBQoSBehaviorIndex when creating rows in the
h3cCBQoSBehaviorCfgInfoTable."
::= { h3cCBQoSBehaviorObjects 1 }
-- Traffic Behavior
h3cCBQoSBehaviorCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cCBQoSBehaviorCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of Traffic Behavior configuration information."
::= { h3cCBQoSBehaviorObjects 2 }
h3cCBQoSBehaviorCfgInfoEntry OBJECT-TYPE
SYNTAX H3cCBQoSBehaviorCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Traffic Behavior Configuration Information Entry."
INDEX { h3cCBQoSBehaviorIndex }
::= { h3cCBQoSBehaviorCfgInfoTable 1 }
H3cCBQoSBehaviorCfgInfoEntry ::=
SEQUENCE
{
h3cCBQoSBehaviorIndex
Integer32,
h3cCBQoSBehaviorName
OCTET STRING,
h3cCBQoSBehaviorType
INTEGER,
h3cCBQoSBehaviorRowStatus
RowStatus
}
h3cCBQoSBehaviorIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of Traffic Behavior."
::= { h3cCBQoSBehaviorCfgInfoEntry 1 }
h3cCBQoSBehaviorName OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (1..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Name of Traffic Behavior."
::= { h3cCBQoSBehaviorCfgInfoEntry 2 }
h3cCBQoSBehaviorType OBJECT-TYPE
SYNTAX INTEGER
{
systemDefined(1),
userDefined(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of behavior."
::= { h3cCBQoSBehaviorCfgInfoEntry 3 }
h3cCBQoSBehaviorRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::= { h3cCBQoSBehaviorCfgInfoEntry 4 }
-- CAR
h3cCBQoSCarCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cCBQoSCarCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of CAR feature configuration information."
::= { h3cCBQoSBehaviorObjects 3 }
h3cCBQoSCarCfgInfoEntry OBJECT-TYPE
SYNTAX H3cCBQoSCarCfgInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CAR Configuration Information Entry."
INDEX { h3cCBQoSBehaviorIndex }
::= { h3cCBQoSCarCfgInfoTable 1 }
H3cCBQoSCarCfgInfoEntry ::=
SEQUENCE
{
h3cCBQoSCarCir
Unsigned32,
h3cCBQoSCarCbs
Unsigned32,
h3cCBQoSCarEbs
Unsigned32,
h3cCBQoSCarPir
Unsigned32,
h3cCBQoSCarPbs
Unsigned32,
h3cCBQoSCarGreenAction
CarAction,
h3cCBQoSCarGreenRemarkValue
Integer32,
h3cCBQoSCarYellowAction
CarAction,
h3cCBQoSCarYellowRemarkValue
Integer32,
h3cCBQoSCarRedAction
CarAction,
h3cCBQoSCarRedRemarkValue
Integer32,
h3cCBQoSCarPolicedPriorityMapType
INTEGER,
h3cCBQoSCarRowStatus
RowStatus
}
h3cCBQoSCarCir OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed Information Rate. Unit: kbps."
::= { h3cCBQoSCarCfgInfoEntry 1 }
h3cCBQoSCarCbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Committed Burst Size. Unit: byte."
::= { h3cCBQoSCarCfgInfoEntry 2 }
h3cCBQoSCarEbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Excess Burst Size. Unit: byte.
Only software QoS support this node.
4294967295 is returned only when getting value from hardware QoS.
4294967295 can't be set."
DEFVAL {0}
::= { h3cCBQoSCarCfgInfoEntry 3 }
h3cCBQoSCarPir OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Peak Information Rate. Unit: kbps.
Only hardware QoS support this node.
4294967295 is returned only when getting value from software QoS.
4294967295 can't be set."
::= { h3cCBQoSCarCfgInfoEntry 4 }
h3cCBQoSCarPbs OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Peak Burst Size. Unit: byte.
Only hardware QoS support this node.
4294967295 is returned only when getting value from software QoS.
4294967295 can't be set."
::= { h3cCBQoSCarCfgInfoEntry 5 }
h3cCBQoSCarGreenAction OBJECT-TYPE
SYNTAX CarAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Green Action
Hardware QoS : pass, discard, remark.
Software QoS : pass, discard, remark IP Precedence, remark DSCP, remark MPLS EXP.
"
DEFVAL {pass}
::= { h3cCBQoSCarCfgInfoEntry 6 }
h3cCBQoSCarGreenRemarkValue OBJECT-TYPE
SYNTAX Integer32 (0..63|255)
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.
255 is returned only when getting value from hardware QoS or when action being pass,discard of software QoS.
255 can't be set.
"
::= { h3cCBQoSCarCfgInfoEntry 7 }
h3cCBQoSCarYellowAction OBJECT-TYPE
SYNTAX CarAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Yellow Action:
Only hardware QoS support this node. Hardware QoS support pass, discard, remark.
invalid is returned only when getting value from software QoS.
invalid can't be set.
"
DEFVAL {remark}
::= { h3cCBQoSCarCfgInfoEntry 8 }
h3cCBQoSCarYellowRemarkValue OBJECT-TYPE
SYNTAX Integer32 (0..63|255)
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.
255 is returned only when getting value from hardware QoS or when action being pass, discard of software QoS.
255 can't be set."
::= { h3cCBQoSCarCfgInfoEntry 9 }
h3cCBQoSCarRedAction OBJECT-TYPE
SYNTAX CarAction
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Red Action:
Hardware QoS : pass, discard, remark.
Software QoS : pass, discard, remark IP Precedence, remark DSCP, remark MPLS EXP.
"
DEFVAL {discard}
::= { h3cCBQoSCarCfgInfoEntry 10 }
h3cCBQoSCarRedRemarkValue OBJECT-TYPE
SYNTAX Integer32 (0..63|255)
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.
255 is returned only when getting value from hardware QoS or when action being pass, discard of software QoS.
255 can't be set."
::= { h3cCBQoSCarCfgInfoEntry 11 }
h3cCBQoSCarPolicedPriorityMapType OBJECT-TYPE
SYNTAX INTEGER
{
none(0),
policed-service-map(1),
local-precedence-dot1p-map(2),
drop-precedence-map(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of priority map."
DEFVAL { none }
::= { h3cCBQoSCarCfgInfoEntry 12 }
h3cCBQoSCarRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"RowStatus."
::= { h3cCBQoSCarCfgInfoEntry 13 }
--
-- nodes of aggregative CAR applyed behavior
--
h3cCBQoSAggregativeCarCfgInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF H3cCBQoSAggregativeCarCfgInfoEntry
MAX-ACCESS not-accessible