Pessoal bom dia,
Estou tentando montar minha propria infra para hospedar meu site, então resolvi criar um servidor de DNS bind no Linux Ubuntu 11.10, mas ainda tenho alguams duvidas.
1 - Tento pingar o meu dns de outro equipamento na internt mas o mesmo não responde, fiz varios teste com nslookup, dig, ping na maquina em que esta instalado o DNS parece esta tudo OK, mas quando tento de outro equipamento nada responde.
Podem ajudar, desde ja agradeço
seguem meus arquivos de configuração.
(named.conf.local)
//
// Do any local configuration here
//
zone "fluidacrm.com.br" {
type master;
file "/etc/bind/db.meusite";
allow-transfer { 192.168.1.102; };
also-notify { 192.168.1.102; };
};
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/bind/db.1.168.192";
allow-transfer { 192.168.1.102; };
also-notify { 192.168.1.102; };
};
(db.meusite)
;
; BIND zone file for meusite.com.br
;
$TTL 3D
@ IN SOA ns.meusite.com.br. root.meusite.com.br. (
2008121701 ; serial
8H ; refresh
2H ; retry
4W ; expire
1D ) ; minimum
;
NS ns ; Inet address of name server
MX 10 mail ; Primary mail exchanger
ns A 192.168.1.101
mail A 192.168.1.101
server A 192.168.1.101
virtual A 192.168.1.103
router A 192.168.1.1 ; router ADSL
gateway CNAME router
gw CNAME router
proxy CNAME server
www CNAME server
(db.1.168.192)
;
; BIND zone file for 192.168.1.xxx
;
$TTL 3D
@ IN SOA ns.meusite.com.br. root.meusite.com.br. (
2008121701 ; serial
8H ; refresh
2H ; retry
4W ; expire
1D ) ; minimum
;
NS ns.meusite.com.br. ; Nameserver address
101 PTR server.meusite.com.br.
101 PTR ns.meusite.com.br.
101 PTR mail.meusite.com.br.
103 PTR virtual.meusite.com.br.
1 PTR router.meusite.com.br.
(named.conf.options)
options {
directory "/var/cache/bind";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See
http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
forwarders {
208.67.222.222;
208.67.220.220;
};
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};