iperf3 测试教程
in 默认分类 with 0 comment

iperf3 测试教程

in 默认分类 with 0 comment

Linxu
#安装iperf3

  apt install  iperf3

#服务器运行iperf3

  iperf3 -s

# iPerf3 服务端出口带宽测试(单线程)

 iperf3 -c 192.168.3.11 -R -t 20

# iPerf3 服务端入口带宽测试(单线程)

   iperf3 -c 192.168.3.11 -t 20

# iPerf3 服务端出口带宽测试(多线程)

   iperf3 -c 192.168.3.11 -R -t 20 -P 10

# iPerf3 服务端入口带宽测试(多线程)

   iperf3 -c 192.168.3.11 -t 20 -P 10