使用iperf3测速

iperf3不分服务端和客户端,通过启动参数控制。

https://iperf.fr/iperf-download.php

安装(以Ubuntu为例)

1
sudo apt-get install iperf3

运行服务端

可以使用任何电脑,假设用Windows台式机,则下载对应iperf3.exe

1
iperf -s

运行客户端

1
2
iperf3 -c <server_host> #默认10秒
iperf3 -c <server_host> -t 60 #一分钟

Done.

参考资料
https://iperf.fr/iperf-doc.php