Board logo

标题: [网络连接] 求助:Ping测试网络,记录Ping的日志 [打印本页]

作者: jett0510    时间: 2017-7-13 15:55     标题: 求助:Ping测试网络,记录Ping的日志

比如:我要长Ping 192.168.1.1 ,每隔1分钟Ping一次。
如果Ping的通,则记录日志到log.txt,需要记录Ping的时间和Ping的结果
如:
2017年07月13日 15点31分 来自 192.168.1.1 的回复: 字节=32 时间=1ms TTL=64
2017年07月13日 15点32分 来自 192.168.1.1 的回复: 字节=32 时间=1ms TTL=64


如果Ping不通,则记录到Timeout.txt文件中,需要记录Ping的时间和Ping的结果
如:
2017年07月13日 15点33分 192.168.1.1  "请求超时"
2017年07月13日 15点34分 192.168.1.1  "无法访问目标"

感谢各位大神指点,我试了几个bat,要么不显示时间,要么没法分两个文件保存。
作者: 路过    时间: 2017-7-13 23:35

本帖最后由 路过 于 2017-7-13 23:50 编辑

看样子你的操作系统是WIN7以上,能够显示中文结果。
  1. @echo off&chcp 936
  2. setlocal enabledelayedexpansion
  3. set "text1=无法访问目标"
  4. set "text2=请求超时"
  5. set ip=192.168.1.1
  6. :loop
  7. for /f "tokens=*" %%a in ('ping /n 1 %ip% 2^>nul') do (set q=%%a
  8. echo;%%a|find /i "%text1%" && echo;%date:~0,4%年%date:~5,2%月%date:~8,2%日 %time:~0,2%点%time:~3,2%分 %ip% "%text1%">>Timeout.txt
  9. echo;%%a|find /i "%text2%" && echo;%date:~0,4%年%date:~5,2%月%date:~8,2%日 %time:~0,2%点%time:~3,2%分 %ip% "%text2%">>Timeout.txt
  10. if "!q:ttl=!" neq "!q!" (echo;%date:~0,4%年%date:~5,2%月%date:~8,2%日 %time:~0,2%点%time:~3,2%分 %%a>>Log.txt)
  11. )
  12. ping/n 60 127.0>nul
  13. goto loop
复制代码

作者: jett0510    时间: 2017-7-14 08:34

回复 2# 路过


    非常感谢!!!




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2