Disable IPv6 di Ubuntu
Revision as of 08:06, 6 February 2011 by Onnowpurbo (talk | contribs) (New page: Sumber: http://www.ubuntugeek.com/how-to-disable-ipv6-in-ubuntu.html If you disable IPv6 and get reasonable Internet connection & DNS speeds Method 1 You need to edit the aliases file u...)
Sumber: http://www.ubuntugeek.com/how-to-disable-ipv6-in-ubuntu.html
If you disable IPv6 and get reasonable Internet connection & DNS speeds
Method 1
You need to edit the aliases file using the following command
gksudo gedit /etc/modprobe.d/aliases
Find the line: alias net-pf-10 ipv6
change to
alias net-pf-10 off
If the above change is not working you need to change the following one
alias net-pf-10 off ipv6
Save the file and reboot
Method2
Disable IPv6 in Firefox. Type about:config and search for:
network.dns.disableIPv6
and set it to TRUE
Method 3
Edit /etc/default/grub file
gksudo gedit /etc/default/grub
Change
GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash”
to
GRUB_CMDLINE_LINUX_DEFAULT=”ipv6.disable=1 quiet splash”
Save and exit the file
Update the grub from the command line
sudo update-grub