2011-05-30 31 views
0

我对绑定/ DNS区域相对较新,但最近一直在阅读很多内容,并通过链接检查DNS。我跑了支票,可以看到通过:http://intodns.com/empireconqueror.com绑定区域良好做法

问题是似乎有很多问题仍然错误的区域,似乎没有关于在互联网上的这些错误的信息,所以我来这里寻求帮助。

我的选项如下:

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 { 
    //  199.115.230.239; 
    //}; 

    allow-query { 
      any; 
    }; 

    auth-nxdomain no; # conform to RFC1035 
    listen-on-v6 { any; }; 

    allow-recursion { localhost; }; 
}; 

而对于实际的区域选择:

include "/etc/bind/named.conf.options"; 

view "external-in" in { 
    match-clients { any; }; 
    allow-query { none; }; 
    allow-query-cache { none; }; 
    recursion no; 
    additional-from-auth yes; 
    additional-from-cache yes; 

    include "/etc/bind/named.conf.default-zones"; 
}; 

这里的主区域例如:

zone "empireconqueror.com" { 
    type master; 
    file "/ect/bind/db.empireconqueror.com"; 
}; 

数据库文件:

$TTL 86400 
$ORIGIN empireconqueror.com. 
@  IN  SOA  ns2.webserverhome.com. hostmaster.empireconqueror.com. (
          2002022401 
          28800 
          7200 
          864000 
          86400 
         ) 
; Root site 
    IN  A  199.115.230.240 

; Nameservers 
    IN  NS  ns1.webserverhome.com. 
    IN  NS  ns2.webserverhome.com. 

; Aliases 
www  IN  CNAME empireconqueror.com. 
fb  IN  CNAME empireconqueror.com. 
mail IN  CNAME ghs.google.com. 

; MX Records 
    IN  MX  1  aspmx.l.google.com. 
    IN  MX  5  alt1.aspmx.l.google.com. 
    IN  MX  5  alt2.aspmx.l.google.com. 
    IN  MX  10  aspmx2.googlemail.com. 
    IN  MX  10  aspmx3.googlemail.com. 

非常感谢你的帮忙, 肖恩

+0

问题是,ns1.webserverhome.com和n2.webserverhome.com似乎并不存在于区域文件或答案中。您需要先解决该问题。如果您还拥有webserverhome.com,则需要到注册服务商并添加DNS粘合记录或基于webserverhome.com构建NS)。没有它们,你不能引用其他区域的名称服务器。 – Doon 2011-05-30 13:54:15

+0

Hello Doon,我也拥有webserverhome.com域,并将ns1和ns2的A记录粘贴到相关IP的记录中。 – shauny 2011-05-30 15:04:05

+0

现在好了ns [12] .webserverhome.com解决。但在看empireconqueror.com时,它指向ns [12] .svnr.net。 – Doon 2011-05-30 23:20:24

回答

0

的问题是,这似乎ns1.webserverhome.com和n2.webserverhome.com不是在一个区域文件,或答案存在。您需要先解决该问题。如果您还拥有webserverhome.com,则需要到注册服务商并添加DNS粘合记录或基于webserverhome.com构建NS)。没有它们,你不能引用其他区域的名称服务器。

+0

谢谢Doon! :) – shauny 2011-06-01 08:43:09