summaryrefslogtreecommitdiff
path: root/src/conf_mode/dhcp_server.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-09-19 11:32:04 +0200
committerChristian Poessinger <christian@poessinger.com>2021-09-19 12:25:43 +0200
commita672c7c012b85cd2950403400900453aa318613b (patch)
treef4921964487e879eec993b52d9f6f856be3a44f2 /src/conf_mode/dhcp_server.py
parent81dbce734c207a0fce836bf2a5d283910509f4ff (diff)
downloadvyos-1x-a672c7c012b85cd2950403400900453aa318613b.tar.gz
vyos-1x-a672c7c012b85cd2950403400900453aa318613b.zip
dhcp-server: T3672: re-add missing "name" CLI option
This option is mandatory and must be user configurable as it needs to match on both sides. (cherry picked from commit 2985035bcb2f3732e15a41e3c2ee6c6c93a6836e)
Diffstat (limited to 'src/conf_mode/dhcp_server.py')
-rwxr-xr-xsrc/conf_mode/dhcp_server.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/dhcp_server.py b/src/conf_mode/dhcp_server.py
index 5b3809017..28f2a4ca5 100755
--- a/src/conf_mode/dhcp_server.py
+++ b/src/conf_mode/dhcp_server.py
@@ -247,7 +247,7 @@ def verify(dhcp):
if not failover_ok:
raise ConfigError('DHCP failover must be enabled for at least one subnet!')
- for key in ['source_address', 'remote', 'status']:
+ for key in ['name', 'remote', 'source_address', 'status']:
if key not in dhcp['failover']:
tmp = key.replace('_', '-')
raise ConfigError(f'DHCP failover requires "{tmp}" to be specified!')