Pages

Showing posts with label ipv6. Show all posts
Showing posts with label ipv6. Show all posts

Sunday, July 16, 2017

Disable IPv6

Disable IPv6


If you are facing router problems or any other issues with ubuntu. First try to disable IPv6 support built into Ubuntu as majority of the current home hardware doesnt support IPv6 at the moment.

Open the file /etc/modprobe.d/aliases and change the following line

net-pf-10 ipv6

to

net-pf-10 ipv6 off

Reboot the system and check if you are still facing the issue.

Read more »

Thursday, June 8, 2017

Disable IPv6 on Ubuntu

Disable IPv6 on Ubuntu


Edit your /etc/sysctl.conf file and add the following to the bottom:
#disable ipv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
Or you can use the following script:
echo "#disable ipv6" | sudo tee -a /etc/sysctl.conf
echo "net.ipv6.conf.all.disable_ipv6 = 1" | sudo tee -a /etc/sysctl.conf
echo "net.ipv6.conf.default.disable_ipv6 = 1" | sudo tee -a /etc/sysctl.conf
echo "net.ipv6.conf.lo.disable_ipv6 = 1" | sudo tee -a /etc/sysctl.conf
For this changes to take effect you must reboot your system.
After rebooting you can check if IPv6 has been disabled with the following command:
cat /proc/sys/net/ipv6/conf/all/disable_ipv6
0 means its enabled and 1 - disabled.
Read more »

Sunday, April 2, 2017

Difference Between IPv4 and IPv6

Difference Between IPv4 and IPv6



Read more »