更新系统
Ubuntu/Debian
apt update && apt upgrade
Centos
yum clean all && yum update
更新后最好reboot重启一下
debian/ubuntu/centos8开启BBR
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
sysctl -p
现在已经开启,最后用下面↓命令验证一下是否成功开启bbr
lsmod | grep bbr
如果有如下类似输出,则证明Google BBR配置成功了。