Oi pessoal,

Estou com um problema no meu dns que não sei como resolver, nos dns secundário e terciária fica mostrando uma msg de erro “Apr 4 17:23:47 meuhost named[3027]: client 200.xxx.xxx.xxx#53097: update forwarding denied” pelo que eu entendei ele não esta conseguindo fazer atualização das zonas. Alguém pode ajuda?, estou mandando o meu named.conf vejam ai embaixo.


Grato,

Veja como esta meu named.conf do primário

// Configuracoes das acls
acl "externa" { 200.xxx.xxx.xxx/25; 200.xxx.xxx.xxx/26; };
acl "interna" { 10.0.0.0/24; };
acl "slaver" { 200.xxx.xxx.xxx; 200.xxx.xxx.xxx; };

// Opcoes
options {
version "8.9";
directory "/var/named";
allow-recursion { "externa"; "interna"; };
//allow-transfer { "slaver"; };
allow-transfer { 200.xxx.xxx.xxx; 200.xxx.xxx.xxx; };
/*
* 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;
};

//
// a caching only nameserver config
//
controls {
inet 127.0.0.1 allow { localhost; } keys { rndckey; };
};
zone "." IN {
type hint;
file "named.ca";
};

zone "localhost" IN {
notify no;
type master;
file "localhost.zone";
allow-update { none; };
};

zone "0.0.127.in-addr.arpa" IN {
notify no;
type master;
file "named.local";
allow-update { none; };
};

// Entrada de arquivo de zona

zone "meudominio.com.br" IN {
notify no;
type master;
file "meudominio.com.br";
allow-update { slaver; };
};

// Entrada de zona reversa

zone "xxx.xxx.200.in-addr.arpa" IN {
notify no;
type master;
file "xxx.xxx.200.in-addr.arpa";
allow-transfer { 200.xxx.xxx.xxx; 200.xxx.xxx.xxx; };
allow-update { slaver; };
};

include "/etc/rndc.key";