Olá pessoal, já estou a alguns dias quebrando a cabeça pra tentar fazer
com que o meu DNS Reverso funcione.

Dentro da minha rede ele resolve, mas fora está dando erro.

Abaixo segue os arquivos de conf.

named.conf
Código :
 
options {
        pid-file "/var/run/bind/run/named.pid";
        directory "/etc/bind";
        auth-nxdomain no;
        /*
         * 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
//
zone "." {
        type hint;
        file "db.root";
};
zone "0.0.127.in-addr.arpa" {
        type master;
        file "db.local";
};
zone "49.16.187.in-addr.arpa" {
        type master;
        file "pri.49.16.187.in-addr.arpa";
};
 
zone "hidraucartelecom.com.br" {
        type master;
        file "pri.hidraucartelecom.com.br";
};
 
//// MAKE MANUAL ENTRIES BELOW THIS LINE! ////

pri.49.16.187.in-aadr.arpa

Código :
 
$TTL        86400
@               IN      SOA     ns1.hidraucartelecom.com.br. hostmaster.hidraucartelecom.com.br. (
                                2010050301       ; serial, todays date + todays serial #
                                28800   ; Refresh
                                7200    ; Retry
                                604800  ; Expire
                                86400)  ; Minimum TTL
                        NS      ns1.hidraucartelecom.com.br.
                        NS      ns.hidraucartelecom.com.br.
58       PTR     mail.hidraucartelecom.com.br.
;;;; MAKE MANUAL ENTRIES BELOW THIS LINE! ;;;;

nslookup local

Código :
 
Server:         127.0.0.1
Address:        127.0.0.1#53
58.49.16.187.in-addr.arpa       name = mail.hidraucartelecom.com.br.

nslookup remoto

Código :
 
Server:         127.0.0.1
Address:        127.0.0.1#53
** server can't find 58.49.16.187.in-addr.arpa.: NXDOMAIN

Por conta desse motivo estou com problemas para envio de e-mail, porém estou recebendo e-mail normalmente.

Espero que possam me ajudar.

Obrigado