summaryrefslogtreecommitdiff
path: root/interface-definitions/bcast-relay.xml.in
blob: 1b354d88586b069ffb1b5bf1afceab0aed091749 (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
<?xml version="1.0"?>
<!-- UDP broadcast relay configuration -->
<interfaceDefinition>
  <node name="service">
    <children>
      <node name="broadcast-relay" owner="${vyos_conf_scripts_dir}/bcast_relay.py">
        <properties>
          <help>UDP broadcast relay service</help>
          <priority>990</priority>
        </properties>
        <children>
          #include <include/generic-disable-node.xml.i>
          <tagNode name="id">
            <properties>
              <help>Unique ID for each UDP port to forward</help>
              <valueHelp>
                <format>1-99</format>
                <description>Numerical ID #</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 1-99"/>
              </constraint>
            </properties>
            <children>
              #include <include/generic-disable-node.xml.i>
              <leafNode name="address">
                <properties>
                  <help>Set source IP of forwarded packets, otherwise original senders address is used</help>
                  <valueHelp>
                    <format>ipv4</format>
                    <description>Optional source address for forwarded packets</description>
                  </valueHelp>
                  <constraint>
                    <validator name="ipv4-address"/>
                  </constraint>
                </properties>
              </leafNode>
              <leafNode name="description">
                <properties>
                  <help>Description</help>
                </properties>
              </leafNode>
              <leafNode name="interface">
                <properties>
                  <help>Interface to repeat UDP broadcasts to [REQUIRED]</help>
                  <completionHelp>
                    <script>${vyos_completion_dir}/list_interfaces.py</script>
                  </completionHelp>
                  <multi/>
                </properties>
              </leafNode>
              <leafNode name="port">
                <properties>
                  <help>Destination or source port to listen and retransmit on [REQUIRED]</help>
                  <valueHelp>
                    <format>u32:1-65535</format>
                    <description>UDP port to listen on</description>
                  </valueHelp>
                  <constraint>
                    <validator name="numeric" argument="--range 1-65535"/>
                  </constraint>
                </properties>
              </leafNode>
            </children>
          </tagNode>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>