Skip to content

Instantly share code, notes, and snippets.

@vpnwall-services
Created November 17, 2019 18:27
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 vpnwall-services/4f7368a81880fa2066cb8f5ba276fbf7 to your computer and use it in GitHub Desktop.
Save vpnwall-services/4f7368a81880fa2066cb8f5ba276fbf7 to your computer and use it in GitHub Desktop.
[Disable IP V6 Debian] Disable IPV6 on Debian #bash #linux #debian #disable #ipv6
# do a sysctl -p to reload configuration without rebooting
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv6.conf.eth0.disable_ipv6 = 1
net.ipv6.conf.eth1.disable_ipv6 = 1
net.ipv6.conf.ppp0.disable_ipv6 = 1
net.ipv6.conf.tun0.disable_ipv6 = 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment