You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
353 B
Plaintext
19 lines
353 B
Plaintext
8 years ago
|
default-lease-time 600;
|
||
|
max-lease-time 3600;
|
||
|
|
||
|
authoritative;
|
||
|
|
||
|
log-facility local7;
|
||
|
|
||
|
subnet 10.222.0.0 netmask 255.255.0.0 {
|
||
|
range {{ dhcp_start }} {{ dhcp_end }};
|
||
|
|
||
|
option routers {{ bat0_ipv4 }};
|
||
|
option domain-name-servers {{ bat0_ipv4 }};
|
||
|
}
|
||
|
|
||
|
subnet {{ ansible_default_ipv4['address'] }} netmask 255.255.255.255 {
|
||
|
}
|
||
|
|
||
|
include "/etc/dhcpd.hosts.conf";
|