summaryrefslogtreecommitdiff
path: root/interface-definitions/policy-local-route.xml.in
blob: 86445b65dcd536e811231f635b3a3e587eb19a87 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version="1.0"?>
<!-- Policy local-route -->
<interfaceDefinition>
  <node name="policy">
    <children>
      <node name="local-route" owner="${vyos_conf_scripts_dir}/policy-local-route.py">
        <properties>
          <help>IPv4 policy route of local traffic</help>
        </properties>
        <children>
          <tagNode name="rule">
            <properties>
              <help>Policy local-route rule set number</help>
              <valueHelp>
                <!-- table main with prio 32766 -->
                <format>u32:1-32765</format>
                <description>Local-route rule number (1-219)</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 1-32765"/>
              </constraint>
            </properties>
            <children>
              <node name="set">
                <properties>
                  <help>Packet modifications</help>
                </properties>
                <children>
                  <leafNode name="table">
                    <properties>
                      <help>Routing table to forward packet with</help>
                      <valueHelp>
                        <format>u32:1-200</format>
                        <description>Table number</description>
                      </valueHelp>
                      <completionHelp>
                        <list>main</list>
                      </completionHelp>
                    </properties>
                  </leafNode>
                </children>
              </node>
              <leafNode name="fwmark">
                <properties>
                  <help>Match fwmark value</help>
                  <valueHelp>
                    <format>u32:1-2147483647</format>
                    <description>Address to match against</description>
                  </valueHelp>
                  <constraint>
                    <validator name="numeric" argument="--range 1-2147483647"/>
                  </constraint>
                </properties>
              </leafNode>
              <leafNode name="source">
                <properties>
                  <help>Source address or prefix</help>
                  <valueHelp>
                    <format>ipv4</format>
                    <description>Address to match against</description>
                  </valueHelp>
                  <valueHelp>
                    <format>ipv4net</format>
                    <description>Prefix to match against</description>
                  </valueHelp>
                  <constraint>
                    <validator name="ipv4-address"/>
                    <validator name="ip-prefix"/>
                  </constraint>
                  <multi/>
                </properties>
              </leafNode>
            </children>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>