您好,登錄后才能下訂單哦!
這篇文章給大家介紹Ubuntu 中怎么配置DNS服務器,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
DNS(Domain Name Server,域名服務器)是進行域名(domain name)和與之相對應的IP地址 (IP address)轉換的服務器。 |
環境說明
服務器IP 10.68.19.61
操作系統 Ubuntu 13.04
DNS程序 Bind9
測試域名 mycloud.com
目標IP 10.68.19.134
安裝配置BIND9
apt-get install bind9
總共需要編輯2個文件,新增2個文件,如下: 修改/etc/bind/named.conf.options,去掉forwarders的注釋,其中的IP為網絡營運商提供的DNS服務器,這里我們使用google的DNS。
forwarders { 8.8.8.8; 8.8.4.4; };
修改/etc/bind/named.conf.local,在最后增加增加雙向解析代碼:
zone "mycloud.com" { type master; file "/etc/bind/db.mycloud.com"; }; zone "19.68.10.in-addr.arpa" { type master; file "/etc/bind/db.10.68.19"; };
注意:其中的19.68.10是目標IP10.68.19.134的前三段,表示一個IP地址段。
新增域名(mycloud.com)解析文件/etc/bind/db.mycloud.com,內容如下:
; ; BIND data file for dev sites ; $TTL 604800 @ IN SOA mycloud.com. root.mycloud.com. ( 1 ; Serial 604800 ; Refresh 86400 ; Retry 2419200 ; Expire 604800 ) ; Negative Cache TTL ; @ IN NS mycloud.com. @ IN A 10.68.19.134 *.mycloud.com. 14400 IN A 10.68.19.134
新增IP地址反向解析文件/etc/bind/db.10.68.19,內容如下:
; ; BIND reverse data file for dev domains ; $TTL 604800 @ IN SOA dev. root.dev. ( 1 ; Serial 604800 ; Refresh 86400 ; Retry 2419200 ; Expire 604800 ) ; Negative Cache TTL ; @ IN NS mycloud.com. 134 IN PTR mycloud.com.
重啟BIND9服務
service bind9 restart
修改本機配置
修改每一臺需要使用該DNS服務器的dns配置文件
sudo vi /etc/resolv.conf
修改nameserver為上邊配置好的DNS服務器IP
nameserver 10.68.19.61
此修改在每次重啟服務器后都會賠覆蓋,可以修改配置文件
sudo vi /etc/resolvconf/resolv.conf.d/base
在其中增加一條
nameserver 10.68.19.61
這樣重啟服務器后DNS配置依然有效,然后重啟networking服務,刷新DNS緩存。
service networking restart
測試效果
root@controller:/etc/bind# nslookup > baidu.com Server: 10.68.19.61 Address: 10.68.19.61#53 Non-authoritative answer: Name: baidu.com Address: 220.181.111.86 Name: baidu.com Address: 123.125.114.144 Name: baidu.com Address: 220.181.111.85 > mycloud.com Server: 10.68.19.61 Address: 10.68.19.61#53 Name: mycloud.com Address: 10.68.19.134 > uaa.mycloud.com Server: 10.68.19.61 Address: 10.68.19.61#53 Name: uaa.mycloud.com Address: 10.68.19.134
關于Ubuntu 中怎么配置DNS服務器就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。