Here's how to check to see if ipv6 is enabled on your computer
test -f /proc/net/if_inet6 && echo "Running kernel is IPv6 ready"
If you see
Running kernel is IPv6 ready
it is enabled.
If you see no output, it is not.
To disable ipv6 if the other answers on this page don't work for you, blacklist ipv6 all-together. To do this, use the following command:
echo 'blacklist ipv6' | sudo tee -a '/etc/modprobe.d/blacklist.local' >/dev/null
Also, this might help as well:
echo 'install ipv6 /bin/true' | sudo tee -a '/etc/modprobe.d/blacklist.local' >/dev/null
Reboot for the changes to take effect. To check if it's enabled after startup run this command again:
test -f /proc/net/if_inet6 && echo "Running kernel is IPv6 ready"
There should be no output.
Click here for info on how to disable IPV6 at boot.
IPv6 is far much easier than IPv4, to begin with, there no NAT anymore, so, one less thing to manage... The Internet is growing really fast, in a few years, the IPv6 network will be bigger than IPv4, so, with IPv4, you'll be out of the real Internet. Go ahead man! Upgrade your IP!! Change is a good thing.
– ThiagoCMC Feb 24 '14 at 06:12