Windows EUI-64
通常情况下,本地链接地址是由MAC地址来生成的,EUI-64规范。在Windows Vista和Windows 2008之前的情况下也是使用EUI-64规范,但是Windows为了安全开始使用了随机生成,使用了临时地址。目前Linux和Mac还是使用EUI-64生成IPv6地址。
查看IPv6协议配置
使用Powershell命令:get-netipv6protocol
使用EUI-64方法
关闭随机生成Powershell命令(需管理员权限):Set-NetIPv6Protocol -RandomizeIdentifiers Disabled
关闭临时地址Powershell命令(需管理员权限):Set-NetIPv6Protocol -UseTemporaryAddresses Disabled
网络设配器禁用下,再启用生效
查看电脑和ipv6网址
恢复随机生成和临时地址
开启随机生成Powershell命令(需管理员权限):Set-NetIPv6Protocol -RandomizeIdentifiers Enabled
开启临时地址Powershell命令(需管理员权限):Set-NetIPv6Protocol -UseTemporaryAddresses Enabled
网络适配器重启生效。
目前有 0 条评论