blob: 7f34de3bace73185da42e290d64b7eef041ea7a7 (
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
|
<!-- include start from firewall/firewall-hashing-parameters.xml.i -->
<leafNode name="hash">
<properties>
<help>Define the parameters of the packet header to apply the hashing</help>
<completionHelp>
<list>source-address destination-address source-port destination-port random</list>
</completionHelp>
<valueHelp>
<format>source-address</format>
<description>Use source IP address for hashing</description>
</valueHelp>
<valueHelp>
<format>destination-address</format>
<description>Use destination IP address for hashing</description>
</valueHelp>
<valueHelp>
<format>source-port</format>
<description>Use source port for hashing</description>
</valueHelp>
<valueHelp>
<format>destination-port</format>
<description>Use destination port for hashing</description>
</valueHelp>
<valueHelp>
<format>random</format>
<description>Do not use information from ip header. Use random value.</description>
</valueHelp>
<constraint>
<regex>(source-address|destination-address|source-port|destination-port|random)</regex>
</constraint>
<multi/>
</properties>
<defaultValue>random</defaultValue>
</leafNode>
<!-- include end -->
|