環境
Ubuntu 12.04 LTS
Bind 9.8
Zone檔擷取
@ IN NS dns.xxx.
@ IN MX 1 spam.xxx.
dns A 192.168.1.1
spam A 192.168.1.2
bulletin A 192.168.1.3
abc CNAME bulletin.xxx.
問題描述
由於剛從Windows DNS 跳槽到Bind , 還請各位不吝賜教 謝謝
請留意檔案「 named.conf 」的zone範圍設定是否有包括「 spam.xxx 」,謝謝。
你好, 附上我的named.conf
named.conf
<pre class="c" name="code">include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.local";
include "/etc/bind/named.conf.default-zones
named.conf.options
<pre class="c" name="code">
options {
directory "/var/cache/bind";
allow-query-cache { none; };
allow-query { any; };
recursion no;
auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
// version disable
version"ABC";
};
named.conf
<pre class="c" name="code">zone "xxx" {
type master;
file "/etc/bind/zones/xxx.db";
};
最後一個named.conf 應為 named.conf.local 就是我Zone檔所在位置,
不知道你說的 zone範圍設定是否有包括「 spam.xxx 」 是什麼意思?
哈~ 我犯傻了,剛發現是我check指令的問題, #named-checkzone domain /etc/bind/zones/xxx.db , domain = xxx , 我沒有換成xxx , 謝謝幫忙
我的 MX 寫法給你參考:
<pre class="c" name="code">
;
$ORIGIN xyz.org.
;
xyz.org. IN A 192.168.169.1
IN MX 0 mail.xyz.org.
A 192.168.169.1
;