SpeedTest 测试带宽

参考:

https://linux.cn/article-5626-1.html

官网:

https://www.speedtest.net/apps/cli

介绍:

image-20230714111241184

1.安装

centos安装 ( 通用安装 适用于ubuntu / centos)

1
2
3
4
5
# centos安装speedtest-cli
yum install -y python3-pip
pip3 install speedtest-cli
# 直接YUM安装
yum install -y speedtest-cli

ubuntu安装

1
2
# ubuntu安装
apt install -y speedtest-cli

2.测试

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# 查看外部节点 (会列出隔此IP最近的节点)
# 列出speedtest.net所有的服务器距离你的物理距离,单位是千米(km)
speedtest --list

Retrieving speedtest.net configuration...
24377) Homeplus (Tainan, Taiwan) [926.42 km]
8968) Homeplus (Kaohsiung, Taiwan) [964.05 km]
11713) Taiwan Mobile (Kaohsiung, Taiwan) [964.05 km]
18458) Chunghwa Mobile (Kaohsiung, Taiwan) [964.05 km]
14696) 鳳信 (高雄, Taiwan) [964.32 km]
13538) CSL (Hong Kong, Hong Kong) [1221.64 km]
37267) Hutchison HK (Tsing Yi, Hong Kong) [1225.03 km]
35791) SmarTone (Hong Kong, Hong Kong) [1227.95 km]
48446) GSL Networks (Hong Kong, Hong Kong) [1230.25 km]
14791) MTel (Macau, Macau) [1270.55 km]

# 测试网速此处我们选择香港(ID 35791)
speedtest --server 35791

# 也可以直接运行 speedtest / speedtest-cli 命令不加参数即可测试
speedtest-cli
speedtest --share (加入参数--share可以生成图片)
speedtest (可以看到上载:317.22 Mbit/s 下载: 68.80 Mbit/s)

Retrieving speedtest.net configuration...
Testing from China Telecom (本机流量走的外网IP)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by China Telecom JiangSu 5G (Suzhou) [607.77 km]: 24.444 ms
Testing download speed................................................................................
Download: 68.80 Mbit/s
Testing upload speed......................................................................................................
Upload: 317.22 Mbit/s
Share results: http://www.speedtest.net/result/14989795231.png (--share生成测试图片)

移动云50M带宽 测试返回
上载:44.23 Mbit/s
下载:57.92 Mbit/s

Retrieving speedtest.net configuration...
Testing from China Mobile (本机流量走的外网IP)...
Retrieving speedtest.net server list...
Selecting best server based on ping...
Hosted by China Telecom JiangSu 5G (Zhenjiang) [212.86 km]: 32.701 ms
Testing download speed................................................................................
Download: 57.92 Mbit/s
Testing upload speed......................................................................................................
Upload: 44.23 Mbit/s

image-20230714184330911