Centos 7 禁用关闭 IPv6 的方法
1. 在 /etc/sysctl.conf 中添加此规则:
1 | net.ipv6.conf.all.disable_ipv6 = 1 |
2. 在 /etc/sysconfig/network 中添加此规则:
1 | NETWORKING_IPV6 = no |
3. 在 /etc/sysconfig/network-scripts/ifcfg-ethX 中添加此规则:
1 | IPV6INIT = no |
4. 关闭防火墙的开机自启动服务:
1 | systemctl disable ip6tables.service |
5. 重新加载 sysctl 配置或者重启服务器
1 | sysctl -p |