network programming - How to ping multiple ip address -


i want ping 500 times 3 different ip address simultaneously. if these pings not same time easy question. may open 3 cmd , start ping ip in each one.... ummm thats work i'am finding smarter way? searched , found 1 way in linux, i'm working on win7.

if want compare delays afterwards this:

@echo off  setlocal  start "" "%comspec%" /c ping -n 500 192.168.1.23 ^>log1.txt start "" "%comspec%" /c ping -n 500 192.168.1.42 ^>log2.txt start "" "%comspec%" /c ping -n 500 192.168.1.113 ^>log3.txt 

the 3 log files contain output of each ping command.


Comments

Popular posts from this blog

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

html - How to style widget with post count different than without post count -

url rewriting - How to redirect a http POST with urlrewritefilter -