最近看有人问博主如何限制服务器的上传带宽,所以就分享下此前经常用的一个限速脚本 WonderShaper
,原理的话,网上比较详细的解释是 WonderShaper
使用 tc
来定义流量调整命令,使用 QoS
来处理特定的网络接口。外发流量通过放在不同优先级的队列中,达到限制传出流量速率的目的;而传入流量通过丢包的方式来达到速率限制的目的。用起来挺方便的,有需求的可以了解下。
使用
Github 地址:
安装的话是可以直接用软件包安装,不过版本都不太新,所以这里直接从 Github
拉取最新源码。
1、安装依赖
#Debian/Ubuntu系统apt install -y make git#CentOS系统yum install make git -y
2、安装 WonderShaper
git clone https://github.com/magnific0/wondershaper.gitcd wondershapermake install
3、设置限速
#使用命令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
首先查看网卡:
#这里提供三个可以查看网卡的命令,建议使用第一个ifconfigip addrroute
比如我要限制 eth0
网卡速度,使用命令:
#限制上传带宽为10Mwondershaper -a eth0 -u 10240#限制下载带宽为10Mwondershaper -a eth0 -d 10240#限制上传和上传均10Mwondershaper -a eth0 -d 10240 -u 10240#清除网卡限速规则wondershaper -c -a eth0
然后我们可以测一下速,使用命令:
wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.pychmod +x speedtest-cli./speedtest-cli
这是没限速前的测速:
上传 / 下载限速 10M
后的测速:
开机自启
一般设置限速规则后,服务器重启的话,限速规则会自动失效,所以这里需要稍微设置一下,使其开机也自动生效,这里就说 2
种方法。
1、使用 rc.local
这是最简单的设置自启方法,不过 Debian 9
、Ubuntu 17+
是没有 rc.local
文件的,所以使用该系统的需要先配置一下。
1、添加rc-local.service,以下为一整条命令,一起复制运行cat > /etc/systemd/system/rc-local.service <<EOF[Unit]Description=/etc/rc.localConditionPathExists=/etc/rc.local[Service]Type=forkingExecStart=/etc/rc.local startTimeoutSec=0StandardOutput=ttyRemainAfterExit=yesSysVStartPriority=99[Install]WantedBy=multi-user.targetEOF2、新建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.EOF3、添加权限并设置开机自启chmod +x /etc/rc.localsystemctl start rc-localsystemctl enable rc-local
最后将启动命令加入 rc.local
文件,使用命令:
#CentOS 7系统echo "wondershaper -a eth0 -d 10240 -u 10240" >> /etc/rc.d/rc.localchmod +x /etc/rc.d/rc.local#CentOS 6、Debian、Ubuntu系统echo "wondershaper -a eth0 -d 10240 -u 10240" >> /etc/rc.localchmod +x /etc/rc.local
这里限速命令自行修改。
2、使用 Systemd
由于安装的时候,Systemd
配置文件也给你了,所以就方便使用了,不过该方法只适用于 CentOS 7
、Debian 8+
、Ubuntu 16+
等。
由于启动时,默认调用的配置文件为 /etc/conf.d/wondershaper.conf
,所以先编辑该文件:
nano /etc/conf.d/wondershaper.conf
大致如下:
[wondershaper]# AdapterIFACE="eth0"# Download rate in KbpsDSPEED="10240"# Upload rate in KbpsUSPEED="10240"
参数依次为网卡、下载、上传限制,修改好了后,使用 Ctrl+x
、y
保存退出。
再启动并开机自启:
systemctl start wondershapersystemctl enable wondershaper