如何让Windows 10遵守我的IPv6接口指标?


1

在Window 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路由指标,我需要做些什么?


好问题,但是......你真的需要这个吗?这三个接口是否实际连接到Internet?
迈克尔汉普顿

是的,所有3个都有有效的互联网连接。如果我禁用3个接口中的2个,则非禁用的接口可以正常工作。一个链接是快速但不可靠的Comcast连接(度量= 0),一个是缓慢,廉价但非常稳定的DSL(度量= 512)连接。第三个,并不总是有效,是一个无线连接(公制768),将连接到我的iPhone数据计划。当Comcast崩溃时,我希望能够删除Comcast连接的默认路由,但保留Comcast连接界面。
Zoredache 2016年

哦,是的,我知道我的事情过于复杂,我可以通过操纵我的路由器获得大部分相同的结果。但似乎应该可以在Windows上设置路由度量。嗯,我想知道Windows是否会尊重并使用AdvDefaultPreferenceradvd中的一个集合。
Zoredache 2016年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.