I am running bind on my 14.04 droplet. I want the first nameserver to be 127.0.0.1, then 4.2.2.2 and 4.2.2.1 as backups in case bind is down.
I can edit the /etc/network/interfaces and change the line to
dns-nameservers 127.0.0.1 4.2.2.2 4.2.2.1
After reboot resolve.conf only shows the 127.0.0.1 entry.
I can put any other nameservers and it works just not localhost. For example dns-nameservers 4.2.2.2 8.8.8.8 209.244.0.3
gives me the correct lines resolve.conf nameserver 4.2.2.2 nameserver 8.8.8.8 nameserver 209.244.0.3
What am I doing wrong?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Because you likely have dnsmasq running locally which then connects to your external DNS servers, at least from what I can understand!