網站無法運作 DNS 問題

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

網站無法運作 DNS 問題

文章 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 就超快的了
schumi
Site Admin
文章: 696
註冊時間: 2004-04-15 14:30:34

DNS設定完測試查詢

文章 schumi »

用 nslookup

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

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

cat daemon.log | grep bind
回覆文章

回到「Linux」