licess 发表于 2017-8-10 13:50:37

Debian 9 Stretch BBR 开启方法

Debian 9 默认使用的是 Linux 4.9+ 内核,因此无需更换内裤,就可以直接开启BBR。其他低于 Linux 4.9 内核的Debian或其他Linux发行版,都需要先升级内核到 Linux 4.9+。

uname -r 看看是不是内核 >= 4.9

执行 lsmod | grep bbr,如果结果中没有 tcp_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

执行

sysctl net.ipv4.tcp_available_congestion_control
sysctl net.ipv4.tcp_congestion_control
如果结果都有bbr, 则证明你的内核已开启bbr

看到有 tcp_bbr 模块即说明bbr已启动
页: [1]
查看完整版本: Debian 9 Stretch BBR 开启方法