网速测试

网速测试

只谈情不闲聊 提交于 2019-12-05 23:13:56
Linux环境系统网速测试: // 准备 # yum -y install git # git clone https://github.com/sivel/speedtest-cli.git // 测试网速 [root@localhost ~]# ./speedtest-cli/speedtest.py Retrieving speedtest.net configuration... Testing from China Mobile Guangdong (39.155.134.147)... Retrieving speedtest.net server list... Selecting best server based on ping... Hosted by ChinaUnicom-5G (TianJin) [111.65 km]: 9.634 ms Testing download speed................................................................................ Download: 9.72 Mbit/s Testing upload speed...................................................................

speedtest-cli命令行下测试服务器外网速度

偶尔善良 提交于 2019-12-04 13:31:26
电脑测试网速这个功能估计大家都用过,但是服务器需要测试外网的速度相比大家做法各有不同,有的人使用自己的服务器来测试上下行速度,有些通过下载某个网站的资源来测试下行速度,鉴于这些节点比较少,而且测试麻烦,我向大家推荐 speedtest-cli. speedtest是一个使用python编写的命令行脚本,通过调用speedtest.net测试上下行的接口来完成速度测试.最后我会测试运维生存时间所在服务器的外网速度。 1. 安装speedtest-cli speedtest-cli需要在python 2.4-3.4的环境下,安装方法都很简单,自己选择以下最适合你的一种. 1.1 pip方式 # pip install speedtest-cli 1.2 easy_install方式 # easy_install speedtest-cli 1.3 github+pip方式 # pip install git+https://github.com/sivel/speedtest-cli.git 或者 # git clone https://github.com/sivel/speedtest-cli.git # python speedtest-cli/setup.py install 1.4 下载脚本方式 # wget -O speedtest-cli https://raw