blob: 55c0ea44da2b495c4f938e14e92a163bf56a01de (
plain)
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
|
<!-- include start from qos/set-dscp.xml.i -->
<leafNode name="set-dscp">
<properties>
<help>Change the Differentiated Services (DiffServ) field in the IP header</help>
<completionHelp>
<list>default reliability throughput lowdelay priority immediate flash flash-override critical internet network</list>
</completionHelp>
<valueHelp>
<format>u32:0-63</format>
<description>Priority order for bandwidth pool</description>
</valueHelp>
<valueHelp>
<format>default</format>
<description>match DSCP (000000)</description>
</valueHelp>
<valueHelp>
<format>reliability</format>
<description>match DSCP (000001)</description>
</valueHelp>
<valueHelp>
<format>throughput</format>
<description>match DSCP (000010)</description>
</valueHelp>
<valueHelp>
<format>lowdelay</format>
<description>match DSCP (000100)</description>
</valueHelp>
<valueHelp>
<format>priority</format>
<description>match DSCP (001000)</description>
</valueHelp>
<valueHelp>
<format>immediate</format>
<description>match DSCP (010000)</description>
</valueHelp>
<valueHelp>
<format>flash</format>
<description>match DSCP (011000)</description>
</valueHelp>
<valueHelp>
<format>flash-override</format>
<description>match DSCP (100000)</description>
</valueHelp>
<valueHelp>
<format>critical</format>
<description>match DSCP (101000)</description>
</valueHelp>
<valueHelp>
<format>internet</format>
<description>match DSCP (110000)</description>
</valueHelp>
<valueHelp>
<format>network</format>
<description>match DSCP (111000)</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--range 0-63"/>
<regex>(default|reliability|throughput|lowdelay|priority|immediate|flash|flash-override|critical|internet|network)</regex>
</constraint>
<constraintErrorMessage>Priority must be between 0 and 63</constraintErrorMessage>
</properties>
</leafNode>
<!-- include end -->
|