diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-05-27 08:35:48 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-05-27 08:36:37 +0200 |
commit | 283276d457a09c100416c0d4ffccd4f94ccd2540 (patch) | |
tree | 268154e970b5725efe5453d628dd21b76c5a3b4d /interface-definitions/include | |
parent | 758954b00f02d7c3c4ca47f5774fd6f9a6cf60a5 (diff) | |
download | vyos-1x-283276d457a09c100416c0d4ffccd4f94ccd2540.tar.gz vyos-1x-283276d457a09c100416c0d4ffccd4f94ccd2540.zip |
dhcp6: pd: T4447: bugfix sla-id limits (must be greater then 128
The sla-id parameter of DHCPv6 prefix delegations is limited to 128. While this
is enough to use all /64 subnets of a /57 prefix, with a /56 prefix that is no
longer sufficient.
Increased sla-id length tp 64535 so one could delegate an entire /48.
Diffstat (limited to 'interface-definitions/include')
-rw-r--r-- | interface-definitions/include/interface/dhcpv6-options.xml.i | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface-definitions/include/interface/dhcpv6-options.xml.i b/interface-definitions/include/interface/dhcpv6-options.xml.i index 08e4f5e0a..c705af7c2 100644 --- a/interface-definitions/include/interface/dhcpv6-options.xml.i +++ b/interface-definitions/include/interface/dhcpv6-options.xml.i @@ -71,11 +71,11 @@ <properties> <help>Interface site-Level aggregator (SLA)</help> <valueHelp> - <format>u32:0-128</format> + <format>u32:0-65535</format> <description>Decimal integer which fits in the length of SLA IDs</description> </valueHelp> <constraint> - <validator name="numeric" argument="--range 0-128"/> + <validator name="numeric" argument="--range 0-65535"/> </constraint> </properties> </leafNode> |