Centos系统结构使用iperf3测速
Centos系统结构使用iperf3测速
1.接收iperf3安装包
wget https://iperf.fr/download/fedora/iperf3-3.1.3-1.fc24.x86_64.rpm
2.安装iperf3
我们需要准备2台服务质量水平器设备,都安装iperf3,其中1台作为服务质量水平端,另1台作为顾客端:
rpm -i iperf3-3.1.3-1.fc24.x86_64.rpm
3.在服务质量水平端主机上启动iperf3
iperf3 -s
4.在顾客端主机上启动iperf3,并作为顾客端向服务质量水平端发起链接:
iperf3 -c <服务质量水平端IP地址> -d -t 60
如果报错“no route to host”,则需要先关闭服务质量水平端的防火墙再进行试验:
systemctl stop firewalld.service
5.iperf3还有一些其他的用法,可以通过命令iperf3 help进行查看