发新话题
打印

Linux禁用ipv6临时隐私地址

Linux禁用ipv6临时隐私地址

Linux禁用ipv6临时隐私地址,只保留静态ipv6地址:

编辑/etc/sysctl.conf

net.ipv6.conf.all.accept_ra=0
net.ipv6.conf.eth0.accept_ra=0
net.ipv6.conf.all.use_tempaddr=0
net.ipv6.conf.default.use_tempaddr=0

reboot重启
-------------------
运行 tcpdump -nnn -i eth0 ip6 and icmp6,发现网络中有RA广播包,使得OS自动配置动态ipv6 IP

查看ip -6 a:
inet6 xxx scope global dynamic mngtmpaddr

查看ip -6 r:
OS自动添加了一条default路由

参考:
https://support.binarylane.com.au/support/solutions/articles/1000100519-disable-ipv6-privacy-extension-in-linux

[ 本帖最后由 linda 于 2023-10-11 10:07 编辑 ]

TOP

发新话题