ansible.fftdf.supernode/files/dhcpd.conf.j2

15 lines
384 B
Plaintext
Raw Normal View History

2015-12-22 19:30:16 +00:00
# Version 1.2
2015-11-28 14:25:29 +00:00
ddns-update-style none;
option domain-name "fftdf";
default-lease-time 300;
max-lease-time 3600;
log-facility local7;
subnet 10.188.0.0 netmask 255.255.0.0 {
authoritative;
range {{ sn_dhcp_range }};
option domain-name-servers {{ sn_mesh_IPv4 }}, {{ sn_dhcp_dns }};
2015-11-28 14:25:29 +00:00
option routers {{ sn_dhcp_router }};
interface bat0;
2015-12-22 19:30:16 +00:00
}
2015-12-26 19:25:44 +00:00
include "/opt/freifunk/static-dhcp/static.conf";