无法安装名称服务器

我是所有这些DNS的东西总newbei。 我安装了BIND9 ISPConfig和nginx,我通过我的域名提供商面板(Natro)ns1.ostimdenevar.com为我的帐户定义了一些域名服务器,我的IP地址是37.148.208.22。 我的问题是: 我无法到达我的域名,但我的IP工作。 我检查了我的configurationhttp://www.intodns.com/ostimdenevar.com

它说:错误:一个或多个名称服务器没有响应:没有响应的是:37.148.208.22 37.148.208.32

我试图通过ISPConfig进行configuration。 但错误没有改变。 我试图手动configuration绑定,但没有改变。

我没有办法解决这个问题,甚至不知道在哪里看。 我应该从哪里开始?

这是我现在使用的绑定configuration文件:

文件:named.conf.local

zone "ostimdenevar.com" { type master; file "/etc/bind/db.ostimdenevar.com"; }; 

文件:db.ostimdenevar.com

 ; ; BIND data file for local loopback interface ; $TTL 604800 @ IN SOA ns1.ostimdenevar.com. root.ostimdenevar.com. ( 1 ; Serial 604800 ; Refresh 86400 ; Retry 2419200 ; Expire 604800 ) ; Negative Cache TTL ; @ IN NS ns.1.ostimdenevar.com. ns IN A 37.148.208.22 

文件: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 { 89.19.21.250; }; auth-nxdomain no; # conform to RFC1035 listen-on-v6 { any; }; }; 

首先看看这个,你的NSlogging有一个额外的。 (点)

ns.1.ostimdenevar.com应该是ns1.ostimdenevar.com

你的Alogging,应该是“ns1”,而不是“ns”,以配合NSlogging。

简而言之:

 $TTL 604800 @ IN SOA ns1.ostimdenevar.com. root.ostimdenevar.com. ( 1 ; Serial 604800 ; Refresh 86400 ; Retry 2419200 ; Expire 604800 ) ; Negative Cache TTL ; @ IN NS ns1.ostimdenevar.com. @ IN NS ns2.ostimdenevar.com. ns1 IN A 37.148.208.22 ns2 IN A 37.148.208.32 

除了区域文件中的错误之外,您还有一个ip:37.148.208.32,我在您的区域文件中没有看到,所以将其添加为ns2.ostimdenevar.com。

另外,如果这是@ home或@work,使用NAT。 不要忘记将端口53转发到任何关注您的dns的服务器上。