iperf 用法

如果要测量网络的带宽,iperf是一个非常有用的工具。

UNIX系统中netperf比较有名,UDP的测量使用iperf更容易。

Windows和Linux的各种操作系统都可以使用。

下载

NLANR / DAST:iperf - The TCP/UDP Bandwidth Measurement Tool

http://sourceforge.net/projects/iperf

用法

下面是命令的用法。

单播模式

  • TCP的情况
    • 服务器
$ iperf -s
    • 客户端
$ iperf -c <接收端主机名>或<接收端的IP地址>
    • 例1)测试TCP通信的最大速率。
$ iperf -c 192.168.1.100
    • 例2)使用TCP发送100兆字节的数据
$ iperf -c <目标地址> -l 100M
  • UDP的情况
    • 服务器
$ iperf -s -u
    • 客户端
$ iperf -c 192.168.1.100 -u -b <传输带宽> -t <测量时间[秒] > -i <间隔>
    • 例1)以UDP方式向192.168.1.100传送60秒的10M的数据流。

每间隔两秒钟输出报告结果。

$ iperf -c 192.168.1.100 -u -b 10M -t 60 -i 2 
    • 例2)以UDP方式向192.168.1.100传送60秒的10M的双向数据流。
$ iperf -c 192.168.1.100 -u -b 10M -t 60 -i 2 -d
    • 例3)以UDP方式向192.168.1.100传送60秒的10M的3路双向数据流。
$ iperf -c 192.168.1.100 -u -b 10M -t 60 -i 2 -P 3

组播模式

  • 服务器
    $ iperf -s -u -B <多播地址> -i <结果显示间隔>  
EX)$ iperf -s -u -B 224.0.55.55 -i 1
  • 客户端
    $ iperf -c <多播地址> -u -T < TTL > -t <测量时间[秒] > -i <间隔> -b <传输带宽> 

EX)$ iperf -c 224.0.55.55 -u -T 32 -t 10 -i 1 -b 1M

IPv6模式

  • 服务器
    $ iperf -s -V 
  • 客户端
    $ iperf -c <服务器的IPv6地址> -V 

 

查看结果

  • 服务器端
 
node2> iperf -s -u -i 1 
------------------------------------------------------------ 
Server listening on UDP port 5001 Receiving 1470 byte datagrams 
UDP buffer size: 60.0 KByte (default) 
------------------------------------------------------------ 
[ 4] local  port 5001 connected with  port 9726 
[ ID] Interval Transfer Bandwidth Jitter Lost/Total Datagrams 
[ 4] 0.0- 1.0 sec 1.3 MBytes 10.0 Mbits/sec 0.209 ms 1/ 894 (0.11%) 
[ 4] 1.0- 2.0 sec 1.3 MBytes 10.0 Mbits/sec 0.221 ms 0/ 892 (0%) ←中间结果
[ 4] 2.0- 3.0 sec 1.3 MBytes 10.0 Mbits/sec 0.277 ms 0/ 892 (0%) 
[ 4] 3.0- 4.0 sec 1.3 MBytes 10.0 Mbits/sec 0.359 ms 0/ 893 (0%) 
[ 4] 4.0- 5.0 sec 1.3 MBytes 10.0 Mbits/sec 0.251 ms 0/ 892 (0%) 
[ 4] 5.0- 6.0 sec 1.3 MBytes 10.0 Mbits/sec 0.215 ms 0/ 892 (0%) 
[ 4] 6.0- 7.0 sec 1.3 MBytes 10.0 Mbits/sec 0.325 ms 0/ 892 (0%) 
[ 4] 7.0- 8.0 sec 1.3 MBytes 10.0 Mbits/sec 0.254 ms 0/ 892 (0%) 
[ 4] 8.0- 9.0 sec 1.3 MBytes 10.0 Mbits/sec 0.282 ms 0/ 892 (0%) 
[ 4] 0.0-10.0 sec 12.5 MBytes 10.0 Mbits/sec 0.243 ms 1/ 8922 (0.011%) ←最终结果
从左至右,测量时间,接收到的数据,bps,单向延迟,丢包数/接收数量(丢包率)
 
  • 客户端
 
node1> iperf -c node2 -u -b 10m 
------------------------------------------------------------ 

Client connecting to node2, UDP port 5001 Sending 1470 byte datagrams 
UDP buffer size: 60.0 KByte (default) 

------------------------------------------------------------ 

[ 3] local  port 9726 connected with  port 5001 
[ ID] Interval Transfer Bandwidth [ 3] 0.0-10.0 sec 12.5 MBytes 10.0 Mbits/sec 
[ 3] Sent 8922 datagrams 
 

选项

-s 服务器模式启动
-c <服务器地址> 客户端启动模式启动
-B <绑定地址> 加入指定的组播,只在组播情况下使用
-u UDP发送(-b 选项情况下可选)
-b <编号> [ KM ] 指定带宽(缺省为1 Mbps)仅用于UDP
-T <数> TTL
-t <秒> 测量时间
-i <秒> 报告显示间隔
-l <字节> 数据包大小
-d 发送接收模式

你可能感兴趣的:(通讯)