shoujunfeng (@cfbiso)更新win11 24h2 后,v2rayn 中所有节点都无法连通的解决方法 中发帖

原因是 24h2 tcp 连接都使用bbr2 
powershell 下运行
Get-NetTCPSetting | Select SettingName,CongestionProvider
[1ed9b1decc4e3c0c26f9ddb6a2c2fdd]
需要运行以下命令改为cubic算法,注意要用管理员权限运行
netsh int tcp set supplemental template=internet congestionprovider=CUBIC

netsh int tcp set supplemental template=internetcustom congestionprovider=CUBIC

netsh int tcp set supplemental template=Compat congestionprovider=NewReno

net...