【教程】Debian 禁用IPV6
Debian 系统关闭IPV6的几种方法。
方法一
在/etc/default/grub文件的GRUB_CMDLINE_LINUX变量中添加IPV6_DISABLE=1,然后运行update-grub,最后重启服务器。
方法二(推荐)
编辑/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
最后运行sysctl -p就完成可IPV6禁用。
方法三(推荐)
在sysctl.d
中新加入配置文件
在/etc/sysctl.d/
文件夹中新建disable-ipv6.conf
,并写入配置
cd /etc/sysctl.d/
touch disable-ipv6.conf
echo net.ipv6.conf.all.disable_ipv6=1 > disable-ipv6.conf
使用以下命令运行配置文件
sysctl -p -f /etc/sysctl.d/disable-ipv6.conf
如果使用ip a
命令,在输出中没有发现IPv6地址,则说明成功关闭了IPv6功能。
版权申明
文章版权归作者所有,未经允许请勿转载。
暂无评论数据