就是开启GOOGLE BBR,(如果英语好可以直接看官方链接)
Centos7开启方法:
1.更新系统
yum update -y
2.安装内核
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
3.查看安装内核并设置
awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg
返回结果应该如下:
0 : CentOS Linux (4.9.10-1.el7.elrepo.x86_64) 7 (Core)
1 : CentOS Linux (3.10.0-514.2.2.el7.x86_64) 7 (Core)
2 : CentOS Linux (4.9.0-1.el7.elrepo.x86_64) 7 (Core)
3 : CentOS Linux (3.10.0-327.36.3.el7.x86_64) 7 (Core)
4 : CentOS Linux (3.10.0-327.36.2.el7.x86_64) 7 (Core)
5 : CentOS Linux (3.10.0-327.28.3.el7.x86_64) 7 (Core)
6 : CentOS Linux (3.10.0-327.28.2.el7.x86_64) 7 (Core)
启动设置 (0号位需要启动的内核,默认安装内核均是0)
grub2-set-default 0
4. 重启
reboot
5.开启BBR
查看内核
uname -a
编辑/etc/sysctl.conf(vi命令用法)
vi /etc/sysctl.conf
然后把下面的代码复进去,保存。
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
保存执行
sysctl -p
查看是否开启
lsmod | grep bbr
转自知乎
作者:匿名用户
链接:https://www.zhihu.com/question/45903646/answer/149136445
来源:知乎
发表回复