在 Windows 11 上,Windows 更新 > 高级选项 > 传递优化 > Allow downloads from other devices
呈灰色。
有办法可以启用它吗?
在 Windows 11 上,Windows 更新 > 高级选项 > 传递优化 > Allow downloads from other devices
呈灰色。
有办法可以启用它吗?
最初,当启用 ipv6 时,一切都会按预期工作:
Enable-NetAdapterBinding eth0 -ComponentID ms_tcpip6
Get-NetRoute -InterfaceAlias eth0 -AddressFamily IPv6
ifIndex DestinationPrefix NextHop RouteMetric ifMetric PolicyStore
------- ----------------- ------- ----------- -------- -----------
7 ff00::/8 :: 256 25 ActiveStore
7 fe80::bf46:cae3:359d:9876/128 :: 256 25 ActiveStore
7 fe80::/64 :: 256 25 ActiveStore
7 XXXX:XXXX:XXX:XXXX:fc5f:4d7:7ba1:33ed/128 :: 256 25 ActiveStore
7 XXXX:XXXX:XXX:XXXX:967:4d50:721e:31b7/128 :: 256 25 ActiveStore
7 XXXX:XXXX:XXX:XXXX::/64 :: 256 25 ActiveStore
7 ::/0 fe80::1 256 25 ActiveStore
fe80::1 是 Windows 客户端所连接的路由器的链路本地地址。
大约 30 分钟后,默认路由神奇地消失了。
我可以手动添加回默认路由器
New-NetRoute ::/0 -InterfaceAlias eth0 -NextHop fe80::1 -PolicyStore ActiveStore
但过一会儿又会消失。
知道为什么会发生这种情况以及如何解决它吗?
PS还有其他 Windows IPv6 客户端连接到同一路由器,但它们不存在此问题。因此,问题被隔离到一台 Windows 笔记本电脑上。
问题的答案。
是的
路由器 WAN UGA: XXXX:XXXX:XXX:XXXX::1/64
默认路由:下一跳ULA
OpenWrt 23.0.5 连接到 ISP 路由器 LAN 端口
Windows 11 专业版
自动地
本地网络
是的,Windows 客户端每 7-10 分钟一次
我尝试使用以下命令在 PowerShell 7.2.4 中绑定 Ctrl-N 和 Ctrl-P,但它们没有效果 - 新绑定不起作用。
Remove-PSReadLineKeyHandler Tab
Remove-PSReadLineKeyHandler Tab -ViMode Command
Remove-PSReadLineKeyHandler Shift-Tab
Remove-PSReadLineKeyHandler Shift-Tab -ViMode Command
Set-PSReadLineKeyHandler Ctrl+N -Function TabCompleteNext
Set-PSReadLineKeyHandler Ctrl+P -Function TabCompletePrevious
Set-PSReadLineKeyHandler Ctrl+N -Function TabCompleteNext -ViMode Command
Set-PSReadLineKeyHandler Ctrl+P -Function TabCompletePrevious -ViMode Command
Get-PSReadLineKeyHandler
...
Completion functions
====================
Key Function Description
--- -------- -----------
Ctrl+Spacebar PossibleCompletions Display the possible completions without changing the input
<Ctrl+Spacebar> PossibleCompletions Display the possible completions without changing the input
Ctrl+N TabCompleteNext Complete the input using the next completion
<Ctrl+N> TabCompleteNext Complete the input using the next completion
Ctrl+P TabCompletePrevious Complete the input using the previous completion
<Ctrl+P> TabCompletePrevious Complete the input using the previous completion
我也尝试了以下方法,但没有效果:
Set-PSReadLineKeyHandler Ctrl+N -Function ViTabCompleteNext
Set-PSReadLineKeyHandler Ctrl+P -Function ViTabCompletePrevious
Set-PSReadLineKeyHandler Ctrl+N -Function ViTabCompleteNext -ViMode Command
Set-PSReadLineKeyHandler Ctrl+P -Function ViTabCompletePrevious -ViMode Command
知道如何在 PowerShell 中绑定 TabCompleteNext/TabCompletePrevious 吗?