我正在运行 14.04 LTS
我的主 DNS(192.168.0.10)能够解析自身和辅助 DNS(192.168.0.11)以及区域。但在辅助 DNS 上,nslookup 到 dns1 后无法正确解析,并出现以下回复。
;;Got SERVFAIL reply from 192.168.0.11, trying next server
Server: 192.168.0.10
Address: 192.168.0.10#53
**server can't find dns1: SERVFAIL
以下是我的辅助服务器上的配置:
在 /etc/hosts 文件下:
127.0.0.1 dns2
在 /etc/network/interfaces 文件下:
iface eth0 inet static
...
...
dns-nameservers 192.168.0.11 192.168.0.10
dns-search test.co.uk
在 /etc/hostname 文件下:
dns2
在 /etc/resolv.conf 下:
nameserver 192.168.0.11
nameserver 192.168.0.10
search test.co.uk
在 /etc/bind/named.com.local 下
zone "0.168.192.in-addr.arpa" {
type slave;
notify no;
file "0.168.192.in-addr.arpa";
masters {192.168.0.10; };
};