Re: Lost a box, how can I find it's ip

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Anthony Boynes
Date:  
To: plug-discuss
Subject: Re: Lost a box, how can I find it's ip

--- Rob Wultsch <> 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 -
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss