Centos7 開啟BBR加速

2021-08-09 22:19:22 字數 1402 閱讀 3678

透明並且使用方便,bbr作為現在tcp比較好的擁塞控制協議,通過對於頻寬和網路延遲的交替估計更加準確控制傳送視窗的大小。

centos7開啟方法:

1.更新系統

yum update -y

2.安裝核心

rpm --import 

rpm -uvh

yum --enablerepo=elrepo-kernel install kernel-ml

3.檢視安裝核心並設定

awk -f\'

'$1=="menuentry " ' /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

echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf

echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf

儲存執行

sysctl -p

檢視是否開啟

lsmod | grep bbr

一方面udp協議在有些情況下不可用,另一方面kcptun使用不方便,需要設定各種引數。

我的vultr 送$10的優惠碼 :

Centos7更換核心 開啟BBR

rpm import要為rhel 安裝elrepo7,sl 7或centos 7 rpm uvh安裝新的核心 2020.02.02 核心版本4.19.2 1 yum enablerepo elrepo kernel install kernel ml檢視已經安裝的核心 awk f 1 menuent...

docker映象加速 centos7

docker pull 拉取的時候很慢,可以用國內的 首先進入管理員模式防止不能修改 sudo i 進入這個目錄 cd e 可以按tap讓他自己提示你 cd etc docker 檢視一下目錄下的東西 ls 如果發現沒有daemon.json檔案,如果有就修改他 就新建乙個daemon.json 此...

CentOS 7 開啟網絡卡

1 檢視自己本機的網絡卡是否開啟 檢視 ens33 這個裝置是否連線上了,我這裡是已經連線上的狀態,如果未連線它會顯示未連線的狀態,如果未連線執行步驟 2 2 到 etc sysconfig network scripts 目錄下,檢視該目錄下的 ifcfg ens33 檔案 進入指定目錄 cd e...