回首頁
修改
Mail
FTP

中




2007年11月8日 星期四

[Dns] 關於Dns 的架設時機及Detail

要架設dns 可能要先衡量自己的需求
如果是公司 且要管理幾十部且要掛在公司網域底下
需時常修改server名字 變動性高就有架設的必要
如果只是個人要架設Mail Server,or Web Server
可直接與上層dns主機設定好Hostname 即可

基本dns server 可分為:
1.Master Server(主伺服器)
2.Slave Server(從伺服器)
3.Caching Server(緩衝伺服器)
這邊先討論比較簡單的 Caching Server
在安裝好bind9之後
sudo apt-get install bind9
啟動方式:
/etc/init.d/bind9 start,stop,restart
查看dns port 有無開啟
netstat -tunl 查看是否有53TUP/UDP 就表示ok了!
可在/etc/bind/裡找到相關設定檔
vim /etc/bind/named.conf.options 反註釋並編輯

named.conf.options:
[...]
forwarders {
1.2.3.4; <--這邊修改Dns
5.6.7.8;
};
[...]

就可以
/etc/init.d/bind9 restart
vim /etc/reslov.conf

nameserver 127.0.0.1 改為本機端
用dig 127.0.0.1 測試
Query time: 1 msec 第一次測為34秒 現在變成1秒 表示快取成功

0 回應: