diff options
author | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-01-10 23:26:39 +0100 |
---|---|---|
committer | sarthurdev <965089+sarthurdev@users.noreply.github.com> | 2022-01-11 11:57:56 +0100 |
commit | 6e23345a693c5ccaaae7694dd60a91315a911631 (patch) | |
tree | 8fdf2b21090fb4c71ad8081e071f1b6e983ebd15 | |
parent | f97144259335102c3d96b232cbb0af4970120d62 (diff) | |
download | vyos-1x-6e23345a693c5ccaaae7694dd60a91315a911631.tar.gz vyos-1x-6e23345a693c5ccaaae7694dd60a91315a911631.zip |
firewall: T2199: Add ipv6-range support to IPv6 address group
-rw-r--r-- | interface-definitions/firewall.xml.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/interface-definitions/firewall.xml.in b/interface-definitions/firewall.xml.in index 07a36093f..f428efe58 100644 --- a/interface-definitions/firewall.xml.in +++ b/interface-definitions/firewall.xml.in @@ -109,8 +109,13 @@ <format>ipv6</format> <description>IPv6 address to match</description> </valueHelp> + <valueHelp> + <format>ipv6range</format> + <description>IPv6 range to match (e.g. 2002::1-2002::ff)</description> + </valueHelp> <constraint> <validator name="ipv6-address"/> + <validator name="ipv6-range"/> </constraint> <multi/> </properties> |