1

I upgraded to Ubuntu 12.10 using update manager. After the upgrade, the wifi gets connected but would not display any webpages. If I ping 8.8.8.8 or google.com, there is response.

I managed to fix this problem by using the command sudo dhclient wlan0. But, now the problem is that every time I switch wireless networks, I have to give that command. how do I make this permanent?

Ubuntuser
  • 10,012

2 Answers2

1

You need to edit your DNS configuration.
Type gksudo gedit /etc/resolv.conf in the terminal. Add your DNS ( eg 8.8.8.8 ) in place of 127.0.0.1.
As pointed out, this configuration may be overwritten. Use resolvconf to modify this file.

ignite
  • 9,044
1

Most likely the symbolic link /etc/resolv.conf -> ../run/resolvconf/resolv.conf is missing on your system. To restore it, do the following in a terminal.

sudo apt-get install resolvconf
sudo dpkg-reconfigure resolvconf

If you want to use 8.8.8.8 as your nameserver then set up either ifup or NetworkManager to use that nameserver address for the interface(s) that it brings up.

If you use ifup then edit /etc/network/interfaces and, in the stanza for the interface in question, add the line "dns-nameservers 8.8.8.8"; then ifdown the interface and ifup it again.

If you use NetworkManager then open the connection editor and add 8.8.8.8 as an additional nameserver address (network indicator | Edit Connections... | Wireless | myconnection | Edit... | IPv4 Settings | Additional DNS servers).

jdthood
  • 12,625