If /etc/resolv.conf contains the LAN gateway (a white DSL modem with some green lights on it),
nameserver 192.168.1.1then there is a 5 second delay with programs such as mutt and wget http://....
There is no delay when trying e.g. host cs.columbia.edu
The delay disappears when trying wget -4 http://... so educated people immediately know that this is ipv6 issue. These educated people say that ipv6 could altogether be disabled by running
sysctl net.ipv6.conf.all.disable_ipv6=1or by modifying /etc/default/grub file adding the option `ipv6.disable=1', so that one of the lines looks like this:
GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1 quiet"and then running `/usr/sbin/update-grub' to update grub. This did not help with wget and mutt.
The following line in /etc/resolv.conf ,
nameserver 8.8.8.8(this is some nameserver by google) does not improve anything.
Having the IP addresses of my favourite hosts to /etc/hosts file did not give any improvement, DNS is still being used.
Adding to /etc/resolv.conf the line
options timeout:1puts the "looking up... " delay down to 1 second.
For whatever reason, *empty* /etc/resolv.conf make programs such as mutt and wget connect instantaneously... aha, so does the line
nameserver 127.0.0.1and this is only when the local DNS server bind9 is installed: apt-get install bind9 (or else the host cs.columbia.edu returns nothing). To make sure that the file /etc/resolv.conf is not overwritten, say chattr +i /etc/resolv.conf
In modern linux releases you don't actually want to edit resolv.conf directly, but instead edit the appropriate file in /etc/resolvconf.d ... since resolv.conf is generated by the networking startup scripts.
Once we discuss resolv.conf, let me mention that it once happened to me on Ubuntu that with some (all??) wifi connections the DNS resolution stopped working, without any particular reason. Installing bind9 did not help. The fix was to link /etc/resolv.conf directly to the resolv.conf substitute corresponding to the appropriate wifi interface:
cd /etc mv resolv.conf resolv.conf.old ln -s /etc/resolvconf/run/interface/wlan0.dhclient resolv.confSince I was only using the wifi interface, this fixed the problem.
Written by Andrew Comech