From owner-freebsd-questions@FreeBSD.ORG Thu Nov 20 00:59:41 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98E6016A4CE for ; Thu, 20 Nov 2003 00:59:41 -0800 (PST) Received: from ptb-mailc05.plus.net (ptb-mailc05.plus.net [212.159.14.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D3C543FA3 for ; Thu, 20 Nov 2003 00:59:40 -0800 (PST) (envelope-from simong@desktop-guardian.com) Received: from [81.174.227.186] (helo=desktop-guardian.com) by ptb-mailc05.plus.net with smtp (Exim 4.12) id 1AMkf4-0000OO-00 for freebsd-questions@freebsd.org; Thu, 20 Nov 2003 08:59:38 +0000 Received: (qmail 8931 invoked by uid 1006); 20 Nov 2003 09:00:46 -0000 Received: from simong@desktop-guardian.com by dtg25 by uid 82 with qmail-scanner-1.16 (clamscan: 0.54. spamassassin: 2.55. Clear:. Processed in 9.276244 secs); 20 Nov 2003 09:00:46 -0000 Received: from unknown (HELO dtg17) (192.168.0.17) by 192.168.0.25 with SMTP; 20 Nov 2003 09:00:35 -0000 Message-ID: <004e01c3af44$5e9eacc0$1100a8c0@dtg17> From: "Simon Gray" To: References: <.128.250.18.41.1069309586.squirrel@k1x.org> Date: Thu, 20 Nov 2003 08:55:14 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: Frederick Bowes Subject: Re: Using freebsd to analyse ip usage? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Nov 2003 08:59:41 -0000 > Hello Everyone, > > At work there are some unused ip addresses but we dont know which ones > they are (because there are alot of computers) is there a port which could > be used to ping the subnet over a few days to work out which ip addresses > are actually coming online? Thanks You could use nmap cd /usr/ports/security/nmap && make install and then do something like nmap -sP 192.168.0.0/24 (that should tell you what ip's are up) Hope this helps, Simon