andrey.wischnesk
(usa CentOS)
Enviado em 06/09/2011 - 17:47h
Fala pessoal,
Estou precisando de uma ajudinha com o servidor DNS, minha distribuição é centOS.
Segui o tutorial
http://www.vivaolinux.com.br/artigo/Como-hospedar-um-site-dominio-de-graca-na-sua-casa, fiz os testes com
www.informatics.net.br e funcionou, tentei com outro subdomínio e também funcionou, mas quando tentei usar apenas informatics.net.br eu não consegui o acesso, tentei de várias formas e não resolve para fora nem na rede interna, como no www.
As minhas configurações são essas:
No Registro BR:
NS1: informatics.sytes.net
NS2: informatics2.sytes.net
No servidor:
/etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.0.5 informatics.net.br
/etc/resolv.conf
search informatics.net.br
nameserver 192.168.1.1 (IP do modem)
nameserver 192.168.0.5 (IP da máquina)
/etc/named.conf
#Root Nameservers
zone "." IN {
type hint;
file "/var/named/named.ca";
};
#Zona local
zone "informatics.net.br" IN {
type master;
check-names ignore;
file "/var/named/informatics.net.br";
};
#
# DNS Reverso para 127.0.0.x
#
zone "0.0.127.in-addr.arpa" {
type master;
file "/var/named/127.0.0.1";
};
# Nome da zona Reversa
zone "0.168.192.in-addr.arpa" IN {
type master;
check-names ignore;
file "/var/named/192.168.0.5";
};
/var/named/127.0.0.1
$TTL 1h ; TTL default para todos os registros que nao tiverem seu proprio TTL
@ IN SOA ns1.informatics.net.br. ns2.informatics.net.br. (
17052010 ; serial
1h ; refresh
15m ; retry
1w ; expire
1h) ; negative caching TTL
;
;
@ IN NS ns1.informatics.net.br.
@ IN PTR informatics.sytes.net.
/var/named/192.168.0.5
$TTL 1h ; TTL default para todos os registros que nao tiverem seu proprio TTL
@ IN SOA ns1.informatics.net.br. hostmaster.informatics.net.br. (
17052010 ; serial
1h ; refresh
15m ; retry
1w ; expire
1h) ; negative caching TTL
;
;
@ IN NS ns1.informatics.net.br.
5 IN PTR informatics.sytes.net.
/var/named/informatics.net.br
$TTL 86400
$ORIGIN informatics.net.br.
; Authoritative data for informatics.net.br
;
@ IN SOA informatics.net.br root.informatics.net.br. (
2011060901 ; Serial (yymmddxx)
10800 ; Refresh 3 hours
3600 ; Retry 1 hour
36000 ; Expire 10 hours
86400 ) ; Minimum 24 hours
IN NS ns1.informatics.net.br.
IN NS ns2.informatics.net.br.
;
;Recebimento de mensagens de mail
;
informatics.net.br. IN MX 0 mx
informatics.net.br. IN MX 10 mx
localhost IN A 127.0.0.1
IN HINFO INTEL/110 LINUX
ns1 IN CNAME informatics.sytes.net.
ns2 IN CNAME informatics2.sytes.net.
mx IN CNAME informatics.sytes.net.
smtp IN CNAME informatics.sytes.net.
pop IN CNAME informatics.sytes.net.
www IN CNAME informatics.sytes.net.
infoimob IN CNAME informatics.sytes.net.
ftp IN CNAME informatics.sytes.net.
[root@informatics named]# host informatics.net.br
informatics.net.br mail is handled by 10 mx.informatics.net.br.
informatics.net.br mail is handled by 0 mx.informatics.net.br.
[root@informatics named]# host
www.informatics.net.br
www.informatics.net.br is an alias for informatics.sytes.net.
informatics.sytes.net has address 187.59.69.248
[root@informatics named]# nslookup informatics.net.br
Server: 192.168.1.1
Address: 192.168.1.1#53
Non-authoritative answer:
*** Can't find informatics.net.br: No answer
[root@informatics named]# nslookup
www.informatics.net.br
Server: 192.168.1.1
Address: 192.168.1.1#53
Non-authoritative answer:
www.informatics.net.br canonical name = informatics.sytes.net.
Name: informatics.sytes.net
Address: 187.59.69.248
Agradeço desde já!