diff options
author | Daniil Baturin <daniil@baturin.org> | 2019-06-17 14:42:26 +0200 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2019-06-17 14:42:26 +0200 |
commit | d6d42f5a2729b5efb839de48b2ebd52b792dfa84 (patch) | |
tree | 35b6028c139b37c6463dfebf64798dd839717a14 /src | |
parent | 8d70134d1adba4d787476ded970ee40ab18d1622 (diff) | |
parent | 03c09b1b0d7dfdab9fc87bc7b017455c45141ced (diff) | |
download | vyos-1x-d6d42f5a2729b5efb839de48b2ebd52b792dfa84.tar.gz vyos-1x-d6d42f5a2729b5efb839de48b2ebd52b792dfa84.zip |
Merge branch 'current' of https://github.com/vyos/vyos-1x into current
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/dhcpv6_server.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conf_mode/dhcpv6_server.py b/src/conf_mode/dhcpv6_server.py index 5430097de..aa9c35fa1 100755 --- a/src/conf_mode/dhcpv6_server.py +++ b/src/conf_mode/dhcpv6_server.py @@ -94,7 +94,7 @@ shared-network {{ network.name }} { {%- for host in subnet.static_mapping %} {% if not host.disabled -%} host {{ network.name }}_{{ host.name }} { - host-identifier option dhcp6.client-id "{{ host.client_identifier }}"; + host-identifier option dhcp6.client-id {{ host.client_identifier }}; fixed-address6 {{ host.ipv6_address }}; } {%- endif %} |