1 頁 (共 1 頁)

網站無法運作 DNS 問題

發表於 : 2008-07-20 02:27:50
yehlu
1.原主要DNS有錯誤的設定,起動後並沒作用
2.次要DNS重灌後變成無法接收主要DNS的記錄
3.修正主要DNS的錯誤(撰寫格式)
named.conf.local
zone "xx.com.tw" {
type master;
file "/etc/bind/xx.com.tw.hosts";
allow-transfer {
2.2.2.2;
};
};

4.slave DNS server 的設定不可將hosts檔案放在 /etc/bind ,zone不要下目錄指令即可 (named.conf.options預設放在/var/cache/bind)
named.conf.local
zone "xx.com.tw" {
type slave;
file "xx.com.tw.hosts";
masters{
1.1.1.1;
};
};

5.
2007082901 ; serial
86400 ; refresh (1 day)
1800 ; retry (30 minutes)
720 ; expire (12 minutes)
1200 ; minimum (20 minutes)
)
要改為
2007012501
10800
3600
432000
38400 )

6.分享器
Tomato
Version 1.20
Port Forwarding 若只設 tcp 反應會很慢 設為both 就超快的了

DNS設定完測試查詢

發表於 : 2008-07-21 10:16:00
schumi
用 nslookup

server 指向 bind 主機然後進行查詢

看 /var/log/daemon.log 裡面有關bind 的訊息

cat daemon.log | grep bind