diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-09-19 11:32:04 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-09-19 11:32:07 +0200 |
commit | 2985035bcb2f3732e15a41e3c2ee6c6c93a6836e (patch) | |
tree | a02d0cb2a4c07bc14fad313c5130368238032097 /data | |
parent | 59e5b5eb4c0507f9d3831483152a748b58560bfd (diff) | |
download | vyos-1x-2985035bcb2f3732e15a41e3c2ee6c6c93a6836e.tar.gz vyos-1x-2985035bcb2f3732e15a41e3c2ee6c6c93a6836e.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.
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/dhcp-server/dhcpd.conf.tmpl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/data/templates/dhcp-server/dhcpd.conf.tmpl b/data/templates/dhcp-server/dhcpd.conf.tmpl index c71934426..790f57bbb 100644 --- a/data/templates/dhcp-server/dhcpd.conf.tmpl +++ b/data/templates/dhcp-server/dhcpd.conf.tmpl @@ -32,9 +32,8 @@ option wpad-url code 252 = text; {% endif %} {% if failover is defined and failover is not none %} -{% set dhcp_failover_name = 'VyOS-DHCP-failover-peer' %} # DHCP failover configuration -failover peer "{{ dhcp_failover_name }}" { +failover peer "{{ failover.name }}" { {% if failover.status == 'primary' %} primary; mclt 1800; @@ -185,7 +184,7 @@ shared-network {{ network | replace('_','-') }} { {% endif %} pool { {% if subnet_config.enable_failover is defined %} - failover peer "{{ dhcp_failover_name }}"; + failover peer "{{ failover.name }}"; deny dynamic bootp clients; {% endif %} {% if subnet_config.range is defined and subnet_config.range is not none %} |