diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-30 18:21:42 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-30 18:21:42 +0200 |
commit | 7692f0777bd6c51019f5749f31b4e1bc6b7a5f0f (patch) | |
tree | 61680aeed097c7c679f9aa820eaab3c0734e28c1 | |
parent | b55f0ab64b89238e9411f2fd74200b5f5fb5a41c (diff) | |
download | vyos-1x-7692f0777bd6c51019f5749f31b4e1bc6b7a5f0f.tar.gz vyos-1x-7692f0777bd6c51019f5749f31b4e1bc6b7a5f0f.zip |
dhcpv6-server: T2406: add lease-time validator to XML
-rw-r--r-- | interface-definitions/dhcpv6-server.xml.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/interface-definitions/dhcpv6-server.xml.in b/interface-definitions/dhcpv6-server.xml.in index 03c826cbf..4073b46b2 100644 --- a/interface-definitions/dhcpv6-server.xml.in +++ b/interface-definitions/dhcpv6-server.xml.in @@ -126,16 +126,37 @@ <leafNode name="default"> <properties> <help>Default time (in seconds) that will be assigned to a lease</help> + <valueHelp> + <format>1-4294967295</format> + <description>DHCPv6 valid lifetime</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-4294967295"/> + </constraint> </properties> </leafNode> <leafNode name="maximum"> <properties> <help>Maximum time (in seconds) that will be assigned to a lease</help> + <valueHelp> + <format>1-4294967295</format> + <description>Maximum lease time in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-4294967295"/> + </constraint> </properties> </leafNode> <leafNode name="minimum"> <properties> <help>Minimum time (in seconds) that will be assigned to a lease</help> + <valueHelp> + <format>1-4294967295</format> + <description>Minimum lease time in seconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-4294967295"/> + </constraint> </properties> </leafNode> </children> |