UPDATE: Problem solved with 16.04.
I have an Asus Zenbook UX32V. I installed Ubuntu 14.04 and now I cannot browse the Internet. When I connect to a wireless network everything is fine for 2-3 minutes and the browser (Chrome or Firefox) stops opening web pages. But torrent, skype and whatsapp web (if started before the problem began) works fine. My phone and windows computer can go online too. If I disable and re-enable networking, I can open web pages for another 2-3 minutes and problem repeats.
lspci -knn | grep Net -A2
outputs:
03:00.0 Network controller [0280]: Intel Corporation Centrino Advanced-N 6235 [8086:088e] (rev 24)
Subsystem: Intel Corporation Centrino Advanced-N 6235 AGN [8086:4060]
Kernel driver in use: iwlwifi
I tried these:
- Switch to Google public DNS.
- Delete the connection from the Network Manager and create a new one.
- Wicd network manager
- Comment out
dns=dnsmasq
inNetworkManager.conf
file (https://askubuntu.com/a/432374/411641) - Removed
resolv.conf
(https://askubuntu.com/a/142342/411641) - Disabled 11n
iwlwifi 11n_disable=1
(http://ubuntuforums.org/showthread.php?t=1996768) - Disabled wlan0 power management (https://askubuntu.com/a/85223/411641)
Changed
/etc/modprobe.d/iwlwifi.conf
file tooptions iwlwifi bt_coex_active=0 swcrypto=1 11n_disable=8
(http://bernaerts.dyndns.org/linux/74-ubuntu/322-ubuntu-trusty-intel-centrino-6235-slow-freeze)
None of them worked. Because I messed with a lot of settings in different combinations, I formatted the computer and installed Ubuntu all over again.
How can I fix this problem?
options iwlwifi 11n_disable=1
– Pilot6 Oct 18 '15 at 11:34109.193.193.109
which is one of the IPs thatgoogle.com
uses. You can also try the toolnslookup
, which allows you to resolve URLs to IP addresses. You can change the DNS server it uses with the interactive commandserver 8.8.8.8
for google's DNS for example. – Byte Commander Oct 21 '15 at 18:31cat /etc/dnsmasq.conf
andls -la /etc/dnsmasq.d/
– A.B. Oct 26 '15 at 12:08