diff options
author | Christian Poessinger <christian@poessinger.com> | 2018-01-06 13:15:00 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-01-06 13:15:00 +0100 |
commit | 52a2f56ec61935c9d54cfd0d011f534046e410d8 (patch) | |
tree | 0b3c66562bf38ab03275447ed975b346d34013b7 /interface-definitions | |
parent | 30eae347cc0482d79604fa8966bf0b225bb7e918 (diff) | |
parent | 4022a8820ccf0539f2eb5c19d9abd777810a48b4 (diff) | |
download | vyos-1x-52a2f56ec61935c9d54cfd0d011f534046e410d8.tar.gz vyos-1x-52a2f56ec61935c9d54cfd0d011f534046e410d8.zip |
Merge branch 't379-udp-bcast-relay' into current
* t379-udp-bcast-relay:
bcast-relay: Initial configuration nodes for 'service bcast-relay'
Support setting optional 'type' node in command templates other than 'txt'
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/bcast-relay.xml | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/interface-definitions/bcast-relay.xml b/interface-definitions/bcast-relay.xml new file mode 100644 index 000000000..0e2f26425 --- /dev/null +++ b/interface-definitions/bcast-relay.xml @@ -0,0 +1,64 @@ +<?xml version="1.0"?> + +<!-- UDP broadcast relay configuration --> + +<interfaceDefinition> + <node name="service"> + <children> + <node name="bcast-relay"> + <properties> + <help>UDP Broadcast Relay parameters</help> + </properties> + <children> + <tagNode name="id" owner="${vyos_sbindir}/vyos-config-bcast-relay.py"> + <properties> + <help>Unique ID for each UDP port to forward</help> + <valueHelp> + <format>u32:1-99</format> + <description>Numerical ID #</description> + </valueHelp> + <type>u32</type> + <priority>990</priority> + </properties> + <children> + <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> + <type>ipv4</type> + </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>${vyatta_sbindir}/vyatta-interfaces.pl --show all</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> + <type>u32</type> + </properties> + </leafNode> + </children> + </tagNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |