【win11+】禁用BBR2以恢复网络连接
从win11开始引入了tcp bbr 2算法,这个算法广泛用于linux,好处肯定是有的,但看一些论坛反馈,有人开启后部分游戏连不上服务器,这个改回默认就行。
本文内容基本复制网上的,作为补档用(水贴用)。
BBR算法默认就是关闭的,除非没事乱开功能,否则压根就不用改。

管理员运行powershell
1、查看当前状态
Get-NetTCPSetting | Select SettingName, CongestionProvider

2、输入命令,以恢复默认
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
netsh int tcp set supplemental template=Datacenter congestionprovider=CUBIC
netsh int tcp set supplemental template=Datacentercustom congestionprovider=CUBIC

3、再次查看状态
跟步骤1一样

至于怎么开启bbr,就不放了,网上大把开启方法。
总之能调教好的人,都用不上这篇东西
v1.0 2023.7.29