美文网首页
RHEL 7 & CentOS 7禁用IPV6

RHEL 7 & CentOS 7禁用IPV6

作者: 0或者1 | 来源:发表于2019-01-14 10:22 被阅读0次

编辑文件/etc/sysctl.conf,

vi /etc/sysctl.conf

添加下面的行:

net.ipv6.conf.all.disable_ipv6 =1

net.ipv6.conf.default.disable_ipv6 =1

如果你想要为特定的网卡禁止IPv6,比如,对于enp0s3,添加下面的行。

net.ipv6.conf.enp0s3.disable_ipv6 =1

保存并退出文件。

执行下面的命令来使设置生效。

sysctl -p

相关文章

网友评论

      本文标题:RHEL 7 & CentOS 7禁用IPV6

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