博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[测试工具]----iperf
阅读量:5797 次
发布时间:2019-06-18

本文共 4612 字,大约阅读时间需要 15 分钟。

iperf

https://sourceforge.net/projects/iperf/

http://downloads.es.net/pub/iperf/

https://github.com/esnet/iperf

http://www.sdnlab.com/2961.html

http://chuansong.me/n/801810

看这个

http://www.sdnlab.com/2961.html

Iperf是一个网络性能测试工具。可以测试TCP和UDP带宽质量,可以测量最大TCP带宽,具有多种参数和UDP特性,可以报告带宽,延迟抖动和数据包丢失。

Iperf使用方法与参数说明

参数说明

-s 以server模式启动,eg:iperf -s

-c host以client模式启动,host是server端地址,eg:iperf -c 222.35.11.23

通用参数

-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 以服务方式运行iperf,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 5001TCP window size: 8.00 KByte (default)------------------------------------------------------------iperf -c 59.128.103.56上面使用服务端和客户端的默认设置进行测试iperf -s -w 300K------------------------------------------------------------Server listening on TCP port 5001TCP window size: 300 KByte------------------------------------------------------------iperf -c 59.128.103.56 -f K -i 2 -w 300K设定报告间隔为2秒,服务器端和客户端的TCP窗口都开到300KBiperf -c 59.128.103.56 -f K -i 2 -w 300K –n 1000000测试传输约1MB数据iperf -c 59.128.103.56 -f K -i 2 -w 300K –t 36测试持续36秒iperf -c 59.128.103.56 -f K -i 2 -w 300K -n 10400000 –d测试双向的传输iperf -c 59.128.103.56 -f K -i 2 -w 300K –uUDP测试其中 -i 参数的含义是周期性报告的时间间隔(interval),单位为秒;在上面的例子中,表示每隔2秒报告一次带宽等信息。

最后一行为测试结果。Interval表示连接测试的时间范围,通常为10s。Transfer为在这个时间段内,客户端和服务器传输的数据总量。结果Bandwidth是我们最关注的就是网络传输速率,也就是带宽。

client

[root@jiangyi02.sqa.zmf /home/ahao.mah]#iperf3 -c 10.137.16.6 -f m -i 1 -t 10s -u -b 100mConnecting to host 10.137.16.6, port 5201[  4] local 10.137.16.5 port 46266 connected to 10.137.16.6 port 5201[ ID] Interval           Transfer     Bandwidth       Total Datagrams[  4]   0.00-1.00   sec  10.9 MBytes  91.0 Mbits/sec  1389[  4]   1.00-2.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   2.00-3.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   3.00-4.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   4.00-5.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   5.00-6.00   sec  11.9 MBytes  99.9 Mbits/sec  1525[  4]   6.00-7.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   7.00-8.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   8.00-9.00   sec  11.9 MBytes   100 Mbits/sec  1526[  4]   9.00-10.00  sec  11.9 MBytes   100 Mbits/sec  1526- - - - - - - - - - - - - - - - - - - - - - - - -[ ID] Interval           Transfer     Bandwidth       Jitter    Lost/Total Datagrams[  4]   0.00-10.00  sec   118 MBytes  99.1 Mbits/sec  0.090 ms  0/15122 (0%)[  4] Sent 15122 datagramsiperf Done.

server

-----------------------------------------------------------Server listening on 5201-----------------------------------------------------------Accepted connection from 10.137.16.5, port 5612[  6] local 10.137.16.6 port 5201 connected to 10.137.16.5 port 43882[ ID] Interval           Transfer     Bandwidth       Jitter    Lost/Total Datagrams[  6]   0.00-1.00   sec  98.1 MBytes   823 Mbits/sec  0.053 ms  0/12558 (0%)[  6]   1.00-2.00   sec   114 MBytes   957 Mbits/sec  0.099 ms  0/14597 (0%)[  6]   2.00-3.00   sec   114 MBytes   957 Mbits/sec  0.018 ms  0/14598 (0%)[  6]   3.00-4.00   sec   114 MBytes   957 Mbits/sec  0.116 ms  0/14598 (0%)[  6]   4.00-5.00   sec   114 MBytes   956 Mbits/sec  0.026 ms  0/14595 (0%)[  6]   5.00-6.00   sec   114 MBytes   956 Mbits/sec  0.122 ms  0/14593 (0%)[  6]   6.00-7.00   sec   114 MBytes   957 Mbits/sec  0.022 ms  0/14598 (0%)[  6]   7.00-8.00   sec   114 MBytes   957 Mbits/sec  0.119 ms  0/14595 (0%)[  6]   8.00-9.00   sec   114 MBytes   957 Mbits/sec  0.059 ms  0/14600 (0%)[  6]   9.00-10.00  sec   114 MBytes   956 Mbits/sec  0.128 ms  0/14593 (0%)[  6]  10.00-10.04  sec  5.02 MBytes   957 Mbits/sec  0.125 ms  0/643 (0%)- - - - - - - - - - - - - - - - - - - - - - - - -[ ID] Interval           Transfer     Bandwidth       Jitter    Lost/Total Datagrams[  6]   0.00-10.04  sec  0.00 Bytes  0.00 bits/sec  0.125 ms  0/144568 (0%)

970272-20170104203455925-151165759.png

970272-20170104203539909-1214316041.png

970272-20170104203724519-219126218.png

970272-20170104203747034-1926983916.png

970272-20170104203924081-1526924481.png

970272-20170104205121034-826831141.png

970272-20170104205405425-126839330.png

转载于:https://www.cnblogs.com/muahao/p/6250171.html

你可能感兴趣的文章
编玩边学获数千万元A轮融资,投资方为君联资本
查看>>
maven常用命令
查看>>
开发者论坛一周精粹(第五十五期) 全站HTTPS之OSS教程 一次可以备案几个网站?...
查看>>
(干货)Linux学习资源推荐
查看>>
蓝图(Blueprint)详解
查看>>
Spark之SQL解析(源码阅读十)
查看>>
Android图片添加水印图片并把图片保存到文件存储
查看>>
C#字符串的不变性
查看>>
前端路由简介以及vue-router实现原理
查看>>
比特币系统采用的公钥密码学方案和ECDSA签名算法介绍——第二部分:代码实现(C语言)...
查看>>
分享15款很实用的 Sass 和 Compass 工具
查看>>
AMD优势: 与众不同 选择丰富
查看>>
玩转高性能超猛防火墙nf-HiPAC
查看>>
简单按日期查询mysql某张表中的记录数
查看>>
自动化部署之jenkins发布PHP项目
查看>>
C/C++编程可用的Linux自带工具
查看>>
三种数据分析法提升电商运营
查看>>
哪个线程执行 CompletableFuture’s tasks 和 callbacks?
查看>>
《数据科学与大数据分析——数据的发现 分析 可视化与表示》一2.10 练习
查看>>
Oracle ASM 翻译系列第六弹:高级知识 如何映射asmlib管理的盘到它对应的设备名...
查看>>