1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
[root@bridge ~]# ip a | grep inet6 inet6 ::1/128 scope host inet6 fe80::216:3eff:fe6e:91d7/64 scope link inet6 fe80::42:80ff:fed3:f9ac/64 scope link inet6 fe80::6039:ffff:fe4e:d3dd/64 scope link inet6 fe80::427:11ff:fe23:6650/64 scope link [root@bridge ~]# vi /etc/default/grub [root@bridge ~]# ls -lh /etc/grub*.cfg lrwxrwxrwx 1 root root 22 Sep 27 2019 /etc/grub2.cfg -> ../boot/grub2/grub.cfg [root@bridge ~]# grub2-mkconfig -o /boot/grub2/grub.cfg Generating grub configuration file ... Found linux image: /boot/vmlinuz-4.14.129-bbrplus Found initrd image: /boot/initramfs-4.14.129-bbrplus.img Found linux image: /boot/vmlinuz-0-rescue-96820b9851c24560b5f942f2496b9aeb Found initrd image: /boot/initramfs-0-rescue-96820b9851c24560b5f942f2496b9aeb.img done [root@bridge ~]# grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg Generating grub configuration file ... Found linux image: /boot/vmlinuz-4.14.129-bbrplus Found initrd image: /boot/initramfs-4.14.129-bbrplus.img Found linux image: /boot/vmlinuz-0-rescue-96820b9851c24560b5f942f2496b9aeb Found initrd image: /boot/initramfs-0-rescue-96820b9851c24560b5f942f2496b9aeb.img done [root@bridge ~]# reboot |
一、检查是否启用了IPv6
1 |
# ip a | grep inet6 |
如果启用了IPv6则可以看到一些inet6行,如果该命令不输出任何内容则标识已禁用IPv6。
二、使用内核引导选项永久禁用IPv6
通过内核引导选项是禁用IPv6的最佳方法,需要重新引导系统。
1 |
# vi /etc/default/grub |
在文件最后增加以下内容:
1 |
GRUB_CMDLINE_LINUX="$GRUB_CMDLINE_LINUX ipv6.disable=1" |
保存并退出。然后更新GRUB CFG文件,使用如下命令找到grub配置文件:
1 |
# ls -lh /etc/grub*.cfg |
通过如下命令创建新的GRUB配置文件并将其保存到/boot/grub2/grub.cfg:
1 |
# grub2-mkconfig -o /boot/grub2/grub.cfg |
然后通过如下命令创建新的GRUB配置文件并将其保存到/boot/efi/EFI/centos/grub.cfg:
1 |
# grub2-mkconfig -o /boot/efi/EFI/centos/grub.cfg |
然后重启:
1 |
# reboot |
并验证是否禁用了IPv6:
1 |
# ip a | grep inet6 |
转载时请保留出处,违法转载追究到底:进城务工人员小梅 » CentOS 8永久关闭ipv6