resolv.conf keeps getting overwritten when dnsmasq is restarted, breaking dnsmasq
There appears to be a bug in the start-up script for dnsmasq
that uses resolvconf
to clobber the local resolver if the local loopback interface is not explicitly except
-ed in the /etc/defaults/dnsmasq
file.
The short answer is that you can add...
DNSMASQ_EXCEPT=lo
to /etc/defaults/dnsmasq
to solve the problem.
For more info, see this question...
https://raspberrypi.stackexchange.com/questions/37439/proper-way-to-prevent-dnsmasq-from-overwriting-dns-server-list-supplied-by-dhcp
bigjosh is right - except there's been an update to dnsmasq, and there's now an option at the end of /etc/default/dnsmasq
which you can un-hash:
IGNORE_RESOLVCONF=yes
Don't use
resolv-file=/etc/resolv.dnsmasq
Put dns server into dnsmasq.conf, like
server=/localnet/192.168.0.1 # change ip for your ip-server
server=8.8.8.8
server=8.8.4.4
And add into dnsmasq.conf
no-resolv