Date: Tue, 26 Jun 2001 16:26:09 -0400 From: Daniel Frazier <dfrazier@magpage.com> To: Peter Brezny <peter@sysadmin-inc.com>, freebsd-questions@FreeBSD.ORG Subject: Re: dns tool for reverse lookup of network range needed Message-ID: <3B38EFE1.D7429B57@magpage.com> References: <NFBBKAEAALGGGFKINBLAIEENCAAA.peter@sysadmin-inc.com> <3B38EED3.F5E33696@magpage.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Daniel Frazier wrote: > > Peter Brezny wrote: > > > > Is there a too for freebsd that could help with checking the reverse lookup > > of an entire subdomain? > > > > I looked around in the man page for dig, and saw the -f [file] option, but > > i'd still have to setup a file with each ip in it... > > > > how about this... > > $ x=0; while [ $x -lt 255 ]; do echo $x; host 216.155.24.$x; x=`echo "$x + 1" | bc`; done > > this'll do a whole class c. modify the original value of x and the number > in the test command to narrow the range of ips checked. > eh, you can take out the "echo $x" to make the output a bit more readable. $ x=0; while [ $x -lt 255 ]; do host 216.155.24.$x; x=`echo "$x + 1" | bc`; done -- ---------------------------------------------------------------------- Daniel Frazier <dfrazier@magpage.com> Tel: 302-239-5900 Ext. 231 Systems Administrator Fax: 302-239-3909 MAGPAGE, We Power the Internet WWW: http://www.magpage.com/ "They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety." - Benjamin Franklin, Historical Review of Pennsylvania, 1759. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3B38EFE1.D7429B57>