黑帽联盟

 找回密码
 会员注册
查看: 269|回复: 0
打印 上一主题 下一主题

[资源教程] Linux VPS使用WonderShaper限制服务器上传/下载带宽

[复制链接]

852

主题

38

听众

3178

积分

管理员

Rank: 9Rank: 9Rank: 9

  • TA的每日心情

    昨天 21:43
  • 签到天数: 1539 天

    [LV.Master]伴坛终老

    说明:最近看有人问如何限制服务器的上传带宽,所以就分享下此前经常用的一个限速脚本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

    这是没限速前的测速:
    WonderShaper(1).png

    上传/下载限速10M后的测速:
    WonderShaper(2).png

    开机自启
    一般设置限速规则后,服务器重启的话,限速规则会自动失效,所以这里需要稍微设置一下,使其开机也自动生效,这里就说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.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 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

    帖子永久地址: 

    黑帽联盟 - 论坛版权1、本主题所有言论和图片纯属会员个人意见,与本论坛立场无关
    2、本站所有主题由该帖子作者发表,该帖子作者与黑帽联盟享有帖子相关版权
    3、其他单位或个人使用、转载或引用本文时必须同时征得该帖子作者和黑帽联盟的同意
    4、帖子作者须承担一切因本文发表而直接或间接导致的民事或刑事法律责任
    5、本帖部分内容转载自其它媒体,但并不代表本站赞同其观点和对其真实性负责
    6、如本帖侵犯到任何版权问题,请立即告知本站,本站将及时予与删除并致以最深的歉意
    7、黑帽联盟管理员和版主有权不事先通知发贴者而删除本文

    勿忘初心,方得始终!
    您需要登录后才可以回帖 登录 | 会员注册

    发布主题 !fastreply! 收藏帖子 返回列表 搜索
    回顶部