summaryrefslogtreecommitdiff
path: root/interface-definitions/interfaces-loopback.xml
blob: 267731b1c54e94cf4a9b522fd30c48cfe2313d20 (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
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="interfaces">
    <children>
      <tagNode name="loopback" owner="${vyos_conf_scripts_dir}/interface-loopback.py">
        <properties>
          <help>Loopback interface</help>
          <priority>300</priority>
          <constraint>
            <regex>lo$</regex>
          </constraint>
          <constraintErrorMessage>Loopback interface must be named lo</constraintErrorMessage>
          <valueHelp>
            <format>lo</format>
            <description>Loopback interface</description>
          </valueHelp>
        </properties>
        <children>
          <leafNode name="address">
            <properties>
              <help>IP address</help>
              <valueHelp>
                <format>ipv4net</format>
                <description>IPv4 address and prefix length</description>
              </valueHelp>
              <valueHelp>
                <format>ipv6net</format>
                <description>IPv6 address and prefix length</description>
              </valueHelp>
              <multi/>
            </properties>
          </leafNode>
          <leafNode name="description">
            <properties>
              <help>Interface description</help>
              <constraint>
                <regex>^.{1,256}$</regex>
              </constraint>
              <constraintErrorMessage>Interface description too long (limit 256 characters)</constraintErrorMessage>
            </properties>
          </leafNode>
        </children>
      </tagNode>
    </children>
  </node>
</interfaceDefinition>