Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 669 Bytes

disable-ipv6.md

File metadata and controls

29 lines (23 loc) · 669 Bytes

Disable IPv6

Disable ipv6 in multi user mode

  • First, open /etc/default/grub and add line below to it:
GRUB_CMDLINE_LINUX='ipv6.disable=1'
  • Second, you should update grub by:
grub-mkconfig -o /boot/grub/grub.cfg
  • Be Happy! you disabled IPv6 successfully!

Disable ipv6 in safe mode

  • First, open /etc/default/grub and add line below to it:
  • Notice that if you want to disable IPv6 in safe mode you should add the following line to your /etc/default/grub:
GRUB_CMDLINE_LINUX_DEFAULT='ipv6.disable=1'

Disable ipv6 realtime

  • Enter the following command:
sysctl net.ipv6.conf.all.disable_ipv6=1