Enable BBR on Ubuntu 24.04

First, check whether BBR is already enabled on your system:

1
sysctl net.ipv4.tcp_congestion_control

If the output shows tcp_congestion_control = cubic, it means BBR is not enabled yet.

Run the following two commands to enable BBR:

1
2
echo net.core.default_qdisc=fq >> /etc/sysctl.conf
echo net.ipv4.tcp_congestion_control=bbr >> /etc/sysctl.conf

Then apply the new settings:

1
sudo sysctl -p

Verify again:

1
sysctl net.ipv4.tcp_congestion_control

If the output shows tcp_congestion_control = bbr, it means BBR is successfully enabled.

You can also confirm that the BBR module is active:

1
lsmod | grep bbr

If you see bbr in the output, it means BBR is running and working properly ✅