教程
未读
Debian 关闭 IPV6 的方法
本文介绍了在 Linux 中通过修改 `/etc/sysctl.conf` 来禁用 IPv6 的方法。需要添加或编辑以下参数:`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` 的 IPv6。保存后执行 `sysctl -p` 使配置立即生效。
