标签:lsm htm 代码 epo inux tcp arc enable 上线
BBR 的描述:Google 开源了其 TCP BBR 拥塞控制算法,并提交到了 Linux 内核,从 4.9 开始,Linux 内核已经用上了该算法。根据以往的传统,Google 总是先在自家的生产环境上线运用后,才会将代码开源,此次也不例外。
根据实地测试,在部署了最新版内核并开启了 TCP BBR 的机器上,网速甚至可以提升好几个数量级。
要在CentOS 上安装最新的内核版本,需要增加一个 ELRepo 源。
首先,载入公钥,让我们添加 ELRepo GPG key:
# rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
为 RHEL-6,SL-7或CentOS-7 源:
# rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm
安装 fastestmirror
# yum install yum-plugin-fastestmirror
安装kernel 最新版
# yum --enablerepo=elrepo-kernel install kernel-ml kernel-ml-devel
将kernel-ml 选为第一启动
# grub2-set-default 0
重启服务器
# reboot
重启后,通过 uname -a 查看内核是否切换到最新版
# uname -a
Linux ip-172-31-16-70.ap-southeast-1.compute.internal 5.2.0-1.el7.elrepo.x86_64 #1 SMP Mon Jul 8 09:37:45 EDT 2019 x86_64 x86_64 x86_64 GNU/Linux
在 /etc/sysctl.conf 中添加一下配置
# echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
# echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
保存退出使其生效
# sysctl -p
执行下面明亮查看内核是否开启 TCP BBR
# sysctl net.ipv4.tcp_available_congestion_control
net.ipv4.tcp_available_congestion_control = bbr cubic reno
# sysctl net.ipv4.tcp_congestion_control
net.ipv4.tcp_congestion_control = bbr
若返回以上信息,则说明开启成功
查看 tcp_bbr 模块是否加载:
# lsmod | grep tcp_bbr
tcp_bbr 20480 1
如果想关闭可执行:
sed -i ‘/net\.core\.default_qdisc=fq/d‘ /etc/sysctl.conf
sed -i ‘/net\.ipv4\.tcp_congestion_control=bbr/d‘ /etc/sysctl.conf
sysctl -p
执行完毕重启可生效
本文参考 https://www.dahaiwangyang.com/2019-03/technical-note/linux/centos7/tcp-ip/248.html
标签:lsm htm 代码 epo inux tcp arc enable 上线
原文地址:https://blog.51cto.com/13481789/2427984