由于本地没有 IPv6 环境,有时候服务器里装了 IPv6 也是白搭,所以可以选择把 IPv6 给禁止, Ubuntu 和 Debian 下的禁止方法很简单 修改 /etc/sysctl.conf 文件 添加 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 然后运行 sudo sysctl -p 接着就可以用 ifconfig 或 ip a 命令看看是否已经没有 IPv6 地址了。 (责任编辑:IT) |