ubuntu
中dns
泛解析的配置
首先準備一台
dns伺服器和你需要解析的網域名稱,在這裡我們
ubuntu
伺服器的
ip位址是
172.16.56.30
和需要解析的泛網域名稱為:
*.abc.com
首先安裝
bind9
這個軟體在伺服器上
root@mopaas:~# apt-get install bind9
然後就是最重要的配置了
配置檔案在
/etc/bind下在
named.conf.local
中新增需要
dns伺服器正方向解析的檔案
root@mopaas:/etc/bind# vi named.conf.local
//// do any local configuration here
//// consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
zone "56.16.172.in-addr.arpa" ;
zone "abc.com" ;
儲存退出
配置正向解析檔案
root@mopaas:/etc/bind# vi db.abc.com
;; bind data file for local loopback inte***ce
;$ttl604800
@insoaabc.com. root.abc.com. (
2; serial
604800; refresh
86400; retry
2419200; expire
604800); negative cache ttl ;
@innsabc.com.#
注意後面的.
@ina172.16.56.30 #此ip
就是你要解析的
ip位址
*.abc.com.ina172.16.56.30
配置反向解析檔案
root@mopaas:/etc/bind#vi db.172.16.56 ;
; bind reverse data file for local loopbackinte***ce
;$ttl604800
@insoaabc.com. root.abc.com. (
1; serial
604800; refresh
86400; retry
2419200; expire
604800 ); negative cache ttl ;
@innsabc.com.
30inptrabc.com.
儲存退出
然後重啟
bind9
服務root@mopaas:/etc/bind#/etc/init.d/bind9restart
然後在修改下本地的
dns伺服器配置
root@mopaas:/etc/bind# vi /etc/resolv.conf
nameserver 172.16.56.30
儲存退出
伺服器端配置完成
客戶端配置
只需要在
etc/resolv.conf
中配置下
dns伺服器的
ip即可
root@mopaas:# vi /etc/resolv.conf
nameserver 172.16.56.30
然後測試下是否配置成功
root@mopaas: # ping sadsad.abc.com
如果能ping
通則成功,否則檢視你的配置以及你的
dns伺服器是否使用了**,如果使用就去掉。
DNS輪詢 泛網域名稱解析
對於泛網域名稱來說,如果目標站點名未知,可以在解析記錄最後新增一條 匹配 步驟一 為站點www.tedu.cn實現dns輪詢 1 調整tedu.cn區域的配置 root svr5 vim var named tedu.cn.zone www in a 192.168.4.100 www in a 1...
DNS輪詢 泛網域名稱解析
要求 本實驗在單區域dns伺服器搭建完成的基礎上完成 為站點 www.tedu.cn 提供dns輪詢解析,三颱web伺服器節點的ip位址分別為 192.168.4.100 192.168.4.110 192.168.4.120 配置泛網域名稱解析實現以下解析記錄 任意名稱.tedu.cn 119.7...
Ubuntu 16 10 解決 DNS 解析失敗
這段時間在ubuntu16.10上使用chrome瀏覽網頁時經常會出現乙個奇怪的情況,就是突然會dns解析失敗,但是並不是所有網域名稱都解析失敗,僅僅只是部分網域名稱以及它的子網域名稱解析失敗,然後過個幾分鐘就會恢復正常,剛開始以為是網路問題,之後愈演愈烈,實在受不了,搜尋後發現可能是由於ubunt...