如何让程序使用公共 IPv6 地址而不是临时 IPv6 地址?

如何让程序使用公共 IPv6 地址而不是临时 IPv6 地址?

我目前正在使用并希望继续使用隐私扩展(Windows 10 默认)。

> ipconfig
Windows IP Configuration
Ethernet adapter Ethernet: 
  Connection-specific DNS Suffix  . : home    
  IPv6 Address. . . . . .. . . .. . : 2a02:8071:6a0:0f00:9801:dc53:2556:d8a2
  Temporary IPv6 Address. . . . . . : 2a02:8071:6a0:0f00:88e0:664:85c1:597a
  Link-local IPv6 Address . . . . . : fe80::9801:dc53:2556:d8a2%5
  Default Gateway . . . . . . . . . : fe80::5667:51ff:fea0:7156%5

但是,对于某些传出连接,我更愿意使用公共 IPv6 地址 ( 2a02:8071:6a0:0f00:9801:dc53:2556:d8a2)。更新我的动态 DNS 记录的 curl 调用就是一个例子。在这种情况下,命令行参数允许我使用公共地址而不是临时地址。curl -6 --interface 2a02:8071:6a0:0f00:9801:dc53:2556:d8a2 https://mySubDomain.nsupdate.info:[email protected]/nic/update

但是我怎样才能让程序普遍使用公共地址呢?

答案1

只需禁用隐私即可。但请注意,所有应用程序都将使用剩余的一个 IPv6 地址。请参阅https://www.sevenforums.com/tutorials/304071-ipv6-temporary-address-enable-disable.html

相关内容