简介
iPerf是一种命令行工具,它通过测量服务器可以处理的最大网络吞吐量来测试网络速度,因此在遇到网络速度问题时特别有用,通过该工具可以确定哪台服务器存在性能问题。
编译和测试方式
1.选择操作环境
本文选用华为鲲鹏 云服务 ECS KC1实例做测试
2.编译源代码
本文以“iperf-2.0.8”版本为例,下载源码,并编译安装。
下载源代码。
wget https://iperf.fr/download/source/iperf-2.0.8-source.tar.gz
1)安装iPerf软件依赖。
yum install gcc-c++ -y
2)解压并安装iPerf。
tar -xvf iperf-2.0.8-source.tar.gz
cd iperf-2.0.8/
./configure && make && make install
3.运行和验证
iPerf由客户端和服务端组成,客户端连接到需要测试速度的服务端,且客户端和服务端均需要运行iPerf程序。
运行iPerf时,要求gcc的版本为4.8.5。
1)在服务端运行iPerf程序。
iperf -s -p 1234 -i 1
参数说明:
− -s 表示以服务器模式运行。
− -p 设置服务端监听端口。
− -i 设置每次报告之间的时间间隔,单位为秒。
服务端测试结果如下:
iperf -s -p 1234 -i 1
------------------------------------------------------------
Server listening on TCP port 1234
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[ 4] local 192.168.1.25 port 1234 connected with XX.XX.XX.XX port 35632
[ ID] Interval Transfer Bandwidth
[ 4] 0.0- 1.0 sec 46.2 MBytes 387 Mbits/sec
[ 4] 1.0- 2.0 sec 30.9 MBytes 260 Mbits/sec
[ 4] 2.0- 3.0 sec 31.2 MBytes 261 Mbits/sec
[ 4] 3.0- 4.0 sec 31.0 MBytes 260 Mbits/sec
[ 4] 4.0- 5.0 sec 31.0 MBytes 260 Mbits/sec
[ 4] 5.0- 6.0 sec 31.1 MBytes 261 Mbits/sec
[ 4] 6.0- 7.0 sec 30.8 MBytes 258 Mbits/sec
[ 4] 7.0- 8.0 sec 30.9 MBytes 260 Mbits/sec
[ 4] 8.0- 9.0 sec 31.1 MBytes 261 Mbits/sec
[ 4] 9.0-10.0 sec 31.1 MBytes 261 Mbits/sec
[ 4] 0.0-10.1 sec 329 MBytes 273 Mbits/sec
2) 在客户端运行iPerf程序。
在一台新的服务器上参照上述步骤安装iPerf,然后启动iPerf。
“XX.XX.XX.XX”是服务端的IP地址。
iperf -c XX.XX.XX.XX -p 1234 -i 1
参数说明:
− -c 表示要测试的服务端的IP地址,即运行服务端iPerf程序所在主机的地址。
− -p 设置服务器端运行iperf的端口号,示例中为“1234”。
− -i 设置每次报告之间的时间间隔,单位为秒。
客户端测试结果如下:
iperf -c xx.xx.xx.xx -p 1234 -i 1
------------------------------------------------------------
Client connecting to XX.XX.XX.XX, TCP port 1234
TCP window size: 85.0 KByte (default)
------------------------------------------------------------
[ 3] local 192.168.1.140 port 35632 connected with XX.XX.XX.XX port 1234
[ ID] Interval Transfer Bandwidth
[ 3] 0.0- 1.0 sec 48.8 MBytes 409 Mbits/sec
[ 3] 1.0- 2.0 sec 31.8 MBytes 266 Mbits/sec
[ 3] 2.0- 3.0 sec 30.6 MBytes 257 Mbits/sec
[ 3] 3.0- 4.0 sec 31.8 MBytes 266 Mbits/sec
[ 3] 4.0- 5.0 sec 30.5 MBytes 256 Mbits/sec
[ 3] 5.0- 6.0 sec 31.9 MBytes 267 Mbits/sec
[ 3] 6.0- 7.0 sec 30.5 MBytes 256 Mbits/sec
[ 3] 7.0- 8.0 sec 30.2 MBytes 254 Mbits/sec
[ 3] 8.0- 9.0 sec 32.0 MBytes 268 Mbits/sec
[ 3] 9.0-10.0 sec 30.6 MBytes 257 Mbits/sec
[ 3] 0.0-10.0 sec 329 MBytes 275 Mbits/sec
已知问题汇总
问题描述:
使用EulerOS或CentOS安装“iperf-2.0.8”版本,在编译的时候,会出现如下问题:
cluded from /usr/include/c++/7.3.0/cmath:42:0,
from /usr/include/c++/7.3.0/math.h:36,
from ../include/headers.h:85,
from ../include/Timestamp.hpp:63,
from delay.cpp:55:
/usr/include/c++/7.3.0/bits/cpp_type_traits.h:205:12: error: redefinition of ‘struct std::__is_integer<int>’
struct __is_integer<int>
^~~~~~~~~~~
问题原因:如下链接所示
https://gitlab.flux.utah.edu/emulab/emulab-devel/issues/336
解决方法:对于Euler OS,请采用“iperf-2.0.9”版本源码安装,具体安装步骤与2.0.8一致。