IT Tips

Access

Blog History

Poor mans NMAP. Ping a subnet

Run the following snippet under a cmd.exe prompt on Windows. for /l %i in (1,1,254) do @ping -w 100 -n 1 192.168.99.%i | find /i "bytes=" About the command The @ symbol stops ping echoing to the terminal so you only get the output. If you want each command displayed...

read more