CentOS 7安裝BBR教程
阿新 • • 發佈:2018-11-04
自Google於2016年9月宣佈將BBR開源起,世界各國的極客們就開始研究了,對於常年受制於特殊網路環境下的我國民眾,長期都在尋找各種提速的方法。對於bbr而言,通俗來講就是對Linux核心TCP協議的優化從而達到提速的目的。但是注意的是,1)bbr不能改變地理位置的限制,也就是說他不會改變網路的線路,該繞還是繞;2)安裝和開啟bbr往往要更新核心,因此對於VPS而言,推薦選擇KVM構架。本文將簡述bbr在CentOS 7下的安裝和啟用的方法,親測有效,整個流程也十分簡單。
1、yum系統更新
yum update
2、檢視系統版本
cat /etc/redhat-release
輸出如下則表示已升級到7.5
CentOS Linux release 7.5.1804 (Core)
3、安裝elrepo並升級核心
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 -y
正常情況下將輸出如下資訊:
Transaction Summary =================================================================================== Install 1 Package Total download size: 46 M Installed size: 205 M Downloading packages: kernel-ml-4.19.0-1.el7.elrepo.x86_64.rpm | 46 MB 00:00:19 Running transaction check Running transaction test Transaction test succeeded Running transaction Warning: RPMDB altered outside of yum. Installing : kernel-ml-4.19.0-1.el7.elrepo.x86_64 1/1 Verifying : kernel-ml-4.19.0-1.el7.elrepo.x86_64 1/1 Installed: kernel-ml.x86_64 0:4.19.0-1.el7.elrepo Complete!
安裝完成後使用下面命令檢視當前已安裝的核心
awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg
返回
0 : CentOS Linux (4.19.0-1.el7.elrepo.x86_64) 7 (Core) 1 : CentOS Linux 7 Rescue ee7953a3b5944053a26f29daf8c71e2f (3.10.0-862.14.4.el7.x86_64) 2 : CentOS Linux (3.10.0-862.14.4.el7.x86_64) 7 (Core) 3 : CentOS Linux (3.10.0-862.3.2.el7.x86_64) 7 (Core) 4 : CentOS Linux (3.10.0-862.el7.x86_64) 7 (Core) 5 : CentOS Linux (0-rescue-4bbda2095d924b72b05507b68bd509f0) 7 (Core)
把CentOS Linux (4.19.0-1.el7.elrepo.x86_64) 7 (Core)核心設定為預設
grub2-set-default 0
重啟
reboot
4、設定BBR
編輯
vi /etc/sysctl.conf
新增如下內容
net.core.default_qdisc = fq
net.ipv4.tcp_congestion_control = bbr
載入系統引數(正常情況下會輸出我們之前加入的內容)
sysctl -p
驗證bbr是否已經開啟
1、如果
sysctl net.ipv4.tcp_available_congestion_control
返回
net.ipv4.tcp_available_congestion_control = reno cubic bbr
則成功
2、若
lsmod | grep bbr
返回形如如下形式的資訊即成功
tcp_bbr 20480 2
為了測試 BBR 的網路效能增強, 您可以在 Web 伺服器目錄中建立一個檔案以供下載, 然後, 從臺式計算機上的 Web 瀏覽器測試下載速度。
sudo yum install httpd -y
sudo systemctl start httpd.service
sudo firewall-cmd --zone=public --permanent --add-service=http
sudo firewall-cmd --reload
cd /var/www/html
sudo dd if=/dev/zero of=500mb.zip bs=1024k count=500
最後, 從桌面計算機上的 Web 瀏覽器訪問 URL http://[your-server-IP]/500mb.zip , 然後評估執行下載速度。