BBR 是什么我就不多做介绍了。如果系统自带内核高于4.9 则默认已包含 BBR。
操作方法:
1、使用 root 权限运行下面代码
uname -r //内核版本高于 4.9 就行。
2、开启BBR
echo "net.core.default_qdisc=fq">> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr">> /etc/sysctl.conf
3、生效更改
sysctl -p
4、执行下面命令,如果结果中带有bbr,则证明你的内核已开启bbr。
sysctl net.ipv4.tcp_available_congestion_control
注:也可以执行下面命令,如果结果中有bbr,也可以证明你的内核已开启bbr。
lsmod | grep bbr