Tente criar como abaixo o named.conf
---------------------------------------

options {
        directory "/var/named";
        /*
         * If there is a firewall between you and nameservers you want
         * to talk to, you might need to uncomment the query-source
         * directive below.  Previous versions of BIND always asked
         * questions using port 53, but BIND 8.1 uses an unprivileged
         * port by default.
         */
        //query-source address * port 53;
        allow-transfer { none; };
};

logging {
   category lame-servers { null; };
   category default { default_syslog; };
};

acl localhosts { 10/8; 172.16/15; 127.0.0.1; } ;

//
// internal (private) zones
//
view "internal" {
   match-clients { localhosts; };
   recursion yes;                       /* this is the default */

// // local zones
// zone "." IN {
type hint;
file "internal/named.ca";
};


   zone "localhost" IN {
            type master;
            file "internal/localhost.zone";
   };

   zone "dominio.com.br" IN {
            type master;
            file "internal/dominio.com.br.zone";
            allow-update { localhost; 10.0.0.1; };
   };

   zone "0.0.127.in-addr.arpa" IN {
            type master;
            file "internal/named.local";
   };

   zone "0.0.10.in-addr.arpa" IN {
            type master;
            file "internal/10.0.0.rev.zone";
            allow-update { localhost; 10.0.0.1; };
   };

}; // view internal

//
// external (public) zones
//
view "external" {
   match-clients { any; };
   recursion no;

// // local zones
//


   zone "dominio.com.br" IN {
            type master;
            file "external/dominio.com.br.zone";
            allow-transfer { x.x.x.x; };
            notify yes;
   };

};  // view external

// end of named.conf

--------------------------------------------------

Isso deve resolver seu problema.

---------------------------------------------------------------------------
Esta lista � patrocinada pela Conectiva S.A. Visite http://www.conectiva.com.br

Arquivo: http://bazar2.conectiva.com.br/mailman/listinfo/linux-br
Regras de utiliza��o da lista: http://linux-br.conectiva.com.br
FAQ: http://www.zago.eti.br/menu.html

Responder a