X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/403ae279657f0e780e5c452c74dca9b9f865d516..5fde77fb90280da2c008bb5e8e83f6635b999715:/cookbooks/dhcpd/templates/default/dhcpd.conf.erb diff --git a/cookbooks/dhcpd/templates/default/dhcpd.conf.erb b/cookbooks/dhcpd/templates/default/dhcpd.conf.erb index 9a33f8d6e..79f6f029d 100644 --- a/cookbooks/dhcpd/templates/default/dhcpd.conf.erb +++ b/cookbooks/dhcpd/templates/default/dhcpd.conf.erb @@ -7,22 +7,21 @@ option TCode code 101 = text; default-lease-time 600; max-lease-time 7200; -<% node.interfaces(:role => :internal).each do |interface| -%> +<% node.ipaddresses(:role => :internal, :family => :inet).each do |address| -%> -subnet <%= interface[:network] %> netmask <%= interface[:netmask] %> { +subnet <%= address.network %> netmask <%= address.netmask %> { authoritative; range dynamic-bootp <%= node[:dhcpd][:first_address] %> <%= node[:dhcpd][:last_address] %>; - # option broadcast-address <%= interface[:broadcast] %>; - option routers <%= interface[:gateway] %>; + option routers <%= address.gateway %>; option domain-name "<%= @domain %>"; - option domain-name-servers <%= interface[:gateway] %>; + option domain-name-servers <%= address.gateway %>; option ntp-servers <%= node[:ntp][:servers].join(", ") %>; option time-offset 0; option PCode "UTC0"; option TCode "Etc/UTC"; - next-server <%= interface[:gateway] %>; + next-server <%= address.gateway %>; # See https://netboot.xyz/docs/docker/#dhcp-configurations if exists user-class and ( option user-class = "iPXE" ) { @@ -128,12 +127,6 @@ host gorwen.oob.openstreetmap.org { fixed-address gorwen.oob.openstreetmap.org; } -host grindtooth.oob.openstreetmap.org { - hardware ethernet 98:4b:e1:6d:77:85; - server-name "grindtooth.oob.openstreetmap.org"; - fixed-address grindtooth.oob.openstreetmap.org; -} - host horntail.oob.openstreetmap.org { hardware ethernet 3c:ec:ef:82:ac:d2; server-name "horntail.oob.openstreetmap.org";