衡量网络好坏的指标
iperf 工具用来测试服务器带宽,它分为服务端与客户端。
1、安装
yum install iperf
apt-get install iperf
2、服务端运行
[root@localhost]# iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
3、客户端运行
[root@localhost]# iperf -c 192.168.6.218 -t 60 -d
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
------------------------------------------------------------
Client connecting to 45.32.64.187, TCP port 5001
TCP window size: 197 KByte (default)
------------------------------------------------------------
[ 4] local 192.168.6.217 port 50040 connected with 192.168.6.218 port 5001
[ 5] local 192.168.6.217 port 5001 connected with 192.168.6.218 port 34386
[ ID] Interval Transfer Bandwidth
[ 4] 0.0-60.0 sec 658 MBytes 92.0 Mbits/sec
[ 5] 0.0-60.4 sec 628 MBytes 87.4 Mbits/sec
从测试结果看,上行带宽为 92.0Mbits/sec, 下行带宽为 87.2Mbits/sec,略微低于服务器的 100Mbits/sec,处于可接受范围内。
iperf 工具更多用法:
http://t.zoukankan.com/taosiyu-p-13813218.html
https://www.jianshu.com/p/15f888309c72
直接用挂长ping方式进行测试,如下测试发生100个包。
[root@localhost]# ping -c 100 www.baidu.com
PING www.a.shifen.com (163.177.151.109): 56 data bytes 64 bytes
from 163.177.151.109: icmp_seq=0 ttl=55 time=26.639 ms 64 bytes
from 163.177.151.109: icmp_seq=1 ttl=55 time=24.329 ms 64 bytes
from 163.177.151.109: icmp_seq=2 ttl=55 time=24.794 ms 64 bytes
from 163.177.151.109: icmp_seq=3 ttl=55 time=22.709 ms 64 bytes
from 163.177.151.109: icmp_seq=4 ttl=55 time=39.994 ms 64 bytes
........................................
--- www.a.shifen.com ping statistics ---
100 packets transmitted, 100 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 21.505/26.743/50.786/6.613 ms
以上分别表示最小延迟、平均延迟、最大延迟、抖动(抖动就是延迟标准差)
延迟:26.743ms 抖动: 6.613ms 丢包率: 0.0% 0.0% packet loss
结论:这2台主机的网络状况还不错,没有丢包,延迟和抖动都不高。
END
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。
原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。
如有侵权,请联系 cloudcommunity@tencent.com 删除。