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:
Timotej Lazar 2024-11-28 15:41:22 +01:00
parent ff9620ed2a
commit 1b5a20ac8a

View file

@ -1,11 +1,16 @@
# disable DNS server
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
interface = {{ interfaces | map(attribute='name') | join(',') }}
dhcp-authoritative
dhcp-option = option:dns-server,{{ dns | join(',') }}
dhcp-option = option:ntp-server,{{ ntp | join(',') }}