blob: fa60c0c8ac0f9271630ce992d531d2f129d90011 (
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
|
<!-- include start from firewall/address-ipv6.xml.i -->
<leafNode name="address">
<properties>
<help>IP address, subnet, or range</help>
<valueHelp>
<format>ipv6</format>
<description>IP address to match</description>
</valueHelp>
<valueHelp>
<format>ipv6net</format>
<description>Subnet to match</description>
</valueHelp>
<valueHelp>
<format>ipv6range</format>
<description>IP range to match</description>
</valueHelp>
<valueHelp>
<format>!ipv6</format>
<description>Match everything except the specified address</description>
</valueHelp>
<valueHelp>
<format>!ipv6net</format>
<description>Match everything except the specified prefix</description>
</valueHelp>
<valueHelp>
<format>!ipv6range</format>
<description>Match everything except the specified range</description>
</valueHelp>
<constraint>
<validator name="ipv6"/>
<validator name="ipv6-exclude"/>
<validator name="ipv6-range"/>
<validator name="ipv6-range-exclude"/>
</constraint>
</properties>
</leafNode>
<!-- include end -->
|