我已经在 debian squeeze 上安装了 bind9。这是我的named.conf.local
文件:
options {
directory "/var/cache/bind";
auth-nxdomain no;
listen-on { any; };
listen-on-v6 { any; };
};
zone "devhub.pl" IN {
type master;
file "db.devhub";
};
这是我的区域文件:
$TTL 3h
devhub.pl. IN SOA ns1.devhub.pl. root.devhub.pl. (
2012051201 ; serial
3h ; refresh
1h ; retry
1w ; expire
1h ) ; negative caching
IN NS ns1.devhub.pl.
IN NS ns2.devhub.pl.
ns1.devhub.pl. IN A 193.93.207.231
ns2.devhub.pl. IN A 193.93.207.231
www IN CNAME devhub.pl.
named-checkconf
并named-checkzone
报告一切正常,但是当我尝试将外部 DNS 设置为
ns1.devhub.pl -> 193.93.207.231
ns2.devhub.pl -> 193.93.207.231
我的提供商的管理面板显示如下错误:
dns1: ns1.devhub.pl server isn't configured for devhub.pl domain. Please contact admin...
dns2: ns2.devhub.pl server isn't configured for devhub.pl domain. Please contact admin...
我缺少什么?有什么建议么?
和日志:
starting BIND 9.7.3 -u bind -t /var/jail/bind
built with '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--sysconfdir=/etc/bind' '--localstatedir=/var' '--enable-threads' '--enable-largefile' '--with-libtool' '--enable-shared' '--enable-static' '--with-openssl=/usr' '--with-gssapi=/usr' '--with-gnu-ld' '--with-dlz-postgres=no' '--with-dlz-mysql=no' '--with-dlz-bdb=yes' '--with-dlz-filesystem=yes' '--with-dlz-ldap=yes' '--with-dlz-stub=yes' '--with-geoip=/usr' '--enable-ipv6' 'CFLAGS=-fno-strict-aliasing -DDIG_SIGCHASE -O2' 'LDFLAGS=' 'CPPFLAGS='
adjusted limit on open files from 1024 to 1048576
found 2 CPUs, using 2 worker threads
using up to 4096 sockets
loading configuration from '/etc/bind/named.conf'
reading built-in trusted keys from file '/etc/bind/bind.keys'
using default UDP/IPv4 port range: [1024, 65535]
using default UDP/IPv6 port range: [1024, 65535]
listening on IPv6 interfaces, port 53
binding TCP socket: address in use
listening on IPv4 interface lo, 127.0.0.1#53
binding TCP socket: address in use
listening on IPv4 interface eth0, 172.16.7.1#53
binding TCP socket: address in use
listening on IPv4 interface eth1, 193.93.207.231#53
binding TCP socket: address in use
generating session key for dynamic DNS
set up managed keys zone for view _default, file 'managed-keys.bind'
automatic empty zone: 254.169.IN-ADDR.ARPA
automatic empty zone: 2.0.192.IN-ADDR.ARPA
automatic empty zone: 100.51.198.IN-ADDR.ARPA
automatic empty zone: 113.0.203.IN-ADDR.ARPA
automatic empty zone: 255.255.255.255.IN-ADDR.ARPA
automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
automatic empty zone: D.F.IP6.ARPA
automatic empty zone: 8.E.F.IP6.ARPA
automatic empty zone: 9.E.F.IP6.ARPA
automatic empty zone: A.E.F.IP6.ARPA
automatic empty zone: B.E.F.IP6.ARPA
automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA
couldn't add command channel 127.0.0.1#953: address in use
couldn't add command channel ::1#953: address in use
zone 0.in-addr.arpa/IN: loaded serial 1
zone 127.in-addr.arpa/IN: loaded serial 1
zone 255.in-addr.arpa/IN: loaded serial 1
zone localhost/IN: loaded serial 2
zone devhub.pl/IN: loaded serial 2012051201
managed-keys-zone ./IN: loading from master file managed-keys.bind failed: file not found
managed-keys-zone ./IN: loaded serial 0
zone devhub.pl/IN: sending notifies (serial 2012051201)
running
这个怎么样address in use
——有问题吗?
顺便说一句,绑定已 chroot 并正在运行/etc/init.d/bind9 start
,然后/etc/init.d/bind9 status
说could not access PID file for bind9 ... failed!
您是否检查过 /var/log/syslog 中的日志?
另外,看看http://wiki.debian.org/Bind9#Configuration。
最后,我在 /etc/named.conf 中有一个你没有的选项部分,如下所示:(当然,我运行的是 CentOS,而不是 Debian,但 Bind9 是 Bind9。你可能需要告诉它区域文件的实际路径(在选项中设置目录),如果它们在不同的目录中)。
然后,当然,我的区域文件(我有很多我为其提供 NS 的域)在 /var/named/ 中。
指定文件的完整路径(例如:/etc/bind/master/db.devhub 是我放置文件的地方)