Whenever one of the servers in /etc/resolv.conf
is unreachable, Linux/glibc/whatever isn't smart enough not to retry it for a while. This results in a lot of services becoming unavailable, because a lot of them do reverse lookups on all incoming connections (like SSH), which will hang for the time-out of the first DNS server query.
How can I make my Ubuntu boxes be smart about the DNS servers it uses? I could hack a bash script that runs every minute that inserts a REJECT rule into iptables for the servers that don't respond to dig queries, but I'd rather not do it that way...
I'm told that Windows does this properly, BTW.
Edit: I worked around it a little bit by putting this in /etc/resolv.conf
(or /etc/resolvconf/resolv.conf.d/base
):
options timeout:2 rotate
Still not perfect, but more workable.