Slow browsing
I just installed Ubuntu on my laptop, and again I am hit with a slow browsing experience on some networks.
For instance, if you are in Éire and get “broadband” from eircom, you may be having a slow browsing experience on your Linux machine.
From what I’ve been reading each time I hit such an issue, the problem is usually that the cheap router(s) supplied and/or on the ISP’s network are not responding to AAAA requests, so only after a timeout will a backward-compatible A request be sent which will then be honoured.
All this, per request to the internet, has significant imapct on day to day browsing.
You can work around this kind of ISP issue by stopping your machine from sending the AAAA requests (which the cheap, non-standards-compliant router won’t respond to… ?).
To do this on ubuntu try :
- Disable these AAAA/IPV6 requests only for your browser. For firefox, go to
- Disable these AAAA/IPV6 requests at a system-wide level,
about:config
in the address bar, locate the line starting with
network.dns.disableIPv6
(the filter capability is your friend here) and change the value to
true
edit
/etc/modprobe.d/aliases
perhaps via
sudo vim /etc/modprobe.d/aliases
or
sudo gedit /etc/modprobe.d/aliases
and change the line
alias net-pf-10 ipv6
to
alias net-pf-10 off
Save the file and you should be motoring nicely again.