Enabling BBR Congestion Control on Linux
If you’re running a server that handles long-distance TCP connections, switching from the default Cubic to BBR can make a noticeable difference in throughput. What is BBR? BBR (Bottleneck Bandwidth and Round-trip propagation time) is a congestion control algorithm developed by Google. Unlike loss-based algorithms like Cubic, BBR tries to model the actual bottleneck bandwidth and RTT, leading to better performance on lossy or high-latency links. Check Current Algorithm sysctl net.ipv4.tcp_congestion_control Most modern kernels default to cubic. ...