dnsmasq: disable ping for duplicate address detection
Some things don’t reply which holds up all requests for 3 seconds.
This commit is contained in:
parent
ff9620ed2a
commit
1b5a20ac8a
|
@ -1,11 +1,16 @@
|
||||||
# disable DNS server
|
# disable DNS server
|
||||||
port = 0
|
port = 0
|
||||||
|
|
||||||
|
# we are the only DHCP server
|
||||||
|
dhcp-authoritative
|
||||||
|
|
||||||
|
# don’t try to ping clients for duplicate IP check
|
||||||
|
# has 3 s timeout during which no other requests are processed
|
||||||
|
no-ping
|
||||||
|
|
||||||
bind-interfaces
|
bind-interfaces
|
||||||
interface = {{ interfaces | map(attribute='name') | join(',') }}
|
interface = {{ interfaces | map(attribute='name') | join(',') }}
|
||||||
|
|
||||||
dhcp-authoritative
|
|
||||||
|
|
||||||
dhcp-option = option:dns-server,{{ dns | join(',') }}
|
dhcp-option = option:dns-server,{{ dns | join(',') }}
|
||||||
dhcp-option = option:ntp-server,{{ ntp | join(',') }}
|
dhcp-option = option:ntp-server,{{ ntp | join(',') }}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue