码迷,mamicode.com
首页 > Windows程序 > 详细

Windows批处理:自动检查网络连通性

时间:2015-07-05 11:01:01      阅读:423      评论:0      收藏:0      [点我收藏+]

标签:

  检测网络连通性我用的是丛远到近的方法,即外网——网关——内网——本机,脚本的实现也是根据这个顺序用ping来检测,为提高检测速度,这里我只ping2次,各位可以根据自己的需要进行修改。

  使用方法大神们都会的... 复制代码,另存为.bat文件后执行。

 

 1 @echo off
 2 color 2F
 3 title 网络连通性检测
 4 echo.
 5 if exist %temp%\*.ping del %temp%\*.ping        ::删除缓存
 6 echo.
 7 ping -n 2 223.5.5.5>>%temp%\1.ping & ping -n 2 223.6.6.6>>%temp%\1.ping   ::ping阿里公共DNS地址
 8 findstr "TTL" %temp%\1.ping>nul
 9 if %errorlevel%==0 (echo     √ 外网正常) else (echo     × 外网不通)         ::根据命令返回值输出
10 echo.
11 ping -n 2 192.168.1.1>>%temp%\2.ping
12 findstr "TTL" %temp%\2.ping>nul
13 if %errorlevel%==0 (echo     √ 网关正常) else (echo     × 网关不通)
14 echo.
15 ping -n 2 192.168.1.2>>%temp%\3.ping
16 findstr "TTL" %temp%\3.ping>nul
17 if %errorlevel%==0 (echo     √ 内网正常) else (echo     × 内网不通)
18 echo.
19 ping -n 2 127.0.0.1>>%temp%\4.ping
20 findstr "TTL" %temp%\4.ping>nul
21 if %errorlevel%==0 (echo     √ TCP/IP协议正常) else (echo     × TCP/IP协议异常)
22 echo.
23 echo.
24 pause

 

效果如下:

技术分享

Windows批处理:自动检查网络连通性

标签:

原文地址:http://www.cnblogs.com/sjy000/p/4621772.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!