diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-11-14 20:31:00 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-11-14 20:31:00 +0100 |
commit | 1353757247c027f6352000a9450b502c25c460c8 (patch) | |
tree | 5c4537f702cb155c934206c41615164666565177 | |
parent | bceaab68b9b540b42f0ff3d8bc7a388e54792cf7 (diff) | |
download | vyos-1x-1353757247c027f6352000a9450b502c25c460c8.tar.gz vyos-1x-1353757247c027f6352000a9450b502c25c460c8.zip |
dhcp-server: T3982: dot (.) is an allowed static-mapping character
This reverts a part of commit c45e4beadf30accb1838b3bad1f21c2146469bf8.
-rw-r--r-- | interface-definitions/dhcp-server.xml.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/interface-definitions/dhcp-server.xml.in b/interface-definitions/dhcp-server.xml.in index 45a629181..d1ed579e9 100644 --- a/interface-definitions/dhcp-server.xml.in +++ b/interface-definitions/dhcp-server.xml.in @@ -254,9 +254,9 @@ <properties> <help>DHCP lease range</help> <constraint> - <regex>[-_a-zA-Z0-9.]+</regex> + <regex>^[-_a-zA-Z0-9.]+$</regex> </constraint> - <constraintErrorMessage>Invalid DHCP lease range name. May only contain letters, numbers and .-_</constraintErrorMessage> + <constraintErrorMessage>Invalid range name, may only be alphanumeric, dot and hyphen</constraintErrorMessage> </properties> <children> <leafNode name="start"> @@ -289,9 +289,9 @@ <properties> <help>Name of static mapping</help> <constraint> - <regex>^[-_a-zA-Z0-9]+$</regex> + <regex>^[-_a-zA-Z0-9.]+$</regex> </constraint> - <constraintErrorMessage>Invalid static mapping name. May only contain letters, numbers and a hyphen (-)!</constraintErrorMessage> + <constraintErrorMessage>Invalid static mapping name, may only be alphanumeric, dot and hyphen</constraintErrorMessage> </properties> <children> #include <include/generic-disable-node.xml.i> |