Rat's

Linux VPS使用WonderShaper限制服务器上传/下载带宽
说明:最近看有人问博主如何限制服务器的上传带宽,所以就分享下此前经常用的一个限速脚本WonderShaper,原理...
扫描右侧二维码阅读全文
28
2019/04

Linux VPS使用WonderShaper限制服务器上传/下载带宽

说明:最近看有人问博主如何限制服务器的上传带宽,所以就分享下此前经常用的一个限速脚本WonderShaper,原理的话,网上比较详细的解释是WonderShaper使用tc来定义流量调整命令,使用QoS来处理特定的网络接口。外发流量通过放在不同优先级的队列中,达到限制传出流量速率的目的;而传入流量通过丢包的方式来达到速率限制的目的。用起来挺方便的,有需求的可以了解下。

使用

Github地址:https://github.com/magnific0/wondershaper

安装的话是可以直接用软件包安装,不过版本都不太新,所以这里直接从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

这是没限速前的测速:
请输入图片描述
上传/下载限速10M后的测速:
请输入图片描述

开机自启

一般设置限速规则后,服务器重启的话,限速规则会自动失效,所以这里需要稍微设置一下,使其开机也自动生效,这里就说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
Vultr新用户注册送100美元/16个机房按小时计费,支持支付宝,【点击查看】。
最后修改:2019 年 04 月 28 日 09 : 45 PM

发表评论 取消回复

5 条评论

  1. UYG

    感谢博主。另外博主是哪家的机子啊,这么快!

    1. Rat's
      @UYG

      Spartanhost,介绍:https://www.moerats.com/archives/613/

      1. 安小磊
        @Rat's

        博主,,怎么给某个网络端口限速啊

        1. Rat's
          @安小磊

          Iptables就可以,具体操作可以百度或谷歌下

  2. lexo

    有点用,收藏下先