LoginSignup
1
0

More than 1 year has passed since last update.

【お手軽】回線スピードテスト

Posted at

テレワークが増えてきてビデオ会議をする頻度が増えてきました。映像が止まるたびに「自分の回線が原因じゃないか?」と不安になる人も多いでしょう。

そういうときは https://fast.com/ が便利です。すぐに自分の回線速度がわかります。

では、VPSやクラウドのコンピュートリソースなどの CLI 環境ではどうするか。

image.png

VPS などの CLI 環境でのスピードテスト

speedtest-cli を使います。 speedtest-cli は Debian であれば Package 登録されているので apt で簡単にインストールできます。

その特徴を生かして Docker で手軽にインストールして使います。

docker run -it --rm debian:11-slim bash -c 'apt-get update -y && apt-get install -y speedtest-cli && speedtest-cli'

ほかにも fastcli などのツールがあるようです。参考

結果

Retrieving speedtest.net configuration...
Testing from XXXXXXXXXXXXXX (xx.xx.xx.xxx)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by Verizon (Tokyo) [4.91 km]: 30.83 ms
Testing download speed................................................................................
Download: 113.95 Mbit/s
Testing upload speed......................................................................................................
Upload: 126.14 Mbit/s
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0