18 lines
392 B
Plaintext
18 lines
392 B
Plaintext
|
# {{ ansible_managed }}
|
||
|
|
||
|
default-lease-time 300;
|
||
|
max-lease-time 1800;
|
||
|
|
||
|
authoritative;
|
||
|
|
||
|
log-facility local7;
|
||
|
|
||
|
subnet {{ dhcp.ff_subnet }} netmask {{ dhcp.ff_netmask }} {
|
||
|
range {{dhcp.range_start}} {{dhcp.range_end}};
|
||
|
|
||
|
option routers {{ network.ff_v4_address }};
|
||
|
option domain-name-servers {{ network.ff_v4_address }};
|
||
|
option interface-mtu {{ dhcp.mtu }};
|
||
|
interface bat0;
|
||
|
}
|