--- Rob Wultsch <
wultsch@gmail.com> wrote:
> I have a box that I can not figure out the ip of. It is on 192.168.0.X
> or 192.168.1.X. Are there any tools that I can use to automate a ping
> or something across that range?
Nmap, with the -sP switch - nmap -sP 192.168.0.0/24
or a shell script
#!/bin/bash
for i in `seq 1 254`;
do
ping -c 1 192.168.0.$i
done
__________________________________
Do you Yahoo!?
Meet the all-new My Yahoo! - Try it today!
http://my.yahoo.com
---------------------------------------------------
PLUG-discuss mailing list -
PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss