diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-12-30 16:30:05 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-12-30 16:31:21 +0100 |
commit | 37b33e3cedc2734c1339bbf4851703e7b5ff360c (patch) | |
tree | db36c1838147a85cfac1db8778988d9b89e5b6e9 /interface-definitions/dns-forwarding.xml.in | |
parent | 5a19563a2938f3a4626637bb1c6b9164bb2a410d (diff) | |
download | vyos-1x-37b33e3cedc2734c1339bbf4851703e7b5ff360c.tar.gz vyos-1x-37b33e3cedc2734c1339bbf4851703e7b5ff360c.zip |
xml: completion-help: add source-address completion helper
Commit bbc2a157 ("xml: completion-help: add helper for all local assigned IP
addresses") added a completionHelper script listing all local assigned
IPv4/IPv6 addresses. This commit extends the system to also list the available
addresses for the source-address CLI nodes.
Diffstat (limited to 'interface-definitions/dns-forwarding.xml.in')
-rw-r--r-- | interface-definitions/dns-forwarding.xml.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/interface-definitions/dns-forwarding.xml.in b/interface-definitions/dns-forwarding.xml.in index ad6eb2463..66b4db403 100644 --- a/interface-definitions/dns-forwarding.xml.in +++ b/interface-definitions/dns-forwarding.xml.in @@ -162,9 +162,10 @@ </leafNode> <leafNode name="source-address"> <properties> - <help>Local addresses from which to send DNS queries. - If unspecified, the querier will use any available address on - the outbound interface.</help> + <help>Local addresses from which to send DNS queries</help> + <completionHelp> + <script>${vyos_completion_dir}/list_local_ips.sh --both</script> + </completionHelp> <valueHelp> <format>ipv4</format> <description>IPv4 address from which to send traffic</description> |