Problem with BIND 9 and OpenBSD 3.4

Mark_Andrews at isc.org Mark_Andrews at isc.org
Mon Dec 8 22:39:22 UTC 2003


> I figured I'd finally get around to upgrading OpenBSD to 3.4 from 3.2 and 
> left BIND for last since I figured it would be trivial to get going.  I'd 
> never had any problems with BIND 4 or 8 in the past but I sure am having 
> trouble now.   Queries from my internal network (listed in the acl clients) 
> work fine.   Here's my named.conf with only the rndc.key changed (let me 
> know if you'd like to see my zone files, too):
> 
> acl clients {
>          192.168/16;
>          localhost;
>          ::1;
> };

> view "authoritative" {
>          match-clients { !clients; };

	This is "deny clients;" (explicit) "deny everyone;" (implicit). 

	You want

		match-clients { !client; any; };
	
	or given that the internal view is before this view and will
	collect all the clients you can remove the !clients.

		match-clients { any; };

	Mark
--
Mark Andrews, Internet Software Consortium
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742                 INTERNET: Mark.Andrews at isc.org


More information about the bind-users mailing list