最新消息: 新版网站上线了!!!

linux限制网速的方法

一、在Linux/Centos下用wondershaper限速
1、首先下载wondershaper的rpm安装包:wondershaper-1.1a-7.noarch.rpm
  
2、安装wondershaper:
rpm -ivh wondershaper-1.1a-7.noarch.rpm
 
3、限速命令:
wondershaper bond0 500 50
第一个参数为网卡接口名,后面两个数字分别代表下行和上行的速度(单位Kb)
 
4、取消限速:
wondershaper clear eth0
 
二、使用Linux命令行测试网速
 
1、安装speedtest-cli
 
speedtest-cli是一个用Python编写的轻量级Linux命令行工具,在Python2.4至3.4版本下均可运行。它基于Speedtest.net的基础架构来测量网络的上/下行速率。安装speedtest-cli很简单——只需要下载其Python脚本文件。
 
wget https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py --no-check-certificate
chmod a+rx speedtest_cli.py
mv speedtest_cli.py /usr/local/bin/speedtest-cli
chown root:root /usr/local/bin/speedtest-cli
 
2、使用speedtest-cli测试网速
 
使用speedtest-cli命令也很简单,它不需要任何参数即可工作。
 
speedtest-cli
 
输入这个命令后,它会自动发现离你最近的Speedtest.net服务器(地理距离),然后打印出测试的网络上/下行速率。
 

转载请注明:谷谷点程序 » linux限制网速的方法