跳到主要内容

Debian12开启BBR

内核检查:

#检查内核版本,内核版本需要高于4.9
uname -r

一条命令开启

echo -e "\nnet.core.default_qdisc=fq\nnet.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf && sysctl -p

验证是否开启成功

sysctl net.ipv4.tcp_congestion_control
# 如果成功会输出:
# net.ipv4.tcp_congestion_control = bbr

或者

lsmod | grep bbr
# 如果成功会有输出
# tcp_bbr 20480 1