Is there a command line based way to send pings to each computer in a subnet? Like
for(int i = 1; i < 254; i++) ping(192.168.1.i);
t
The command line utility nmap can do this too:
nmap -sP 192.168.1.*