blob: fd2eb67b0748076ddf5f7cb8653428c87d562bf8 (
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/packet-length.xml.i -->
<leafNode name="packet-length">
<properties>
<help>Payload size in bytes, including header and data to match</help>
<valueHelp>
<format>u32:1-65535</format>
<description>Packet length to match</description>
</valueHelp>
<valueHelp>
<format><start-end></format>
<description>Packet length range to match</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--allow-range --range 1-65535"/>
</constraint>
<multi/>
</properties>
</leafNode>
<leafNode name="packet-length-exclude">
<properties>
<help>Payload size in bytes, including header and data not to match</help>
<valueHelp>
<format>u32:1-65535</format>
<description>Packet length not to match</description>
</valueHelp>
<valueHelp>
<format><start-end></format>
<description>Packet length range not to match</description>
</valueHelp>
<constraint>
<validator name="numeric" argument="--allow-range --range 1-65535"/>
</constraint>
<multi/>
</properties>
</leafNode>
<!-- include end -->
|