主要测试路由器有线、无线和各设备间的带宽瓶颈。
Padavan
opkg update
opkg install iperf3
iperf3 -s -D
-s 服务端,数据接收方
-D 后台运行
Windows
https://iperf.fr/iperf-download.php#windows
iperf3 -c 192.168.0.1 -b 1000m -t 60 -i 1 -u -P 2
-c 客户端,数据发送方
-路由器地址
-b 带宽 1000M
-t 测试时间
-i 显示时间[间隔]
-u UDP 模式(默认 TCP 模式)
-P 线程数量
Linux
apt install iperf3
iperf3 -c 192.168.0.1 -b 1000m -t 60 -i 1 -u -P 2
IOS
HE.NET Network Tools
macOS
https://iperf.fr/download/apple/iperf-3.1.3-macos-x86_64.zip
接收方和发送方可互调。
2020-5-3 更新:可以部署 LibreSpeed,可以内外网测速,比 iperf 便捷。
更新 2020-02-02
-i 是不是说 间隔时间 比较好一些?