美文网首页
CentOS7彻底关闭IPV6

CentOS7彻底关闭IPV6

作者: 水平号 | 来源:发表于2020-03-10 11:28 被阅读0次
  1. Edit /etc/default/grub and add ipv6.disable=1 in line GRUB_CMDLINE_LINUX, e.g.:
    在GRUB_CMDLINE_LINUX后面添加ipv6.disable=1
# 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"
  1. Regenerate a GRUB configuration file and overwrite existing one:
 grub2-mkconfig -o /boot/grub2/grub.cfg
  1. Restart system and verify no line “inet6” in “ip addr show” command output.
# shutdown -r now
# ip addr show | grep net6

相关文章

  • CentOS7彻底关闭IPV6

    Edit /etc/default/grub and add ipv6.disable=1 in line GRU...

  • 转载: 报无效的服务器地址 BasicIPv6Validatio

    解决方案: 先关闭IPv6,然后设置IPv4,再重新开启IPv6。 关闭 IPv6”高级“ > "TCP/IP" ...

  • CentOS7关闭ipv6

    编辑文件 vim /etc/sysctl.conf文件末尾加上:net.ipv6.conf.all.disable...

  • Linux关闭防火墙命令

    问题:老是关闭防火墙太麻烦,所以选择彻底关闭防火墙,发现每次都记不住命令! 下面是red hat/CentOs7关...

  • CentOS7上快速搭建LAMP环境

    首先CentOS7最小化安装,并且网络配置正确 关闭iptables CentOS7上是firewall,关闭命令...

  • Centos7 安装MariaDB+Phpmyadmin

    一、关闭iptables CentOS7上是firewall,关闭命令: 关闭selinux 二、安装MariaD...

  • 设置IPV6环境-Docker

    准备工作 按照上一篇博客:《设置IPV6环境-CentOS7》设置好宿主机的IPV6环境。 在docker的配置文...

  • ELK快速搭建教程

    一、 Elasticsearch安装 环境准备系统: Centos7防火墙: 关闭Sellinux: 关闭JDK ...

  • Linux使用-FAQ

    CentOS7 关闭防火墙 参考:CentOS7 关闭防火墙 在我的虚拟机下启动服务 进程管理 文件管理 查看日志...

  • iOS ipv6相关

    [基础常识]为阿里云ECS(CentOS7)配置IPv6隧道地址https://bbs.aliyun.com/re...

网友评论

      本文标题:CentOS7彻底关闭IPV6

      本文链接:https://www.haomeiwen.com/subject/wvtwdhtx.html