Iperf 是一个 TCP/IP 和 UDP/IP 的性能测量工具,能够提供网络吞吐率信息,以及震动、
丢包率、最大段和最大传输单元大小等统计信息;从而能够帮助我们测试网络性能,定位
网络瓶颈。其设计从根本上克服了原来的一些工具,如 ttcp 和 nettest 等,的固有的缺陷。
为了方便使用,Iperf 还提供了一个 Java 前端。如下图所示:
500) {this.resized=true; this.width=500;}" onmouseover="this.style.cursor='hand'" onclick="{window.open('http://www.linuxforum.net/doc/iperf.JPG');}" src="http://www.linuxforum.net/doc/iperf.JPG" onmousewheel="return bbimg(this)" width=400 border=0
这个前端仅仅是让用户以图形化的方式配置选项,实际上最终还是要(另外打开一个窗口)
运行 Iperf 程序。其启动方式为运行 jperf,实际上jperf 只是shell脚本,后台运行的
为java -classpath jperf.jar Interface。
Iperf 的命令行选项与jperf界面展示的基本一样。下面我们结合例子进行介绍其主要用法。
使用 iperf -s 命令将 Iperf 启动为 server 模式,在客户机上使用 iperf -c启动client模式。
[wfchair@wfchair] $ iperf -c bfp1 -i1
命令的输出如下:
--------------------------------------------------------------------------------
Client connecting to bfp1, TCP port 5001
TCP window size: 64.0 KByte (default)
--------------------------------------------------------------------------------
[ 3] local 152.16.3.132 port 1026 connected with 152.3.2.110 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0- 1.0 sec 720 KBytes 5.5 Mbits/sec
[ 3] 1.0- 2.3 sec 704 KBytes 4.3 Mbits/sec
[ 3] 2.3- 3.0 sec 448 KBytes 5.0 Mbits/sec
[ 3] 3.0- 4.1 sec 504 KBytes 3.6 Mbits/sec
[ 3] 4.1- 5.4 sec 656 KBytes 3.9 Mbits/sec
[ 3] 5.4- 6.1 sec 360 KBytes 4.1 Mbits/sec
[ 3] 6.1- 7.2 sec 584 KBytes 4.1 Mbits/sec
[ 3] 7.2- 8.1 sec 600 KBytes 5.1 Mbits/sec
[ 3] 8.1- 9.2 sec 472 KBytes 3.4 Mbits/sec
[ 3] 9.2-10.1 sec 480 KBytes 4.3 Mbits/sec
bfp1 为启动了 Iperf server 模式的一台机器。其中 -i 参数的含义是周期性报告的时间间隔
(interval),单位为秒;在上面的例子中,表示每隔一秒报告一次(带宽等信息)。
另外还有其它一些选项,您可以参看手册里的说明。