Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vScripter/bbc4ca2bbd7e9d4a190bbd6cb1777977 to your computer and use it in GitHub Desktop.
Save vScripter/bbc4ca2bbd7e9d4a190bbd6cb1777977 to your computer and use it in GitHub Desktop.
# check to see if IPv6 config status
cat /proc/sys/net/ipv6/conf/all/disable_ipv6
# edit sysctl.conf
vi /etc/sysctl.conf
#disable ipv6 
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
# reboot and recheck
cat /proc/sys/net/ipv6/conf/all/disable_ipv6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment