文章目录[隐藏]
开始用了openwrt后感觉世界真的太美好了。不能用openwrt系统的路由器就不是路由器。
现在增加2个功能和测速相关
系统环境
设备:N1
系统:openwrt 下载这里 https://www.etzzy.com/6221.html
openwrt 内网测速
思路:N1作为测速服务器,在N1上安装服务器端,然后在各个终端安装对应的客户端,对服务器端进行测速,就知道你内网连接速度是否正常了。
使用iperf
安装好了就可以了
然后ssh登录N1
iperf3 -s –D
让这个服务可以后台运行
然后配置客户端
这是官网:https://iperf.fr/iperf-download.php
我用的是windows,这个下载后全部要使用命令提示的方式来做。找到对应程序的路径用命令提示符来运行
单线程:iperf3 -c 10.0.0.3 -b 1000m -t 60 -i 1 –u
多线程:iperf3 -c 10.0.0.3 -b 1000m -t 60 -i 1 -u -P 2
还有对应的安卓,ios 测你的无线网络吧
对外测速
思路:speedtest 的python命令
直接在n1上安装,命令执行
wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py
chmod +x speedtest-cli
调用
./speedtest-cli –list 显示服务器列表(两个短杠)
测速你要的服务器速度
./speedtest-cli --server 26404(后面的数字是服务器的号码)