我有一个具有以下配置的 DNS 区域文件:
$TTL 86400
$ORIGIN example.com.
@ IN SOA ns1.example.com. dns.example.com. (
2014022604 ; Serial
1h ; Refresh
15m ; Retry
1w ; Expire
1h ; Negative Cache TTL
);
IN NS ns1.example.com.
IN NS ns6.gandi.net.
IN MX 10 mail
ns1 IN A 192.0.2.1
重新加载绑定后,以下命令返回:
> dig ns1.example.com
status: NOERROR, correct answer
> dig ns1.example.com @localhost
status: NOERROR, correct answer
> dig ns1.example.com @192.0.2.1
status: SERVFAIL, no answer
发生了什么事?配置混乱了吗?谢谢。
答案1
Bind 默认只监听 localhost 的 53 端口,输出正常。