About 50 results
Open links in new tab
  1. windows - How can I perform a ping every X minutes and check the ...

    Oct 11, 2011 · The timeout switch with Windows ping command simply tells the command window how long to wait before RECEIVING the reply, not how long to wait before sending the NEXT reply.

  2. Ping all addresses in network, windows - Stack Overflow

    Open the Command Prompt and type in the following: FOR /L %i IN (1,1,254) DO ping -n 1 192.168.10.%i | FIND /i "Reply">>c:\ipaddresses.txt Change 192.168.10 to match you own network. …

  3. networking - how does 'ping' command really work? - Super User

    How does the ping command really work? Specifically where does the ARP (Address Resolution Protocol) come into picture? I was asked this question in an interview and I was not able to come up …

  4. cmd - Ping with timestamp on Windows CLI - Stack Overflow

    @echo off ping -t localhost|find /v ""|cmd /q /v:on /c "for /l %%a in (0) do (set "data="&set /p "data="&if defined data echo(!time! !data!)" note: code to be used inside a batch file. To use from command line …

  5. `cmd.exe` command to ping a range of addresses - Super User

    Mar 15, 2014 · How can I ping a range of addresses starting with A and ending with B?

  6. cmd.exe - How can I do a ping every 500 ms? - Super User

    Sep 17, 2020 · By default the time delay between two pings is equal to 1 second. My need is to reduce the delay between two pings to 500 ms (0.5 seconds). Is there any way to do this?

  7. How to ping multiple servers and return IP address and Hostnames …

    Sep 13, 2012 · So I have to use batch only for this. Basically, the server HOSTNAMES are all listed in a txt file. I used the following code to ping all the servers and display their results in a txtfile. For /...

  8. ping - Pinging servers in Python - Stack Overflow

    The command is ping in both Windows and Unix-like systems. The option -n (Windows) or -c (Unix) controls the number of packets which in this example was set to 1.

  9. Is it possible to use a batch file to ping multiple IP addresses, each ...

    You can ping multiple IP addresses this way: for /L %z in (1,1,254) do @ping 192.168.%z -w 10 -n 1 | find "Reply" Change the IP address after the ping command to reflect your networks IP range. The …

  10. linux - Is it possible to ping an address:port? - Super User

    Jun 17, 2014 · I am not into networking, and I have the following question related to the Linux ping command. Can I only ping an address? For example: miner@raspberrypi ~ $ ping onofri.org PING …