Em chào mọi người,
Em mới mua 1 domain và khởi tạo một nameserver ns1.domain.com trỏ về ip của máy chủ DNS đặt tại nhà với static ip XXX.XXXX.XXXX.XXXX
Em cài DNS server trên Centos 6.3 64bits.
Đã NAT port 53 tới IP Local DNS server.
Đây là file cấu hình và file Zone.
Em cấu hình cũng đã hơn 2 ngày rồi mà vẫn không phân giải được các record trong DNS server của em.DNS local thì phân giải tốt.
Không biết em có sai sót chổ nào không ?
NAMED.CONF
Code:
options {
listen-on port 53 { 127.0.0.1; 192.168.0.108; };
listen-on-v6
{ none; };
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
memstatistics-file "/var/named/data/named_mem_stats.txt";
allow-query
{
any;
};
allow-transfer { localhost; 192.168.0.0/24; };
recursion yes;
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
bindkeys-file "/etc/named.iscdlv.key";
};
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
view "internal" {
match-clients {
localhost;
192.168.0.0/24;
};
zone "." IN {
type hint;
file "named.ca";
};
zone "domain.com" IN {
type master;
file "domain.com.lan";
allow-update { none; };
};
zone "0.168.192.in-addr.arpa" IN {
type master;
file "192.db";
allow-update { none; };
};
//include "/etc/named.rfc1912.zones";
};
view "external" {
match-clients { any; };
allow-query { any; };
recursion no;
zone "domain.com" IN {
type master;
file "domain.com.wan";
allow-update { none; };
};
};
Zone domain.com.lan
Code:
$TTL 86400
@ IN SOA ns1.domain.com. root.domain.com. (
2011071001 ;Serial
3600 ;Refresh
1800 ;Retry
604800 ;Expire
86400 ;Minimum TTL
)
IN NS ns1.domain.com.
IN A 192.168.0.108
IN MX 10 ns1.domain.com.
ns1 IN A 192.168.0.108
www IN CNAME ns1
mail IN CNAME ns1
Zone domain.com.wan
Code:
$TTL 86400
@ IN SOA ns1.domain.com. root.domain.com. (
2011071001 ;Serial
3600 ;Refresh
1800 ;Retry
604800 ;Expire
86400 ;Minimum TTL
)
IN NS ns1.domain.com.
IN A XXX.XXX.XXX.XXX
IN MX 10 ns1.domain.com.
ns1 IN A XXX.XXX.XXX.XXX
www IN CNAME ns1
mail IN CNAME ns1
fpt IN A XXX.XXX.XXX.XXX