linux服務器使用WonderShaper進行網絡速度限制
wondershaper 實際上是一個shell 腳本,它使用tc 來定義流量調整命令,使用QoS 來處理特定的網絡接口。外發流量通過放在不同優先級的隊列中,達到限制傳出流量速率的目的;而傳入流量通過丟包的方式來達到速率限制的目的。
wondershaper 的既定目標不僅僅是對一個接口增加其帶寬上限;當批量下載或上傳正在進行時,wondershaper 還試圖去保持互動性會話如SSH 的低延遲。同樣的,它還會控制批量上傳(例如, Dropbox 的同步)不會使得下載“窒息”,反之亦然。
GitHub地址:https://github.com/magnific0/wondershaper
Wonder Shaper 1.4
我們先安裝依賴
#Debian/Ubuntu系統
apt install -y make git
#CentOS系統
yum install make git -y
然後安裝WonderShaper
git clone https://github.com/magnific0/wondershaper.git
cd wondershaper
make install
安裝完成後就可以使用了,命令如下
USAGE: wondershaper [-hcs] [-a <adapter>] [-d <rate>] [-u <rate>]
OPTIONS:
-h Show this message
-a <adapter> Set the adapter
-d <rate> Set maximum download rate (in Kbps) and/or
-u <rate> Set maximum upload rate (in Kbps)
-p Use presets in / etc/conf.d/wondershaper.conf
-c Clear the limits from adapter
-s Show the current status of adapter
-v Show the current version
-h顯示幫助
-a <adapter>設置適配器
-d <rate>設置最大下載速率(以Kbps為單位)和/或
-u <rate>設置最大上傳速率(Kbps)
-p使用/etc/conf.d /wondershaper.conf中的預設
-c清除適配器的限制
-s顯示適配器的當前狀態
下面是使用教程:
首先我們要搞清楚你用的哪個網卡,名字是什麼?
查看網卡的命令有以下三個,我們推薦使用第一個
ifconfig
ip addr
route
找到你的網卡名,比如eth0,然後我們對他進行限速
#限制上傳帶寬為10M
wondershaper -a eth0 -u 10240
#限制下載帶寬為10M
wondershaper -a eth0 -d 10240
#限制上傳和上傳均10M
wondershaper -a eth0 -d 10240 -u 10240
#清楚網卡限速規則
wondershaper -c -a eth0
設置後立即生效。
然後因為默認是不跟隨系統啟動的,我們設置一下開機自啟動。
一般使用rc.local來進行開機自啟,但是Debian 9、Ubuntu 17+是沒有rc.local文件的,使用這些系統的需要進行以下設置:
1、添加rc-local.service,以下為一整條命令,一起復制運行
cat > /etc/systemd/system/rc-local.service <<EOF
[Unit]
Description=/etc/rc.local
ConditionPathExists=/ etc/rc.local
[Service]
Type=forking
ExecStart=/etc/rc.local start
TimeoutSec=0
StandardOutput=tty
RemainAfterExit=yes
SysVStartPriority=99
[Install]
WantedBy=multi-user.target
EOF
2、新建rc-local文件,以下為一整條命令,一起復制運行
cat > /etc/rc.local <<EOF
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will “exit 0” on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
EOF
3、添加權限並設置開機自啟
chmod +x /etc/rc.local
systemctl start rc-local
systemctl enable rc-local
上面就設置好了Debian 9、Ubuntu 17+的rc.local文件。
下面我們將啟動命令加入rc.local文件,使用命令:
#CentOS 7系統
echo “wondershaper -a eth0 -d 10240 -u 10240” >> /etc/rc.d/rc.local
chmod +x /etc/rc.d/rc.local
#CentOS 6、Debian、Ubuntu系統
echo “wondershaper -a eth0 -d 10240 -u 10240” >> /etc/rc.local
chmod +x /etc/rc.local
這裡限速命令自行修改。
使用Systemd
由於安裝的時候,Systemd配置文件也給你了,所以就方便使用了,不過該方法只適用於CentOS 7、Debian 8+、Ubuntu 16+等。
由於啟動時,默認調用的配置文件為/etc/conf.d/wondershaper.conf,所以先編輯該文件:
nano /etc/conf.d/wondershaper.conf
也可以使用寶塔來編輯。
[wondershaper]
# Adapter
#
IFACE=”eth0″
# Download rate in Kbps
#
DSPEED=”10240″
# Upload rate in Kbps
#
USPEED=”10240″
參數依次為網卡、下載、上傳限制,修改好了後,使用Ctrl+x、y保存退出。
再啟動程序並開機自啟:
systemctl start wondershaper
systemctl enable wondershaper