因此我运行了这些行来修复热点(不会分配 IP 地址)。
netsh winsock reset catalog
netsh int ipv4 reset reset.log
此后,网络运行正常。但是当我使用 VPN(IKEv2 - Windows 10 VPN)连接时,youtube、google 等网站没有在“新会话”中响应(即无法访问此网站 www.google.com 响应时间过长)。
如果网站之前已缓存,稍后使用 VPN 访问即可。很少有其他网站像 tunein.com 一样无需缓存即可运行
我的其他设备可以很好地运行此 VPN,因此我不认为这是服务器的问题。
有什么想法可能是什么原因造成的以及如何解决?
答案1
通过调整 VPN 接口的 MTU 大小解决了该问题。
在管理员模式下使用 cmd。输入ping www.google.com -f -l 1492
不断减少数字“1492”,直到结果不再碎片化。
使用你能成功获得的最大数字,然后加上 28。(ping 1344 成功,加上 28 得到 1372)这就是你的 MTU 数字
接下来,确保您的 VPN 已连接并输入netsh interface ipv4 show subinterface
。复制您的 VPN 接口名称。
输入netsh interface ipv4 set subinterface "Local Area Connection" mtu=1492 store=persistent
。在“本地连接”处输入您的 VPN 接口,并将 1492 替换为您推荐的 MTU 大小。