Linux/VPS使用WonderShaper限制网卡上传/下载带宽速率

最近看有人问博主如何限制服务器的上传带宽,所以就下此前经常用的一个限速脚本 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.git
cd wondershaper
make 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

首先查看网卡:

#这里提供三个可以查看网卡的命令,建议使用第一个
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

然后我们可以测一下速,使用命令:

wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py
chmod +x speedtest-cli
./speedtest-cli

这是没限速前的测速:

a5d54b9b8572ec0

 

上传 / 下载限速 10M 后的测速:

ac745671fb7df0f

 

开机自启

一般设置限速规则后,服务器重启的话,限速规则会自动失效,所以这里需要稍设置一下,使其开机也自动生效,这里就说 2 种方法。

1、使用 rc.local
这是最简单的设置自启方法,不过 Debian 9Ubuntu 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

最后将启动命令加入 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

这里限速命令自行修改。

2、使用 Systemd
由于安装的时候,Systemd 配置文件也给你了,所以就方便使用了,不过该方法只适用于 CentOS 7Debian 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+xy 保存退出。

再启动并开机自启:

systemctl start wondershaper
systemctl enable wondershaper

© 版权声明
THE END
喜欢就支持一下吧
点赞11赞赏 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容