Pause a batch file until a host is reachable (using ping)?

10,065

Solution 1

from antoher thread on stackoverflow... credit to paxdiablo (find the original post here)

@setlocal enableextensions enabledelayedexpansion
@echo off
set ipaddr=%1
:loop
set state=down
for /f "tokens=5,7" %%a in ('ping -n 1 !ipaddr!') do (
    if "x%%a"=="xReceived" if "x%%b"=="x1," set state=up
)
echo.Link is !state!
ping -n 6 127.0.0.1 >nul: 2>nul:
goto :loop
endlocal

This will give you enough ammo to use and solve your problem

Solution 2

as already mentioned years ago, output of ping is language dependent, so it's not a good idea to rely on a string like Received. The preferred and most reliable method is searching for the string TTL=:

:loop
timeout 2
ping -n 1 %ipaddress% |find "TTL=" || goto :loop
echo Answer received.

|| works as "if previous command (find) wasn't successful, then"

(as for the timeout: never build a loop without some idle time to reduce CPU load)

Share:
10,065
Kane Charles
Author by

Kane Charles

Updated on June 05, 2022

Comments

  • Kane Charles
    Kane Charles almost 2 years

    I'm looking to add some functionality to a batch file that I've been writing; essentially what happens is I dial up a VPN connection using openvpn and then continue to mount a network drive as well as many other things, what I'm looking to do is:

    • Dial the connection via OpenVPN (which I have working fine)
    • Ping a host on the other side of the VPN and don't continue through the batch file until this host is reachable.

    Currently I've been using a sleep command of 20 seconds which works, but is not a very clean or intelligent way of going about it; I'd imagine I need some sort of loop to attempt to ping the host infinitely until it is reachable before continuing in the batch file. Any help would be greatly appreciated.

  • Foo Bar
    Foo Bar over 9 years
    This does not work for non-english Windows because ping is translated in other versions!
  • robe007
    robe007 over 5 years
    in Spanish it's Recibido :)
  • robe007
    robe007 over 5 years
    Nice answer. I love this one. Works perfectly !