永久禁用IPv6的方法

永久禁用IPv6的方法


#所有网卡禁用IPv6

#1、编辑/etc/sysctl.conf文件

sudo vi /etc/sysctl.conf

#在文件中增加一行,内容为:

net.ipv6.conf.all.disable_ipv6 = 1

 

#2、运行命令使得/etc/sysctl.conf 更改生效:

sudo sysctl -p /etc/sysctl.conf

 

#3、编辑/etc/hosts文件,

vi /etc/hosts

#注释或删除掉ipv6相关的行,内容大致如下:

# The following lines are desirable for IPv6 capable hosts

#::1     localhost ip6-localhost ip6-loopback

#ff02::1 ip6-allnodes

#ff02::2 ip6-allrouters

你可能感兴趣的:(网络安全,Linux基础,操作系统)