博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Ceph:网络性能基线测试
阅读量:5938 次
发布时间:2019-06-19

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

#一、带宽基线测试:

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

#二、测试方法:

启动网络性能基准测试,在第一个Ceph节点上执行iperf服务端选项,在第二个Ceph节点上执行客户端选项。

#三、操作方法:

在服务端节点和客户端节点分别找一个没被占用的相同端口,比如6901

1、服务端节点:

# yum -y install iperf# iperf -s -p 6901------------------------------------------------------------Server listening on TCP port 6901TCP window size: 85.3 KByte (default)------------------------------------------------------------[  4] local 172.16.2.175 port 6901 connected with 172.16.2.172 port 16650[ ID] Interval      Transfer    Bandwidth[  4]  0.0-10.0 sec  1.15 GBytes  982 Mbits/s

说明:

-p:表明开启的服务器连接端口
-s:iperf服务器模式

2、客户端节点:

# yum -y install iperf# iperf -c 172.16.2.175 -p 6901------------------------------------------------------------Client connecting to hz-01-ops-tc-ceph-01, TCP port 6901TCP window size: 93.5 KByte (default)------------------------------------------------------------[  3] local 172.16.2.172 port 16650 connected with 172.16.2.175 port 6901[ ID] Interval      Transfer    Bandwidth[  3]  0.0-10.0 sec  1.15 GBytes  984 Mbits/sec

说明:

-c:Iperf运行在服务器模式,并且用-c参数指定一个主机,那么Iperf将只接受指定主机的连接。此参数不能工作于UDP模式。
-p:表明连接的端口
如上图显示了,Ceph节点之间的网络带宽可以达到948Mbits/sec,对于千兆网卡来说,这是一个不错的结果。

转载于:https://blog.51cto.com/molewan/2070614

你可能感兴趣的文章
C语言运算符优先级相关问题
查看>>
MP4视频播放器代码
查看>>
Nginx 匹配 iphone Android 微信
查看>>
MFC_Combo_Box(组合框)控件的用法
查看>>
ldap
查看>>
我的友情链接
查看>>
CentOS 7更改网卡名称
查看>>
Yum软件仓库配置
查看>>
linux 压缩与解压总结
查看>>
mysql脚本1064 - You have an error in your SQL syntax; check the manual
查看>>
nessus 本地扫描(一)
查看>>
linux服务器磁盘陈列
查看>>
交换机配置模式
查看>>
python----tcp/ip http
查看>>
我的友情链接
查看>>
第一本docker书学习笔记1-3章
查看>>
一個典型僵尸網絡淺析
查看>>
vmware克隆Centos6.4虚拟机网卡无法启动问题
查看>>
dba学习
查看>>
asterisk配置
查看>>