适用于 Windows 的可编写脚本的互联网“速度”测试(ping 和带宽)

适用于 Windows 的可编写脚本的互联网“速度”测试(ping 和带宽)

我熟悉使用 speedtest.net 等网站进行手动互联网速度测试。我想在 Windows 计算机上设置一些东西,使其每小时自动运行一次速度测试,每周 7 天、每天 24 小时(例如)。

关于执行此操作的工具/方法有什么建议吗?

编辑:具体来说,我希望获得 speedtest.net 提供的相同测量值(ping 测试和带宽测试),但以自动化的方式在后台运行。

答案1

使用 speedtest.net 测试互联网带宽的命令行界面。

https://github.com/sivel/speedtest-cli

速度测试-cli适用于 Python 2.4-3.4

wget -O speedtest-cli https://raw.github.com/sivel/speedtest-cli/master/speedtest_cli.py

chmod +x speedtest-cli


$ speedtest-cli -h<br>
usage: speedtest-cli [-h] [--bytes] [--share] [--simple] [--list]<br>
                     [--server SERVER] [--mini MINI] [--source SOURCE]<br>
                     [--version]<br>

可选参数:

  -h, --help       show this help message and exit<br>
  --bytes          Display values in bytes instead of bits. Does not affect<br>
                   the image generated by --share<br>
  --share          Generate and provide a URL to the speedtest.net share<br>
                   results image<br>
  --simple         Suppress verbose output, only show basic information<br>
  --list           Display a list of speedtest.net servers sorted by distance<br>
  --server SERVER  Specify a server ID to test against<br>
  --mini MINI      URL of the Speedtest Mini server<br>
  --source SOURCE  Source IP address to bind to<br>
  --version        Show the version number and exit<br>

相关内容