diff options
author | Niklas Yann Wettengel <niyawe@niyawe.de> | 2017-07-03 09:46:42 +0200 |
---|---|---|
committer | Niklas Yann Wettengel <niyawe@niyawe.de> | 2017-07-03 09:46:42 +0200 |
commit | d82f8524972086862f64750f325ba067ea993d86 (patch) | |
tree | aa7634db168da40d108e43c7c30fbce299bdc7ab /roles/install_dhcp/templates | |
parent | 90a8a597eaa3a008eac946460b5c621eafa8ec62 (diff) |
fastd working
Diffstat (limited to 'roles/install_dhcp/templates')
-rw-r--r-- | roles/install_dhcp/templates/dhcpd.conf.j2 | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/roles/install_dhcp/templates/dhcpd.conf.j2 b/roles/install_dhcp/templates/dhcpd.conf.j2 index e985d1a..42496d6 100644 --- a/roles/install_dhcp/templates/dhcpd.conf.j2 +++ b/roles/install_dhcp/templates/dhcpd.conf.j2 @@ -5,14 +5,16 @@ authoritative; log-facility local7; -subnet 10.222.0.0 netmask 255.255.0.0 { - range {{ dhcp_start }} {{ dhcp_end }}; +{% for site in sites %} +subnet {{ site.dhcp_subnet }} netmask {{ site.dhcp_netmask }} { + range {{ site.dhcp_start }} {{ site.dhcp_end }}; - option routers {{ bat0_ipv4 }}; - option domain-name-servers {{ bat0_ipv4 }}; + option routers {{ site.bat_ipv4 }}; + option domain-name-servers {{ site.bat_ipv4 }}; } +{% endfor %} subnet {{ ansible_default_ipv4['address'] }} netmask 255.255.255.255 { } -include "/etc/dhcpd.hosts.conf"; +#include "/etc/dhcpd.hosts.conf"; |