Centos 7 开启BBR

Posted wanan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 7 开启BBR相关的知识,希望对你有一定的参考价值。

# 升级内核
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm

yum --enablerepo=elrepo-kernel install kernel-ml -y

# 查看当前启动顺序
egrep ^menuentry /etc/grub2.cfg | cut -f 2 -d ‘

CentOS Linux (4.20.4-1.el7.elrepo.x86_64) 7 (Core)
CentOS Linux 7 Rescue 52576f5b3c2e410baf87b3c1f4bc78fb (3.10.0-957.1.3.el7.x86_64)
CentOS Linux (3.10.0-957.1.3.el7.x86_64) 7 (Core)
CentOS Linux (3.10.0-693.11.6.el7.x86_64) 7 (Core)
CentOS Linux (3.10.0-693.el7.x86_64) 7 (Core)
CentOS Linux (0-rescue-00a62363617944e08db8db894ba6145e) 7 (Core)

# 设置更新后的内核为默认启动
grub2-set-default 0   #(CentOS Linux (4.20.4-1.el7.elrepo.x86_64) 7 (Core))

# 重启
reboot

# 开启bbr
echo ‘net.core.default_qdisc=fq‘ | sudo tee -a /etc/sysctl.conf
echo ‘net.ipv4.tcp_congestion_control=bbr‘ | sudo tee -a /etc/sysctl.conf
sysctl -p

# 查看是否已经加载bbr模块
lsmod | grep bbr

以上是关于Centos 7 开启BBR的主要内容,如果未能解决你的问题,请参考以下文章

CentOS7 开启Google BBR加速

CentOS 8开启BBR加速/升级内核

CentOS6开启BBR加速

Centos 升级内核安装 BBR 简易操作!

BBR,附CentOS 6/7配置过程

centos7安装bbr