dota2服务器ping测试脚本分享
程序员文章站
2022-06-23 18:37:43
复制代码 代码如下:@echo offrem dota 2 ping tester edited by franzmeister (original code from p...
复制代码 代码如下:
@echo off
rem dota 2 ping tester edited by franzmeister (original code from planetside 2 ping tester by sh4rkill3rsg)
echo dota2服务器ping测试 franzmeister编辑
echo ====================================== && echo.中国国服
call:dota2 183.136.230.1
echo - (china) 电信: %ms%
call:dota2 61.182.135.1
echo - (china) 网通: %ms%
echo ====================================== && echo.东南亚, 新加坡
call:dota2 103.28.54.1
echo - (sea) 新加坡01: %ms%
call:dota2 103.10.124.1
echo - (sea) 新加坡02: %ms%
echo ====================================== && echo.欧洲
call:dota2 146.66.152.1
echo - (西欧) luxembourg: %ms%
call:dota2 146.66.155.1
echo - (东欧) vienna: %ms%
echo ====================================== && echo.美国
call:dota2 192.69.96.1
echo - (美西) washington: %ms%
call:dota2 208.78.164.1
echo - (美东) sterling: %ms%
echo ======================================
echo 澳大利亚
call:dota2 103.10.125.1
echo - (au) sydney: %ms%
echo ======================================
echo 俄罗斯
call:dota2 146.66.156.1
echo - (sw) stockholm: %ms%
echo ======================================
echo 南美
call:dota2 209.197.29.1
echo - (br): %ms%
call:dota2 209.197.25.1
echo - (br): %ms%
echo ======================================
echo 南非
call:dota2 197.80.200.1
echo - (sa) cape town %ms%
call:dota2 196.38.180.1
echo - (sa) cape town %ms%
echo ======================================
echo.
echo.
echo.
echo "服务器是从每个地区抽取出一个来进行测试,不能完全精准,但是可以大概知道链接速度如何 hoho"
echo.&pause&goto:eof
:dota2
set ms=error
for /f "tokens=4 delims==" %%i in ('ping.exe -n 1 %1 ^| find "ms"') do set ms=%%i
goto:eof
上一篇: GD2使用图像处理技术生成验证码
推荐阅读
-
Linux下一个智能重启Apache服务器的脚本分享
-
Shell脚本调快调慢系统时间(测试服务器时使用)
-
获取服务器信息的Shell脚本分享(ubuntu、centos测试通过)
-
Ubuntu下定时提交代码到SVN服务器的Shell脚本分享
-
Ubuntu服务器配置apache2.4的限速功能shell脚本分享
-
实现android自动化测试部署与运行Shell脚本分享
-
Windows Ping | Tracert 's Bat 脚本并行测试
-
linux系统使用python监控apache服务器进程脚本分享
-
分享个简易版Linux服务器初始化Shell脚本
-
svn服务器启动和svn服务器重启、停止等操作脚本分享