
March 13th, 2010, 02:45 AM
|
|
Registered User
|
|
Join Date: Mar 2010
Posts: 1
Time spent in forums: 5 m 45 sec
Reputation Power: 0
|
|
|
type the following in CMD window:
for /L %z in (1,1,254) do @ping 10.200.0.%z -w 10 -n 1
explanation as follows:
(1,1,254) = starting point (last value in IP address represented by '%z'), ping increment (if you set to 10, then it will ping .10, .20, .30, etc), and 254 is ending point
the '-n1' at the end is how many times to ping an IP
|