答案1
删除并重新添加辅助地址“跳过作为来源”指定标志。这只能通过命令行工具完成(但不是通过“TCP/IP 属性”GUI)。
网络管理员
Netsh 要求先删除该地址,然后重新添加:
netsh interface ipv4 add address <interface> <address>/<prefixlen> skipassource=true
例如:
netsh int ipv4 add addr "Ethernet" 192.168.1.5/24 skipassource=true
电源外壳
要添加新地址:
New-NetIPAddress -IPAddress <addr>/<len> -InterfaceAlias <interface> -SkipAsSource $True
PowerShell 还允许更改现有地址:
Get-NetIPAddress <address> | Set-NetIPAddress -SkipAsSource $True
最后说明
请注意,在 Server 2012 中,您必须使用仅有的命令行工具因为通过“TCP/IP 属性”GUI 进行的任何地址更改都将丢失所有地址的此标志。
更多信息: