我是bind9的新手。我已经解决了很多问题,但现在我需要一些帮助。
我基本上只是想将我的域magestionfacile.fr和一些子域绑定到94.23.108.206。
这是我的配置文件:
named.conf.local
zone "magestionfacile.fr" {
type master;
allow-transfer {94.23.108.206;};
file "/etc/bind/db.magestionfacile.fr";
};
db.magestionfacile.fr
;
; BIND reverse data file for broadcast zone
;
; Time To Live
$TTL 604800
; General Informations
@ IN SOA magestionfacile.fr. root.magestionfacile.fr. (
10 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
; Domain TTL IN Type Value
IN NS ns354747.ovh.net.
IN NS sdns1.ovh.net.
IN NS sdns2.ovh.net.
@ IN A 94.23.108.206
vmx IN A 94.23.108.206
vimexcom IN CNAME vmx.magestionfacile.fr.
ownercheck IN TXT "some_number"
三个NS指令,我不确定它是否是正确的值。我的意思是,我甚至不确定是否只有一个DNS服务器就足够了......
有些测试:
odoo@yann-acer-portable:~$ nslookup magestionfacile.fr 8.8.8.8
Server: 8.8.8.8
Address: 8.8.8.8#53
Non-authoritative answer:
Name: magestionfacile.fr
Address: 94.23.108.206
odoo@yann-acer-portable:~$ nslookup magestionfacile.fr
Server: 127.0.1.1
Address: 127.0.1.1#53
** server can't find magestionfacile.fr: SERVFAIL
odoo@yann-acer-portable:~$ ping magestionfacile.fr
ping: unknown host magestionfacile.fr
odoo@yann-acer-portable:~$ ping vmx.magestionfacile.fr
ping: unknown host vmx.magestionfacile.fr
我知道通常,你需要两台DNS服务器,对吗?我可以用一个吗?谢谢您的帮助 !
答案 0 :(得分:0)
SERVFAIL意味着由于某种原因,名称服务器无法生成问题的有效答案。有关更多信息,您需要查看名称服务器日志文件(尽管如果您发布的是整个区域文件,问题可能是缺少$ ORIGIN)。