reverse zone file in external view not transferring to slave server??

Mark Andrews marka at isc.org
Tue Dec 1 23:06:41 UTC 2009


In message <4B1576EB.2020604 at netscape.net>, Kaya Saman writes:
> Hi,
> 
> now that I have my zones and reverse files sorted out I have managed to 
> come across a problem which seems I had before even beginning any of this!
> 
> Basically for some reason my reverse zone for the external view isn't 
> transferring to my slave server.... this is quite strange as all the 
> other forward zones for the external view work fine??
> 
> Here is config:
> 
> 
> 
> named.conf file snippit for both servers:
> 
> view "external" {
>     match-clients { any; !192.168.0.0/22; !127.0.0.1; };

Acl's are "first match".

What you had devolves to

	match-clients { any; };

Try.
	match-clients { !192.168.0.0/22; !127.0.0.1; any; };

Adjust all the other acls

>     allow-recursion {
>                 127.0.0.1;
>                 };
> 
>         include "/etc/opt/csw/bind/named.conf.external";
> 
> };
> 
> 
> 
> named.conf.external file from master server:
> 
> 
> 
> zone "optiplex-networks.com" {
>    type master;
>    file "/var/named/optiplex-networks-external.db";
>    allow-query { any; !192.168.0.0/22; 192.168.1.101; };
> };
> 
> zone "2.178.81.in-addr.arpa" {
>    type master;
>    file "/var/named/81.178.2.rev";
>    allow-query { any; !192.168.0.0/22; 192.168.1.101; };
> };
> 
> 
> 
> named.conf.external file from slave server:
> 
> 
> 
> zone "optiplex-networks.com" {
>    type slave;
>    file "/var/named/optiplex-networks-external.db";
>    masters { 192.168.1.100; };
>    allow-notify { 192.168.1.100; };
>    allow-query { any; !192.168.0.0/22; 192.168.1.100; };
> };
> 
> zone "2.178.81.in-addr.arpa" {
>    type slave;
>    file "/var/named/81.178.2.rev";
>    masters { 192.168.1.100; };
>    allow-notify { 192.168.1.100; };
>    allow-query { any; !192.168.0.0/22; 192.168.1.100; };
> };
> 
> 
> 
> If any one can help me figure out why this is happening as the reverse 
> zone for my internal view works perfectly fine with similar config and 
> all the other forward zones for the external work perfectly fine??
> 
> Many thanks,
> 
> --Kaya
> _______________________________________________
> bind-users mailing list
> bind-users at lists.isc.org
> https://lists.isc.org/mailman/listinfo/bind-users
-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742                 INTERNET: marka at isc.org



More information about the bind-users mailing list