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.
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 ipv6Or you can use the following script:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
echo "#disable ipv6" | sudo tee -a /etc/sysctl.confFor this changes to take effect you must reboot your system.
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
After rebooting you can check if IPv6 has been disabled with the following command:
cat /proc/sys/net/ipv6/conf/all/disable_ipv60 means its enabled and 1 - disabled.
Sunday, April 2, 2017
Difference Between IPv4 and IPv6
Difference Between IPv4 and IPv6
Labels:
and,
between,
difference,
ipv4,
ipv6
Subscribe to:
Posts (Atom)