mirror of https://github.com/helloxz/shell.git
xiaoz
5 years ago
1 changed files with 19 additions and 0 deletions
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
#!/bin/bash |
||||
########## CentOS 7安装BBR ############### |
||||
|
||||
yum -y install wget |
||||
wget https://www.elrepo.org/RPM-GPG-KEY-elrepo.org |
||||
rpm --import RPM-GPG-KEY-elrepo.org |
||||
rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-3.el7.elrepo.noarch.rpm |
||||
|
||||
#升级最新内核 |
||||
yum --enablerepo=elrepo-kernel install kernel-ml -y |
||||
#设置最新内核 |
||||
grub2-set-default 0 |
||||
|
||||
#写入配置文件 |
||||
echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf |
||||
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf |
||||
|
||||
#重启服务器 |
||||
reboot |
Loading…
Reference in new issue