Host xyz.org não encontrado: 3 (NXDOMAIN)

1

Eu tenho alguns problemas com a configuração do meu DNS na VM ... Quando estou tentando executar o comando: host dns.xyz.org O erro é Host xyz.org não encontrado: 3 (NXDOMAIN)

named.conf parece (a parte das opções não incluídas):

view "internal"
{
match-clients { 172.16.0.0/24; 127/8; };
recursion yes;
    zone "." IN {
     type hint;
     file "/var/named/named.ca";

};         inclua "/etc/named.rfc1912.zones";

zone "xyz.org"{
     type master;
     file "internal/xyz.org";
     allow-transfer { 192.168.101.131;192.168.101.132; };
     allow-query { 172.16.0.0/24; };
};

zone "0.16.172.in-addr.arpa" IN {
     type master;
     file "internal/172.16.0.rev";
     allow-transfer { 192.168.101.131;192.168.101.132; };
     allow-query { 172.16.0.0/24; };
};

zone "101.168.192.in-addr.arpa" IN {
     type master;
     file "internal/192.168.101.rev";
     allow-transfer { 192.168.101.131;192.168.101.132; };
     allow-query { any; };
};
 };
 view "external"{

     match-clients { any; };
     recursion no;

     zone "xyz.org"{
         type master;
         file "external/xyz.org";
         allow-transfer { 192.168.101.131;192.168.101.132; };
         allow-query { any; };
     };

     zone "101.168.192.in-addr.arpa" IN {
         type master;
         file "external/192.168.101.rev";
         allow-transfer { 192.168.101.131;192.168.101.132; };
         allow-query { any; };
     };
};

resolv.conf

nameserver 192.168.101.131
search xyz.org

xyz.org

$TTL 1D

 @ IN SOA dns.gsr2011.org. webmaster.gsr2011.org.(
   20101018    ; serial
   43200        ; refresh = 12 hours
   1800        ; retry = 30 minutes
   1209600        ; expire = 2 weeks
   86400);         ; minimum = 1 day

   IN     TXT    "Test"
   IN    NS     dns.xyz.org.
   IN     NS     dns2.xyz.org.
   IN     MX 10    smtp.xyz.org.
   IN    MX 20    mail.xyz.org.

pop        IN    CNAME    mail
imap        IN    CNAME    mail

bd        IN    CNAME    master
ldap        IN    CNAME    voyager

dns            IN     A    172.16.0.1
voyager        IN    A    172.16.0.2
master        IN    A    172.16.0.3
dns2        IN    A    192.168.101.132
mail        IN    A    192.168.101.3
smtp        IN    A    192.168.101.4
web        IN    A    192.168.101.5

Você pode me indicar, por favor, talvez eu esteja perdendo alguma coisa? O que estou fazendo errado?

    
por Serhiy 19.11.2010 / 01:50

1 resposta

0

Ok, tudo é mais fácil do que parece: D!

Eu alterei 192.168.101.131 para 127.0.0.1 nesta parte:

zone "xyz.org"{
 type master;
 file "internal/xyz.org";
 allow-transfer { 192.168.101.131;192.168.101.132; };
 allow-query { 172.16.0.0/24; };
};

Eu também removi:

zone "." IN {
 type hint;
 file "/var/named/named.ca";

};
include "/etc/named.rfc1912.zones"; 

E é isso.

    
por 19.11.2010 / 12:25

Tags