简谈linux环境下网络性能测试工具iperf
为了测试实验室的网络性能的情况,所以应用了iperf来测试了一下,以下是关于iperf工具的使用方法:
(1)首先开两台机子(一台作为服务器,一台作为客户端),并且在两台机子都安装上iperf,具体安装要看相应的系统,我的是ubuntu用命令:sudo apt-get install iperf
安装好之后就可以用iperf来对你的网络环境进行测试了,如下是iperf的使用方法:
Iperf使用方法与参数说明
参数说明
-s 以server模式启动,eg:iperf –s 。Server端为数据的接收端。
-c host以client模式启动,host是server端地址,eg:iperf -c 222.35.11.23 。Client端为数据的发出端。
通用参数
-f [kmKM] 分别表示以Kbits, Mbits, KBytes, MBytes显示报告,默认以Mbits为单位,eg:iperf -c 222.35.11.23 -f K
-i sec 以秒为单位显示报告间隔,eg:iperf -c 222.35.11.23 -i 2
-l 缓冲区大小,默认是8KB,eg:iperf -c 222.35.11.23 -l 16
-m 显示tcp最大mtu值
-o 将报告和错误信息输出到文件eg:iperf -c 222.35.11.23 -o ciperflog.txt
-p 指定服务器端使用的端口或客户端所连接的端口eg:iperf -s -p 9999;iperf -c 222.35.11.23 -p 9999
-u 使用udp协议
-w 指定TCP窗口大小,默认是8KB
-B 绑定一个主机地址或接口(当主机有多个地址或接口时使用该参数)
-C 兼容旧版本(当server端和client端版本不一样时使用)
-M 设定TCP数据包的最大mtu值
-N 设定TCP不延时
-V 传输ipv6数据包
server专用参数
-D 以服务方式运行ipserf,eg:iperf -s -D
-R 停止iperf服务,针对-D,eg:iperf -s -R
client端专用参数
-d 同时进行双向传输测试
-n 指定传输的字节数,eg:iperf -c 222.35.11.23 -n 100000
-r 单独进行双向传输测试
-t 测试时间,默认10秒,eg:iperf -c 222.35.11.23 -t 5
-F 指定需要传输的文件
-T 指定ttl值
应用实例
使用 iperf -s 命令将 Iperf 启动为 server 模式,在客户机上使用 iperf -c启动client模式。
iperf –s
————————————————————
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
————————————————————
iperf -c 192.168.0.0(这是服务器的ip地址)
上面使用服务端和客户端的默认设置进行测试
iperf -s -w 300K
————————————————————
Server listening on TCP port 5001
TCP window size: 300 KByte
————————————————————
iperf -c 59.125.103.56 -f K -i 2 -w 300K
设定报告间隔为2秒,服务器端和客户端的TCP窗口都开到300KB
iperf -c 59.125.103.56 -f K -i 2 -w 300K –n 1000000
测试传输约1MB数据
iperf -c 59.125.103.56 -f K -i 2 -w 300K –t 36
测试持续36秒
iperf -c 220.112.45.87 -f K -i 2 -w 300k -n 10400000 -d
测试双向的传输
iperf -c 59.125.103.56 -f K -i 2 -w 300K –u
UDP测试
其中 -i 参数的含义是周期性报告的时间间隔(interval),单位为秒;在上面的例子中,表示每隔2秒报告一次带宽等信息。
更多推荐
所有评论(0)