iperf3是一款进行网络吞吐量测试的工具命令,由美国伊利诺斯大学研发和维护。在建立好客户端和服务器后,iperf3可以测试TCP和UDP的吞吐量。

语法格式:iperf3 [参数]

常用参数:

-p服务端监听端口(默认:5201)
-s启动服务端监听
-f格式化带宽输出:Kbits, Mbits, Kbytes, Mbytes
-i以秒为单位周期性输出带宽报告
-F传输或接收特定的文件
-B绑定特定的接口
-d显示调试输出信息
-J以JSON格式输出
-V显示更多详细的输出

参考实例

开启服务器监听:

[root@linuxcool ~]# iperf3 -s
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------

开启服务端监听并设置自定义监听端口:

[root@linuxcool ~]# iperf3 -s -p 6688
-----------------------------------------------------------
Server listening on 6688
-----------------------------------------------------------

启动调试模式:

[root@linuxcool ~]# iperf3 -s -d
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------

启服务器监听并显示更多详细的输出信息:

[root@linuxcool ~]# iperf3 -s -V
iperf 3.5
Linux linuxcool.com 4.18.0-80.el8.x86_64 #1 SMP Wed Mar 13 12:02:46 UTC 2019 x86_64
-----------------------------------------------------------
Server listening on 5201
-----------------------------------------------------------
Author