如何让 Windows 10 尊重我的 IPv6 接口指标?

如何让 Windows 10 尊重我的 IPv6 接口指标?

在 Windows 10 系统上,我有多个接口。我为每个接口分配了 IPv4 和 IPv6 的路由指标。查看路由表时会使用我的 IPv4 指标。对于 IPv6,我的指标会被忽略,并且会为传出连接选择错误的接口。

IPv4 指标

IPv6 指标

PS C:\users\Public> Get-NetRoute -DestinationPrefix '0.0.0.0/0' | Format-Table -AutoSize

ifIndex DestinationPrefix NextHop      RouteMetric PolicyStore
------- ----------------- -------      ----------- -----------
6       0.0.0.0/0         10.0.0.1             768 ActiveStore
3       0.0.0.0/0         192.168.8.1          512 ActiveStore
4       0.0.0.0/0         192.168.32.1           0 ActiveStore


PS C:\users\Public> Get-NetRoute -DestinationPrefix '::/0' | Format-Table -AutoSize

ifIndex DestinationPrefix NextHop                   RouteMetric PolicyStore
------- ----------------- -------                   ----------- -----------
6       ::/0              fe80::7acd:8eff:fe45:1352         256 ActiveStore
3       ::/0              fe80::20d:b9ff:fe24:78f4          256 ActiveStore
4       ::/0              fe80::208:a2ff:fe09:9119          256 ActiveStore

我需要做什么才能让 Windows 尊重我的 IPv6 路由指标?

相关内容