📜  测试互联网速度命令行 (1)

📅  最后修改于: 2023-12-03 15:26:59.403000             🧑  作者: Mango

测试互联网速度命令行介绍

在我们使用互联网的时候,经常需要测试当前网络的速度,以便确定是否达到我们需要的速度。本文介绍一些常用的命令行工具来测试互联网速度。

speedtest-cli

speedtest-cli 是一款用于测试互联网连接速度的命令行工具。它可以测量带宽、下载和上传速度、延迟和丢包率等指标。以下是使用 speedtest-cli 测试连接速度的步骤:

  1. 安装 speedtest-cli
$ pip install speedtest-cli
  1. 运行 speedtest-cli
$ speedtest-cli
  1. 测试结果

测试完成后,将会返回以下信息:

Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Example ISP (City, Country) [Distance from server] (Ping result)
Download: 100.00 Mbit/s
Upload: 10.00 Mbit/s
Ping: 10.00 ms
fast

fast 是另一种测试互联网连接速度的命令行工具。它可以测试下载和上传速度,并显示网络延迟和丢包率。以下是使用 fast 测试连接速度的步骤:

  1. 安装 fast
$ npm install --global fast-cli
  1. 运行 fast
$ fast
  1. 测试结果

测试完成后,将会返回以下信息:

Testing across the United Kingdom (it can take a few seconds)...
    London: 8.77Mbps download, 1.08Mbps upload, 0% packet loss
iperf

iperf 是一种广泛使用的网络测试工具,可用于测试互联网连接速度和带宽利用率。它有两种模式:server/server daemon 模式和 client 模式。以下是使用 iperf 在 client 模式下测试连接速度的步骤:

  1. 安装 iperf
$ sudo apt-get install iperf
  1. 运行 iperf
$ iperf -c example.com -p 5201

注意,你需要将 example.com 替换成你自己的服务器地址。

  1. 测试结果

测试完成后,将会返回以下信息:

[ ID] Interval           Transfer     Bandwidth
[  4]  0.0-10.0 sec   100 MBytes  83.9 Mbits/sec
总结

以上就是几种常用的命令行工具,让你测试互联网速度更方便。你可以根据自己的需求选择其中一种工具来测试你的网络连接速度。