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

トップ ページ
添付ファイル:
Eメールのメッセージ
+ (text/plain)
このメッセージを削除
このメッセージに返信
著者: Anthony Boynes
日付:  
To: plug-discuss
題目: 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