[FUG-BR] DNS reverso - ajuda para entender

Samuel Peres samuelperes em migtelecom.com.br
Quinta Junho 17 18:05:07 BRT 2010


On 06/17/2010 05:26 PM, christiano alves wrote:
> Sim Samuel, foi criado. Vou passar as confs:
>
>
>
> Primeiro - dns1 (master) - 10.1.1.77
>
>
>
> /etc/bind/named.conf.local
>
>
>
> zone "teste.com.br" IN {
>          type master;
>          file "/etc/bind/db.teste";
>          allow-transfer { 10.1.1.78; };
> };
>
> zone "1.1.10.in-addr.arpa" {
>          type master;
>          notify no;
>          file "/etc/bind/db.teste.rev";
>          allow-transfer { 10.1.1.78; };
> };
>
>
>
> /etc/bind/db.teste
>
>
>
> @ IN SOA dns1.teste.com.br. hostmaster.teste.com.br. (
>                  11      ;serial
>                  900     ;refresh
>                  600     ;retry
>                  86400   ;expire
>                  3600    ;minimum
> )
>                  NS      dns1.teste.com.br.
>                  NS      dns2.teste.com.br.
> IN              MX      10 correio.teste.com.br.
> teste.com.br.   A       10.1.1.77
> dns1            A       10.1.1.77
> dns2            A       10.1.1.78
> correio         A       10.1.1.77
>
>
>
> /etc/bind/db.teste.rev
>
>
>
> @ IN SOA dns1.teste.com.br. hostmaster.teste.com.br. (
>                  11      ;serial
>                  900     ;refresh
>                  600     ;retry
>                  86400   ;expire
>                  3600    ;minimum
> )
>                  NS      dns1.teste.com.br.
>                  NS      dns2.teste.com.br.
>                  77      PTR     dns1.teste.com.br.
>                  78      PTR     dns2.teste.com.br.
>
>
>
>
> Segundo - dns2 (slave) - 10.1.1.78
>
>
>
> /etc/bind/named.conf.local
>
>
>
> zone "teste.com.br" IN {
>          type slave;
>          file "/etc/bind/db.teste";
>          masters { 10.1.1.77; };
> };
>
> zone "1.1.10.in-addr.arpa" {
>          type slave;
>          file "/etc/bind/db.teste.rev";
>          masters { 10.1.1.77; };
> };
>
>
>
> No dns2 vejo pelo syslog o funcionamento correto do update de zona.
>
> So falta mesmo o reverso.
>
>
>
>
>
>
>
>    
>>>        
>> Olá Christiano,
>>
>> Você criou o arquivo de zona reversa com a estrutura
>> .in-addr.arpa?
>>
>>
>> Samuel Peres
>> -------------------------
>> Histórico: http://www.fug.com.br/historico/html/freebsd/
>> Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
>>      
>   		 	   		
> _________________________________________________________________
> ACESSE O MESSENGER DO SEU CELULAR AGORA MESMO. CLIQUE E VEJA AQUI UM PASSO A PASSO.
> http://celular.windowslive.com.br/messenger.asp?produto=Messenger&utm_source=Live_Hotmail&utm_medium=Tagline&utm_content=ACESSEOMES83&utm_campaign=MobileServices
> -------------------------
> Histórico: http://www.fug.com.br/historico/html/freebsd/
> Sair da lista: https://www.fug.com.br/mailman/listinfo/freebsd
>    
Boa noite Christiano,

                         Tenta configurar seu arquivo de reverso assim:

$ORIGIN .
$TTL 3600       ; 1 hour
1.1.10.in-addr.arpa IN SOA dns1.teste.com.br. hostmaster.teste.com.br. (
                                 2010061701 ; serial
                                 10800      ; refresh (3 hours)
                                 3600       ; retry (1 hour)
                                 604800     ; expire (1 week)
                                 3600       ; minimum (1 hour)
                                 )

                         NS dns1.teste.com.br.
                         NS dns2.teste.com.br.
$ORIGIN 1.1.10.in-addr.arpa.
77         PTR     dns1.teste.com.br.
78         PTR     dns2.teste.com.br.


Faz esse teste, talvez resolva seu problema,


Samuel Peres


Mais detalhes sobre a lista de discussão freebsd