-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRADLAN-QOS-SERV
1328 lines (1177 loc) · 40.6 KB
/
RADLAN-QOS-SERV
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
RADLAN-QOS-SERV DEFINITIONS ::= BEGIN
-- Version: 7.39_10_00
-- Date: 31 May 2005
--
-- 22-Dec-2003 Add scalar rlQosServMibAction.
-- 12-Jan-2004 Change the index to name table to be read-write and
-- add rlQosServMibAction value 'noImportPolicy'.
-- 26-Jan-2004 Split Template's and FCE's TCP and UDP port fields onto
-- sperate ones.
-- 18-Jan-2005 RevitalM
-- 1. Merge Template's and FCE's TCP and UDP port fields into one field for both profiles.
-- 2. Add two service types: committedBoundBW and trust.
-- 25-Jan-2005 LiorM
-- 1. Add VPT, Ethertype,ICMP code , ICMP type , IGMP Type and TCP flags to template and FCE
-- 20-Feb-2005 GalitV
-- 1. Add rlQosServFceVptMask, rlQosServFceTcpFlagsMask
-- 29-May-2005 RevitalM
-- 1. Change default value of rlQosServFceEtherType to 1501 (=minimum value for etherType)
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32,
IpAddress FROM SNMPv2-SMI
InterfaceIndex FROM IF-MIB
RowStatus, TruthValue FROM RADLAN-SNMPv2
TEXTUAL-CONVENTION, DisplayString,
MacAddress FROM SNMPv2-TC
PortList FROM Q-BRIDGE-MIB
rnd FROM RADLAN-MIB;
rlQosServ MODULE-IDENTITY
LAST-UPDATED "200308280024Z" -- August 28, 2003
ORGANIZATION "Radlan Computer Communication Ltd."
CONTACT-INFO
"radlan.com"
DESCRIPTION
"The MIB module describes the private MIB for QOS service mode."
REVISION "200310280024Z" -- October 28, 2003
DESCRIPTION
"Initial revision"
::= { rnd 99 }
RlQosServServiceStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of service statuses"
SYNTAX INTEGER {
active(1),
suspended(2)
}
RlQosServNamedTableId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Specifies one of the named tables Id"
SYNTAX INTEGER {
fcl(1),
fce(2),
profile(3)
}
-- QoS Template Table
rlQosServTemplateTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosServTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies classification template information.
Currently this table will contain exactly one entry."
::= { rlQosServ 1 }
rlQosServTemplateEntry OBJECT-TYPE
SYNTAX RlQosServTemplateEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The entry of this table describes all classifier fields.
The index is sequential integer represent by rlQosServTemplateEntry."
INDEX { rlQosServTemplateIndex }
::= { rlQosServTemplateTable 1 }
RlQosServTemplateEntry::= SEQUENCE {
rlQosServTemplateIndex INTEGER,
rlQosServTemplateDestMac TruthValue,
rlQosServTemplateDestMacMask MacAddress,
rlQosServTemplateSrcMac TruthValue,
rlQosServTemplateSrcMacMask MacAddress,
rlQosServTemplateVlan TruthValue,
rlQosServTemplateDestIp TruthValue,
rlQosServTemplateDestIpMask IpAddress,
rlQosServTemplateSrcIp TruthValue,
rlQosServTemplateSrcIpMask IpAddress,
rlQosServTemplateIpProtocol TruthValue,
rlQosServTemplateSrcPort TruthValue,
rlQosServTemplateDestPort TruthValue,
rlQosServTemplateTos TruthValue,
rlQosServTemplateVpt TruthValue,
rlQosServTemplateEtherType TruthValue,
rlQosServTemplateTcpFlags TruthValue,
rlQosServTemplateIcmpType TruthValue,
rlQosServTemplateIcmpCode TruthValue,
rlQosServTemplateIgmpType TruthValue
}
rlQosServTemplateIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary index for the template table."
::= { rlQosServTemplateEntry 1 }
rlQosServTemplateDestMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the destination Mac field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 2 }
rlQosServTemplateDestMacMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination Mac address mask. It may specify any byte (not bit),
within the Mac address, for classification, designated by 0."
-- DEFVAL { '000000000000'H }
::= { rlQosServTemplateEntry 3 }
rlQosServTemplateSrcMac OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the source Mac field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 4 }
rlQosServTemplateSrcMacMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source Mac address mask. It may specify any byte (not bit),
within the Mac address, for classification, designated by 0."
-- DEFVAL { '000000000000'H }
::= { rlQosServTemplateEntry 5 }
rlQosServTemplateVlan OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Vlan field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 6 }
rlQosServTemplateDestIp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the destination Ip field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 7 }
rlQosServTemplateDestIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Destination Ip address mask. It may specify any byte (not bit),
within the Ip address, for classification, designated by 0."
DEFVAL { '00000000'H }
::= { rlQosServTemplateEntry 8 }
rlQosServTemplateSrcIp OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the source Ip field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 9 }
rlQosServTemplateSrcIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Source Ip address mask. It may specify any byte (not bit),
within the Ip address, for classification, designated by 0."
DEFVAL { '00000000'H }
::= { rlQosServTemplateEntry 10 }
rlQosServTemplateIpProtocol OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Ip protocol field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 11 }
rlQosServTemplateSrcPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Tcp/Udp source port field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 12 }
rlQosServTemplateDestPort OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Tcp/Udp destination port field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 13 }
rlQosServTemplateTos OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Tos field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 14 }
rlQosServTemplateVpt OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the VPT field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 15 }
rlQosServTemplateEtherType OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Ether Type field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 16 }
rlQosServTemplateTcpFlags OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Tcp flags (Control Bits) field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 17 }
rlQosServTemplateIcmpType OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Icmp type field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 18 }
rlQosServTemplateIcmpCode OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Icmp code field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 19 }
rlQosServTemplateIgmpType OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Include the Igmp type field as a template classifier."
DEFVAL { false }
::= { rlQosServTemplateEntry 20 }
-- QoS FCL (Flow Classification List) table
rlQosServFclTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosServFclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies FCL table information"
::= { rlQosServ 2 }
rlQosServFclEntry OBJECT-TYPE
SYNTAX RlQosServFclEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Flow Classification List with
It's Flow Classification Element.
The information includes the FCL index and reference to a FCE index.
The indices are the Fcl index represent by rlQosServFclIndex and the
Fce index represent by rlQosServFclFceIndex."
INDEX { rlQosServFclIndex,
rlQosServFclFcePriority }
::= { rlQosServFclTable 1 }
RlQosServFclEntry::= SEQUENCE {
rlQosServFclIndex INTEGER,
rlQosServFclFcePriority INTEGER,
rlQosServFclFceIndex INTEGER,
rlQosServFclStatus RowStatus
}
rlQosServFclIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary index for the FCL table. Value '0' is invalid."
::= { rlQosServFclEntry 1 }
rlQosServFclFcePriority OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Priority of the FCE within the FCL."
::= { rlQosServFclEntry 2 }
rlQosServFclFceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A reference to the FCE index."
::= { rlQosServFclEntry 3 }
rlQosServFclStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosServFclEntry 4 }
-- QoS FCE (Flow Classification Element) table
rlQosServFceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosServFceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies FCE table information"
::= { rlQosServ 3 }
rlQosServFceEntry OBJECT-TYPE
SYNTAX RlQosServFceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one Flow Classifier Element.
The information includes ACE index and a combination of all the other
classifications, as depicted in the selection field.
Classifiers are Mac and Ip source and destination addresses, Vlan,
Ip protocol, TCP & UDP source and destination ports, Dscp and Ip
precedence values.
The index is a sequential integer represent by rlQosServFceIndex."
INDEX { rlQosServFceIndex }
::= { rlQosServFceTable 1 }
RlQosServFceEntry::= SEQUENCE {
rlQosServFceIndex INTEGER,
rlQosServFceErrorCode INTEGER,
rlQosServFceSelection BITS,
rlQosServFceDestMac MacAddress,
rlQosServFceDestMacMask MacAddress,
rlQosServFceSrcMac MacAddress,
rlQosServFceSrcMacMask MacAddress,
rlQosServFceVlan INTEGER,
rlQosServFceVlanMask INTEGER,
rlQosServFceDestIp IpAddress,
rlQosServFceDestIpMask IpAddress,
rlQosServFceSrcIp IpAddress,
rlQosServFceSrcIpMask IpAddress,
rlQosServFceIpProtocol INTEGER,
rlQosServFceDestPort INTEGER,
rlQosServFceDestPortMask INTEGER,
rlQosServFceSrcPort INTEGER,
rlQosServFceSrcPortMask INTEGER,
rlQosServFceDscp INTEGER,
rlQosServFceIpPrecedence INTEGER,
rlQosServFceVpt INTEGER,
rlQosServFceVptMask INTEGER,
rlQosServFceEtherType INTEGER,
rlQosServFceTcpFlags INTEGER,
rlQosServFceTcpFlagsMask INTEGER,
rlQosServFceIcmpType INTEGER,
rlQosServFceIcmpCode INTEGER,
rlQosServFceIgmpType INTEGER,
rlQosServFceStatus RowStatus
}
rlQosServFceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary incremental Index for the Fce table."
::= { rlQosServFceEntry 1 }
rlQosServFceErrorCode OBJECT-TYPE
SYNTAX INTEGER {
noError(1),
noTemplate(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Fce error code."
DEFVAL { noError }
::= { rlQosServFceEntry 2 }
rlQosServFceSelection OBJECT-TYPE
SYNTAX BITS {
macDestAddr(0),
macSrcAddr(1),
vlan(2),
ipDestAddr(3),
ipSrcAddr(4),
ipProtocol(5),
destPort(6),
srcPort(7),
dscp(8),
ipPrecedence(9),
vpt(10),
etherType(11),
tcpFlags(12),
icmpType(13),
icmpCode(14),
igmpType(15)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Flow Classification Elements selection."
::= { rlQosServFceEntry 3 }
rlQosServFceDestMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the destination Mac address to compare with."
-- DEFVAL { '000000000000'H }
::= { rlQosServFceEntry 4 }
rlQosServFceDestMacMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the destination Mac address mask to compare with.
It may specify any byte (not bit), designated by 0."
-- DEFVAL { '000000000000'H }
::= { rlQosServFceEntry 5 }
rlQosServFceSrcMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the source Mac address to compare with."
-- DEFVAL { '000000000000'H }
::= { rlQosServFceEntry 6 }
rlQosServFceSrcMacMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the source Mac address mask to compare.
It may specify any byte (not bit), designated by 0."
-- DEFVAL { '000000000000'H }
::= { rlQosServFceEntry 7 }
rlQosServFceVlan OBJECT-TYPE
SYNTAX INTEGER(0..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Vlan to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 8 }
rlQosServFceVlanMask OBJECT-TYPE
SYNTAX INTEGER(0..4095)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates 12-bits Vlan bits to compare.
It may specify any byte (not bit), designated by 0."
DEFVAL { 0 }
::= { rlQosServFceEntry 9 }
rlQosServFceDestIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the destination Ip address to compare with."
DEFVAL { '00000000'H }
::= { rlQosServFceEntry 10 }
rlQosServFceDestIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the destination Ip address mask to compare.
It may specify any byte (not bit), designated by 0."
DEFVAL { '00000000'H }
::= { rlQosServFceEntry 11 }
rlQosServFceSrcIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the source Ip address to compare with."
DEFVAL { '00000000'H }
::= { rlQosServFceEntry 12 }
rlQosServFceSrcIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the source Ip address mask to compare.
It may specify any byte (not bit), designated by 0."
DEFVAL { '00000000'H }
::= { rlQosServFceEntry 13 }
rlQosServFceIpProtocol OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Ip protocol to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 14 }
rlQosServFceDestPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the TCP/UDP destination port to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 15 }
rlQosServFceDestPortMask OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates 16-bits TCP/UDP destination port bits to compare.
It may specify any byte (not bit), designated by 0."
DEFVAL { 0 }
::= { rlQosServFceEntry 16 }
rlQosServFceSrcPort OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the TCP/UDP source port to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 17 }
rlQosServFceSrcPortMask OBJECT-TYPE
SYNTAX INTEGER(0..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates 16-bits TCP/UDP source port bits to compare.
It may specify any byte (not bit), designated by 0."
DEFVAL { 0 }
::= { rlQosServFceEntry 18 }
rlQosServFceDscp OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Destination Mac address to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 19 }
rlQosServFceIpPrecedence OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Ip precedence to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 20 }
rlQosServFceVpt OBJECT-TYPE
SYNTAX INTEGER(0..7)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the VPT to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 21 }
rlQosServFceVptMask OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the VPT mask to compare with.
It may specify any bit, designated by 0."
-- DEFVAL { 0 }
::= { rlQosServFceEntry 22 }
rlQosServFceEtherType OBJECT-TYPE
SYNTAX INTEGER(1501..65536)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicate the Ether Type to compare with."
DEFVAL { 1501 }
::= { rlQosServFceEntry 23 }
rlQosServFceTcpFlags OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Tcp Flags field to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 24 }
rlQosServFceTcpFlagsMask OBJECT-TYPE
SYNTAX INTEGER(0..63)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Tcp Flags field to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 25 }
rlQosServFceIcmpType OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Icmp type to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 26 }
rlQosServFceIcmpCode OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Icmp code to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 27 }
rlQosServFceIgmpType OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates the Igmp type to compare with."
DEFVAL { 0 }
::= { rlQosServFceEntry 28 }
rlQosServFceStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of this table entry.
It is used to delete/Add an entry from this table."
::= { rlQosServFceEntry 29 }
-- QoS profile table
rlQosServProfileTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosServProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies (service) profile table information"
::= { rlQosServ 4 }
rlQosServProfileEntry OBJECT-TYPE
SYNTAX RlQosServProfileEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one service profile element.
The information includes: Profile name, type and various numeric
parameters associated with the profile's service types.
The index is sequential integer represent by rlQosServProfileIndex."
INDEX { rlQosServProfileIndex }
::= { rlQosServProfileTable 1 }
RlQosServProfileEntry::= SEQUENCE {
rlQosServProfileIndex INTEGER,
rlQosServProfileType INTEGER,
rlQosServProfileServiceType INTEGER,
rlQosServProfileIngressBurstSize Unsigned32,
rlQosServProfileMaxBandwidth Unsigned32,
rlQosServProfileMinBandwidth Unsigned32,
rlQosServProfileMaxDelay Unsigned32,
rlQosServProfileStatus RowStatus
}
rlQosServProfileIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary index for the profile table."
::= { rlQosServProfileEntry 1 }
rlQosServProfileType OBJECT-TYPE
SYNTAX INTEGER {
regular(1),
aggregate(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Profile's type"
DEFVAL{ regular }
::= { rlQosServProfileEntry 2 }
rlQosServProfileServiceType OBJECT-TYPE
SYNTAX INTEGER {
bestEffort(1),
minDelay(2),
committedDelay(3),
minMaxBandwidth(4),
committedBoundBandwidth(5),
rateLimit(6),
trustCos(7),
trustDscp(8),
trust(9),
drop(10),
dropAndDisablePort(11)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Profile's service type."
DEFVAL{ bestEffort }
::= { rlQosServProfileEntry 3 }
rlQosServProfileIngressBurstSize OBJECT-TYPE
SYNTAX Unsigned32(0..1000000)
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Profile's Ingress Burst Size, used only by the 'rate limit' service."
DEFVAL{ 3000 }
::= { rlQosServProfileEntry 4 }
rlQosServProfileMaxBandwidth OBJECT-TYPE
SYNTAX Unsigned32(0..10000000)
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Profile's Max Bandwidth, used by the 'min delay', committed delay'
'min max bandwidth' and committed Bound Bandwidth'services.
Value 0 is used only as default value, and is invalid otherwise."
DEFVAL{ 0 }
::= { rlQosServProfileEntry 5 }
rlQosServProfileMinBandwidth OBJECT-TYPE
SYNTAX Unsigned32(0..10000000)
UNITS "bytes"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Profile's Min Bandwidth, used only by the 'min max bandwidth'
service.
Value 0 is used only as default value, and is invalid otherwise."
DEFVAL{ 0 }
::= { rlQosServProfileEntry 6 }
rlQosServProfileMaxDelay OBJECT-TYPE
SYNTAX Unsigned32
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Profile's Max Delay, used only by the 'committed delay' service.
Value 0 is used only as default value, and is invalid otherwise."
DEFVAL{ 0 }
::= { rlQosServProfileEntry 7 }
rlQosServProfileStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosServProfileEntry 8 }
-- QoS service table
rlQosServServiceTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosServServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies service table information."
::= { rlQosServ 5 }
rlQosServServiceEntry OBJECT-TYPE
SYNTAX RlQosServServiceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table describes one service profile element.
The information includes: service's index, priority, pointers to
associated profile and Fcl, operational and administrative statuses,
ingress and egress interface lists, and two operational parameter
values associated with a service type, as defined in the profile table.
The index is sequential integer represent by rlQosServServiceIndex."
INDEX { rlQosServServiceIndex }
::= { rlQosServServiceTable 1 }
RlQosServServiceEntry::= SEQUENCE {
rlQosServServiceIndex INTEGER,
rlQosServServicePriority Unsigned32,
rlQosServServiceProfilePointer INTEGER,
rlQosServServiceFclPointer INTEGER,
rlQosServServiceInIfList PortList,
rlQosServServiceOutIfList PortList,
rlQosServServiceScaledOutIfList PortList,
rlQosServServiceProfileParamOper Unsigned32,
rlQosServServiceStatusOper RlQosServServiceStatus,
rlQosServServiceStatusAdmin RlQosServServiceStatus,
rlQosServServiceStatus RowStatus
}
rlQosServServiceIndex OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An arbitrary index for the service table."
::= { rlQosServServiceEntry 1 }
rlQosServServicePriority OBJECT-TYPE
SYNTAX Unsigned32(1..65535)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Service's priority."
::= { rlQosServServiceEntry 2 }
rlQosServServiceProfilePointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Pointer to attached profile entry."
::= { rlQosServServiceEntry 3 }
rlQosServServiceFclPointer OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Pointer to attached FCL entry."
::= { rlQosServServiceEntry 4 }
rlQosServServiceInIfList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Ingress interface list associated with this service entry."
::= { rlQosServServiceEntry 5 }
rlQosServServiceOutIfList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Egress interface list associated with this service entry."
::= { rlQosServServiceEntry 6 }
rlQosServServiceScaledOutIfList OBJECT-TYPE
SYNTAX PortList
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Egress scaled interface list associated with this service entry."
::= { rlQosServServiceEntry 7 }
rlQosServServiceProfileParamOper OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"If the service type specified in a profile associated with this entry
has a parameter, this object instance specifies the parameter's
operative value.
This value will be different from the value defined in the associated
profile only in case of scaling out, otherwise value 0 is used."
::= { rlQosServServiceEntry 8 }
rlQosServServiceStatusOper OBJECT-TYPE
SYNTAX RlQosServServiceStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operational value of the service status."
::= { rlQosServServiceEntry 9 }
rlQosServServiceStatusAdmin OBJECT-TYPE
SYNTAX RlQosServServiceStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Administrative value of the service status."
DEFVAL{ suspended }
::= { rlQosServServiceEntry 10 }
rlQosServServiceStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The status of a table entry.
It is used to delete/Add an entry from this table."
::= { rlQosServServiceEntry 11 }
-- QoS service priority table
rlQosServServicePriorityTable OBJECT-TYPE
SYNTAX SEQUENCE OF RlQosServServicePriorityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table specifies service priority table information."
::= { rlQosServ 6 }
rlQosServServicePriorityEntry OBJECT-TYPE
SYNTAX RlQosServServicePriorityEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Each entry in this table maps a priority to a service.
The information includes: service's priority and the service index
in the service table.
The index is sequential integer represent by
rlQosServServicePriorityIndex."
INDEX { rlQosServServicePriorityIndex }
::= { rlQosServServicePriorityTable 1 }
RlQosServServicePriorityEntry::= SEQUENCE {
rlQosServServicePriorityIndex INTEGER,
rlQosServServicePriorityPointer INTEGER
}
rlQosServServicePriorityIndex OBJECT-TYPE
SYNTAX INTEGER(1..65535)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The service priority."
::= { rlQosServServicePriorityEntry 1 }
rlQosServServicePriorityPointer OBJECT-TYPE