使用iperf测试VPS网速

网速是一台 VPS 的关键指标之一,那么如何测试网速。下面介绍一款Linux 下专业测试网络速度的工具:iperf,适用于 Linux 机器对 Linux 机器。

  • 在vps上和本地Linux分别安装iperf

apt-get install iperf

  • 在vps上启动服务端

iperf -s

  • 在本地Linux中启动客户端

iperf -c [vps的ip]

  • 客户端输出如下
1
2
3
4
5
6
7
------------------------------------------------------------
Client connecting to [vps的ip], TCP port 5001
TCP window size: 23.5 KByte (default)
------------------------------------------------------------
[  3] local [linux的ip] port 49943 connected with [vps的ip] port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0-10.1 sec  18.0 MBytes  14.9 Mbits/sec
  • 服务端输出如下
1
2
3
4
5
6
7
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size: 85.3 KByte (default)
------------------------------------------------------------
[  4] local [vps的ip] port 5001 connected with [linux的ip] port 55224
[ ID] Interval       Transfer     Bandwidth
[  4]  0.0-10.5 sec  18.0 MBytes  14.3 Mbits/sec
  • 退出测速

在服务端ctrl + c

转载使用注明出处。原文链接 https://heimo-he.github.io/linux/2018/11/23/vps-iperf/