linux命令行中输入ip a能够查看是否存在ipv6


/etc/sysctl.conf文件中添加或编辑以下变量

1
2
3
4
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1
net.ipv6.conf.eth0.disable_ipv6 = 1

网卡eth0可以自行修改成你linux下的网卡名称(在ip a命令中查看网卡名称)
修改完之后sysctl -p重新加载系统配置