Centos Disable Ipv6
November 29, 2020
Edit file /etc/default/grub
and add ipv6.disable=1
, example:
# cat /etc/default/grub
GRUB_TIMEOUT=5
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX="ipv6.disable=1 crashkernel=auto rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
Then regenerate and reboot:
grub2-mkconfig -o /boot/grub2/grub.cfg
And
reboot
Using sysctl (no need to reboot), append below lines in /etc/sysctl.conf
:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
Then run:
sysctl -p