当前位置:首页 > 计算机科学 > 网络技术 > 正文内容

centos7编译BBRplus最新内核_不断更新中

fanglong2020-08-26网络技术2916

bbrplus4.14.195最新内核下载:

https://dl.loulin.bid:89/linux/centos/RPMS/kernel/el7/bbrplus/ 

headers devel包有需要自行下载.


使用

安装内核

yum -y install https://dl.loulin.bid:89/linux/centos/RPMS/kernel/el7/bbrplus/kernel-4.14.195_bbrplus-1.x86_64.rpm

查看安装内核

rpm -qa | grep kernel

或 awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg

切换启动内核

grub2-set-default 'CentOS Linux (4.14.195) 7 (Core)'

或 grub2-set-default 0


设置ecn

echo "net.ipv4.tcp_ecn=1" >> /etc/sysctl.conf

设置fq
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
设置bbrplus
echo "net.ipv4.tcp_congestion_control=bbrplus" >> /etc/sysctl.conf

重启 reboot

启动以后,确认已启动内核

uname -sr

确认正确打开bbrplus

lsmod | grep bbrplus



参考资源源码地址:

bbr & bbr2(目前还在测试)  https://github.com/google/bbr 

bbrplus              https://github.com/cx9208/bbrplus 



扫描二维码推送至手机访问。

版权声明:本文由人从众的博客发布,如需转载请注明出处。

本文链接:http://urls.wang/41.html

分享给朋友:

相关文章

Centos7中添加、删除Swap交换分区的方法

Swap空间的作用是当系统的物理内存不够用的时候,就需要将物理内存中的一部分空间释放出来,以供当前运行的程序使用。这篇文章主要给大家介绍了关于Centos7中添加、删除Swap交换分区的相...

nginx与php-fpm通信的两种方式

在linux中,nginx服务器和php-fpm可以通过tcp socket和unix socket两种方式实现。unix socket是一种终端,可以使同一台操作系统上的两个或多个进程进行数据通信。...

nginx报错[warn] the “ssl” directive is deprecated的解决办法

最近在复制旧机器上的nginx.conf配置文件到新机器上的时候,重启后出现这么一个报错.nginx: [warn] the “ssl” directive is deprecated, use th...

如何查看已经安装的nginx、apache、mysql和php的编译参数

1、nginx编译参数:$ nginx -V#注意:需保证nginx在环境变量中,或者使用绝对路径的形式:your_nginx_dir/sbin/nginx -V2、apache编...

php 编译安装插件提示PHP Warning: PHP Startup: Unable to load dynamic library 报错

又或如: cannot open shared object file: No such file or directory in Unknown on line 0 PHP message...

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。