-
Make sure kernel version is 4.9 or newer:
uname -r
Install Hardware Enablement Stack (HWE) to update kernel automaticly:
apt install --install-recommends linux-generic-hwe-16.04
-
Enable bbr:
modprobe tcp_bbr echo "tcp_bbr" >> /etc/modules-load.d/modules.conf echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf sysctl -p
-
Check if bbr is enabled:
sysctl net.ipv4.tcp_available_congestion_control sysctl net.ipv4.tcp_congestion_control lsmod | grep bbr
Created
February 23, 2018 08:06
-
-
Save xterat/cefccb42f7d4b2055368ebb00454861f to your computer and use it in GitHub Desktop.
Need reboot after Step 1: reboot
or sudo reboot
Need reboot after Step 1:
reboot
orsudo reboot
I don't think that's needed after sysctl -p
How can I enable other variants of BBR like Tsunami or BBR+ ?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using How to Upgrade Linux Kernel in Ubuntu 16.04 Server to upgrade kernel works too