Ping scan using cmd.exe
Posted on December 11, 2013
- and tagged as
- networking
This will perform a simple ping scan and only output replies.
for /L %i in (1,1,255) do @ping -n 1 x.x.x.%i | find "TTL="
Posted on December 11, 2013
This will perform a simple ping scan and only output replies.
for /L %i in (1,1,255) do @ping -n 1 x.x.x.%i | find "TTL="