
marcosd
(usa Slackware)
Enviado em 19/08/2019 - 08:40h
Tento configurar o BIND mesmo com a checagem dos arquivos de configuração no uso do comando nslooup apresenta-se o erro Server can't find xx xxx xxx xxx.in-addr.arpa: MXDOMAIN. Pesquisei aqui no vivaolinux e na internet e não encontrei uma resposta satisfatória.
Eis meu arquivo 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;
listen-on { 127.0.0.1; 192.168.253.0/25; };
allow-query { 127.0.0.1; };
recursion yes;
allow-recursion {127.0.0.1; 192.168.253.0/24; };
};
//
// a caching only nameserver config
//
zone "." IN {
type hint;
file "caching-example/named.root";
};
zone "localhost" IN {
type master;
file "caching-example/localhost.zone";
allow-update { none; };
};
zone "0.0.127.in-addr.arpa" IN {
type master;
file "caching-example/named.local";
allow-update { none; };
};
zone "verde.org" IN {
type master;
file "verde.org.zone";
allow-transfer { 192.168.253.10; }
};
zone "253.168.192.in-addr.arpa" IN {
type master;
file "verde.org.rev";
allow-transfer { 192.168.253.10; };
};
Também configurei o arquivo resolv. conf com as linhas
search verde.org
nameserver 192.168.253.10
entretanto ainda esta aparecendo o erro citado