剛剛加入 Debian 這個家庭
對於使用架設 DNS 還是有些問題
我是在 HiNet 申請一個網域 ABC.tw
並指定 DNS Server Name dns.ABC.tw 到我的固定 IP
以下是我 Bind9 各設定檔的值
請各位大大麻煩抽空賜教
/etc/bind/named.conf.options
增加以下數值
forwarders {
168.95.1.1;
168.95.192.1;
};
並將 auth-nxdomain no;
修改成 auth-nxdomain yes;
/etc/bind/named.conf.local
增加正反解的定義
zone "1.168.192.in-addr.arpa" in {
type master;
file "/etc/bind/db.192";
};
zone "ABC.tw" in {
type master;
file "/etc/bind/db.ABC";
};
並於 /etc/bind 目錄下新增 db.192 反解及 db.ABC 正解兩個檔案
/etc/bind/db.192
$TTL 86400
@ IN SOA ABC.tw. root.ABC.tw. (
20080405 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
86400 ) ; Negative Cache TTL
;
@ IN NS ABC.tw.
215 IN PTR ABC.tw.
215 IN PTR dns.ABC.tw.
215 IN PTR www.ABC.tw.
215 IN PTR ftp.ABC.tw.
/etc/bind/db.ABC
$TTL 86400
$ORIGIN ABC.tw.
@ IN SOA ABC.tw. root.ABC.tw. (
20080405 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
86400 ) ; Negative Cache TTL
;
@ IN NS ABC.tw.
@ IN A 192.168.1.215
dns IN A 192.168.1.215
www IN CNAME dns
ftp IN CNAME dns
我有將 /etc/network/interfaces 改成使用使用固定 IP
也將 /etc/resolv.conf 修改成以下的值
nameserver 168.95.1.1
nameserver 168.95.192.1
nameserver 192.168.1.215
search ABC.tw
domain ABC.tw
但是問題來了 /etc/resolv.conf 中的設定值
無論我怎麼修改,重新啟動後,自動都會被修改成以下的值
nameserver 127.0.0.1
請教各位大大
以上不知道小弟還疏漏了什麼地方
目前 DNS 是沒有正常運作
昨晚爬了一整晚的文
真的找不出原因
請各位大大幫忙看一下啦
謝謝喔 ~~~