diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-18 22:12:09 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-18 22:12:09 +0200 |
commit | ae2dc55aa68679e828d4bb133fc515172c081d0f (patch) | |
tree | bd92290808c95d1a3eb343422ca4ecb4376e8f4c /interface-definitions/containers.xml.in | |
parent | d411a40a3598c55fae7abd8bc5f1876007aa704b (diff) | |
download | vyos-1x-ae2dc55aa68679e828d4bb133fc515172c081d0f.tar.gz vyos-1x-ae2dc55aa68679e828d4bb133fc515172c081d0f.zip |
container: T2216: add IPv6 support to container networks
Diffstat (limited to 'interface-definitions/containers.xml.in')
-rw-r--r-- | interface-definitions/containers.xml.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/interface-definitions/containers.xml.in b/interface-definitions/containers.xml.in index d990e41a3..bf672307c 100644 --- a/interface-definitions/containers.xml.in +++ b/interface-definitions/containers.xml.in @@ -76,7 +76,8 @@ <children> <leafNode name="address"> <properties> - <help>Set IPv4 static address to container (optional)</help> + <!-- PODMAN currently does not support more then one IPv4 or IPv6 address assignments to a container --> + <help>Assign static IP address to container</help> <valueHelp> <format>ipv4</format> <description>IPv4 address</description> @@ -206,8 +207,13 @@ <format>ipv4net</format> <description>IPv4 network prefix</description> </valueHelp> + <valueHelp> + <format>ipv6net</format> + <description>IPv6 network prefix</description> + </valueHelp> <constraint> <validator name="ipv4-prefix"/> + <validator name="ipv6-prefix"/> </constraint> <multi/> </properties> |