Disabling IPv6 on Fedora 17 Linux
IPv6 is enabled by default on most Linux distros. However, IPv6 is not used most of time (at least in my case). This post introduces how to disable IPv6 support on Linux (newer Kernel versions, such as in Fedora 17).
IPv6 on Linux can be easily configured via sysctrl.
Add these lines to /etc/sysctl.conf:
net.ipv6.conf.all.disable_ipv6=1
net.ipv6.conf.default.disable_ipv6=1
By: Zhiqiang Ma
Last updated: Feb 19, 2013
Views: 3,298
Tags: Client config, ipv6, kernel, Linux, Network, Server config, Tutorial
Tags: Client config, ipv6, kernel, Linux, Network, Server config, Tutorial
Nice try, but the correct config parameters are:
net.ipv6.conf.all.disable_ipv6=1
net.ipv6.conf.default.disable_ipv6=1
between disable and ipv6 you have to paste an underscore
Thanks for pointing this out. It is a formatting problem after the site changes to be using markdown. `_` is treated as a formatting character. It is fixed now.