如何在 Windows 上启用 TCP BBR?

Var*_*nVk 4 tcp bandwidth congestion-control bandwidth-throttling

可以使用以下命令在 Linux 中启用 TCP BBR:

net.core.default_qdisc=fq

net.ipv4.tcp_congestion_control=bbr

正如这里所解释的

如何在 Windows 10 计算机上执行相同操作?

小智 5

适用于 Windows 11 22H2

netsh int tcp set supplemental Template=Internet CongestionProvider=bbr2
netsh int tcp set supplemental Template=Datacenter CongestionProvider=bbr2
netsh int tcp set supplemental Template=Compat CongestionProvider=bbr2
netsh int tcp set supplemental Template=DatacenterCustom CongestionProvider=bbr2
netsh int tcp set supplemental Template=InternetCustom CongestionProvider=bbr2

Get-NetTCPSetting | Select SettingName, CongestionProvider
Run Code Online (Sandbox Code Playgroud)