blob: dd4da48943e06c83908f4bbfc2e7e8453d635893 (
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
|
<!-- include start from firewall/dscp.xml.i -->
<leafNode name="dscp">
<properties>
<help>DSCP value</help>
<valueHelp>
<format>u32:0-63</format>
<description>DSCP value to match</description>
</valueHelp>
<valueHelp>
<format><start-end></format>
<description>DSCP range to match</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--allow-range --range 0-63"/>
</constraint>
<multi/>
</properties>
</leafNode>
<leafNode name="dscp-exclude">
<properties>
<help>DSCP value not to match</help>
<valueHelp>
<format>u32:0-63</format>
<description>DSCP value not to match</description>
</valueHelp>
<valueHelp>
<format><start-end></format>
<description>DSCP range not to match</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--allow-range --range 0-63"/>
</constraint>
<multi/>
</properties>
</leafNode>
<!-- include end -->
|