Debian9 手动开启 TCP BBR 实现加速
Debian9 默认的内核就是 4.9 的内核而且编译了 TCP BBR 的内容,所以可以直接通过参数开启。
新的 TCP 拥塞控制算法 BBR (Bottleneck Bandwidth and RTT) 可以让服务器的带宽尽量跑满,并且尽量不要有排队的情况,让网络服务更佳稳定和高效。
修改系统变量:
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
保存生效
sysctl -p
返回结果
net.ipv4.tcp_congestion_control = bbr fs.file-max = 65535
执行
sysctl net.ipv4.tcp_available_congestion_control && sysctl net.ipv4.tcp_congestion_control
返回结果
net.ipv4.tcp_available_congestion_control = bbr cubic reno net.ipv4.tcp_congestion_control = bbr
就开启了。
检测 BBR 是否开启
lsmod | grep bbr
返回结果有bbr进程
tcp_bbr 20480 12
码字很辛苦,转载请注明来自非WEB-DL资源站的《Debian9 手动开启 TCP BBR 实现加速》
2018-12-04
干货
评论
评论关闭