Iperf安装使用

时间:2024-03-12 21:53:47

1 下载安装

下载地址:https://iperf.fr/iperf-download.php

Linux环境下载安装:

wget https://iperf.fr/download/fedora/iperf3-3.1.3-1.fc24.x86_64.rpm

rpm -i iperf3-3.1.3-1.fc24.x86_64.rpm

也可以yum安装:yum install iperf3.x86_64 -y

Windows下载安装:

直接下载解压即可使用:D:\Tools\iperf-3.1.3-win64

Iperf安装使用

2 使用

2.1 一台服务器本地回环测试,打开两个终端t1和t2

在t1中输入命令:
iperf3 -s
在t2中输入命令:
iperf3 -c 127.0.0.1 -t 10

Iperf安装使用

2.2 两台环境之间的发包测试

这里以linux环境作为server端:

Iperf安装使用

windows作为client端,下面的192.168.231.128是上面linux环境的IP

Iperf安装使用

由图可见两台环境中在正常通信了

 

FQ

1 client端下发iperf3 -c 192.168.231.128命令时报iperf3: error - unable to connect to server: Connection refused

Iperf安装使用

解决办法:关闭防火墙即可

sudo systemctl stop firewalld

sudo systemctl status firewalld

Iperf安装使用