diff options
author | Christian Poessinger <christian@poessinger.com> | 2017-12-30 19:19:16 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2018-01-05 22:02:31 +0100 |
commit | 4022a8820ccf0539f2eb5c19d9abd777810a48b4 (patch) | |
tree | b7b1baef1108a47a12c486e8a8938073081e5026 /interface-definitions | |
parent | 97e75dae0c4e75fa35fed1fb3407a429f7bfe537 (diff) | |
download | vyos-1x-4022a8820ccf0539f2eb5c19d9abd777810a48b4.tar.gz vyos-1x-4022a8820ccf0539f2eb5c19d9abd777810a48b4.zip |
bcast-relay: Initial configuration nodes for 'service bcast-relay'
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> |