微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。