Google BBR is a congestion control algorithm that could significantly increase server throughput and reduce latency.
Google BBR has been built into Linux kernel 4.9 and higher, but needs to be manually turned on.
To learn more about the Google BBR algorithm, see this official blog or this official repository.
You can check the current Linux kernel version with the command uname -r
. When the version is greater than or equal to 4.9, you can deploy BBR directly by referring to the instructions below.
Generally speaking, the kernel versions of Ubuntu 18.04+, Debian 10+, CentOS 8+ and RHEL 8+ are greater than 4.9. But for Amazon Linux 2, you need to update the kernel in the following ways before deploying Google BBR.
Amazon Linux 2 provides newer versions of the verified Linux kernel, which can be installed from the Extras repository.
kernel-ng
from the Extras repository
sudo amazon-linux-extras install kernel-ng
sudo yum update
sudo reboot
uname -r
In this section, we will start Google BBR by modifying the configuration file.
/etc/sysctl.conf
sudo cp /etc/sysctl.conf /etc/sysctl.conf.backup
/etc/sysctl.conf
sudo vim /etc/sysctl.conf
Add the following lines to the file
net.core.default_qdisc = fq
net.ipv4.tcp_congestion_control = bbr
uname -r
. sysctl
settings:
sudo sysctl -p
For kernel versions < 4.20, you must reboot the server:
sudo reboot
sudo sysctl net.ipv4.tcp_available_congestion_control
# net.ipv4.tcp_available_congestion_control = reno cubic bbr
sudo sysctl -n net.ipv4.tcp_congestion_control
# bbr
lsmod | grep bbr
# tcp_bbr 16384 0