diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-05-19 22:27:50 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-05-19 22:27:50 +0200 |
commit | f078e743c9c36b07a98d7ab433483cfca8ed2e0a (patch) | |
tree | 8e69bbbe54556042cf086e77742e537913954907 /interface-definitions | |
parent | bc060277ab553a1971054b4990a70c7476cae62f (diff) | |
download | vyos-1x-f078e743c9c36b07a98d7ab433483cfca8ed2e0a.tar.gz vyos-1x-f078e743c9c36b07a98d7ab433483cfca8ed2e0a.zip |
wireguard: T2481: support IPv6 based underlay
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/interfaces-wireguard.xml.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/interface-definitions/interfaces-wireguard.xml.in b/interface-definitions/interfaces-wireguard.xml.in index 9db608afb..5894f159d 100644 --- a/interface-definitions/interfaces-wireguard.xml.in +++ b/interface-definitions/interfaces-wireguard.xml.in @@ -89,10 +89,14 @@ <help>IP address of tunnel remote end</help> <valueHelp> <format>ipv4</format> - <description>IP address to listen for incoming connections</description> + <description>IPv4 address to listen for incoming connections</description> + </valueHelp> + <valueHelp> + <format>ipv6</format> + <description>IPv6 address to listen for incoming connections</description> </valueHelp> <constraint> - <validator name="ipv4-address"/> + <validator name="ip-address"/> </constraint> </properties> </leafNode> |