iliyian / enable_bbr_on_ubuntu

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

enable_bbr_on_ubuntu


apt install --install-recommends linux-generic-hwe-20.04 -y

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

sysctl net.ipv4.tcp_available_congestion_control
sysctl net.ipv4.tcp_congestion_control
lsmod | grep bbr

About