Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jun 1998 11:00:12 -0700 (PDT)
From:      Dan Busarow <dan@dpcsys.com>
To:        Justin <root@warp-9.ml.org>
Cc:        questions@FreeBSD.ORG
Subject:   Re: help please???
Message-ID:  <Pine.BSF.3.96.980622104956.5088D-100000@java.dpcsys.com>
In-Reply-To: <199806201608.CAA01128@warp-9.ml.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 21 Jun 1998, Justin wrote:
> i'm TRYING to use bind8 and i can't seem to get tcp to listen on port 53 
> i did exactly what the book ses
> allow-transfer { any; }; listen-on port 53 { any; }; and everything else
                           ^^^^^^^^^^^^^^^^^

That's probably your problem.  Given the options you are setting you
don't need the options section at all :)  I know it's documented but
since it's not needed it may not work.

Here's ours

options {
	check-names master fail;
	check-names response ignore;
	check-names slave warn;
	directory "/usr/local/lib/named";
	allow-transfer {
		143.227.1.0/24;
		206.16.184.0/21;
		198.32.4.0/24;
		128.9.160.0/24;
	};             
};

And here's our netstat

tcp        0      0  127.0.0.1.53           *.*                    LISTEN
tcp        0      0  206.16.184.129.53      *.*                    LISTEN
udp        0      0  127.0.0.1.53           *.*
udp        0      0  206.16.184.129.53      *.* 

Dan
-- 
 Dan Busarow                                                  949 443 4172
 DPC Systems / Beach.Net                                    dan@dpcsys.com
 Dana Point, California  83 09 EF 59 E0 11 89 B4   8D 09 DB FD E1 DD 0C 82


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?Pine.BSF.3.96.980622104956.5088D-100000>