Днс меняйте и ББР2 включите, полегче станет.
Enabling BBR / BBR v2 on Windows 11
Open PowerShell (as Administrator) and first check the current congestion control algorithm:
NetTCPSetting | sеlесt SettingName, CongestionProvider
Then enable BBRv2:
netsh int tcp set supplemental template=Internet congestionprovider=BBR2
netsh int tcp set supplemental template=InternetCustom congestionprovider=BBR2
netsh int tcp set supplemental template=Datacenter congestionprovider=BBR2
netsh int tcp set supplemental template=DatacenterCustom congestionprovider=BBR2
netsh int tcp set supplemental template=Compat congestionprovider=BBR2
Here, you can also rерlасе BBR2 with BBR (BBR v1). Interested users can test and compare the results.
Note: On Windows 11 23H2 / 24H2 or newer versions, enabling BBR v2 may cause local TCP connections to become unusable (e.g., causing adb to freeze, Steam to fail, etc.), We also need to fix the local TCP connection using the following command. (Source, MSDN)
netsh int ipv6 set gl loopbacklargemtu=disable
netsh int ipv4 set gl loopbacklargemtu=disable
Run the command again to confirm it has been successfully enabled.
If you encounter network related issues after enabling BBR2, you can also rеstоrе the default settings using the following command.
netsh int tcp set supplemental template=Internet congestionprovider=CUBIC
netsh int tcp set supplemental template=InternetCustom congestionprovider=CUBIC
netsh int tcp set supplemental template=Datacenter congestionprovider=CUBIC
netsh int tcp set supplemental template=DatacenterCustom congestionprovider=CUBIC
netsh int tcp set supplemental template=Compat congestionprovider=NewReno
netsh int ipv6 set gl loopbacklargemtu=enable
netsh int ipv4 set gl loopbacklargemtu=enable