Learn how to disable ipv6 in AlmaLinux from our experts. Our Server Management Support team is here to help you with your questions and concerns.
How to disable ipv6 in AlmaLinux
Today, our experts will take us through disabling IPv6 on AlmaLinux.
- Before we begin, it is a good idea to ensure that our system is using IPv6 with the following command:
$ ip a | grep inet6
- Now, we have to open the GURB settings file in a text editor with the following command:
$ sudo vim /etc/default/grub
- Then, add the following line at the end:
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX ipv6.disable=1"
- Now, save the file and exit.
- At this point, we have to generate a new GRUB file for the changes to take effect:
$ sudo grub2-mkconfig -o /boot/grub2/grub.cfg
- Additionally, we have to generate an EFI GRUB configuration file for EFI systems as seen here:
$ sudo grub2-mkconfig -o /boot/efi/EFI/almalinux/grub2.cfg
- Now, it is time to reboot our system and recheck if IPv6 is supported.
$ ip a | grep inet6
If we do not get any output of the above command, it means that IPv6 is disabled.
Alternatively, we can also choose to disable IPv6 temporarily on AlmaLinux with the following steps:
- First, open the /etc/sysctl.conf file with this command:
$ sudo vim /etc/sysctl.conf
- Then, add the following lines to the file to disable IPv6 for all network adapters:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1 - Then, save the file and exit.
- Finally, run the following command to apply the changes:
$ sudo sysctl -p
[Need assistance with a different issue? Our team is available 24/7.]
Conclusion
In summary, our Support Techs demonstrated how to disable ipv6 in AlmaLinux.
PREVENT YOUR SERVER FROM CRASHING!
Never again lose customers to poor server speed! Let us help you.
Our server experts will monitor & maintain your server 24/7 so that it remains lightning fast and secure.
0 Comments