BIND9安裝配置 手記

2021-04-12 23:12:00 字數 2332 閱讀 2685

zone "." ;

zone "localhost" ;

zone "example.com" ;

zone "0.0.127.in-addr.arpa";

zone "100.168.192.in-addr.arpa" ;

//這段檔案在/etc/rndc.conf 的尾部需拷貝才能使用 # tail +13 /etc/rndc.conf >>/etc/named.conf

# use with the following in named.conf, adjusting the allow list as needed:

key "rndc-key" ;

controls keys ;

};# end of named.conf

d.在/var/named 中建立相應的資料檔案 檔名由named.conf  中的file 引數制定

由named.conf可知有 named.ca,   named.local, example.com.zone,  127.0.0.zone , 192.168.100.zone

1.  named.ca

# dig -t ns . >/var/named/named.ca

2.  named.local  #vi /var/named/named.local   加入以下內容

$ttl 1d

@   in    soa    localhost.  root (

2007042801

1h15m

1w1d )

in   ns   @

in   a    127.0.0.1

3.  example.com.zone

$ttl 1d

@    in    soa     example.com.      root (

2007042801

1h15m

1w1d )

in   ns      ns.example.com.

in   mx  10  mail.example.com.

in   a       192.168.100.125

www           in   a       192.168.100.125

db            in   a       192.168.100.124

ns            in   a       192.168.100.126

mail          in   a       192.168.100.251

shop          in   a       192.168.100.125

*.shop        in   a       192.168.100.124

news          in   cname   www

3.   127.0.0.zone

$ttl 1d

@   in     soa   @     root.localhost. (

2007042801

1h15m

1w1d

)in ns              localhost.

1       in ptr             localhost.

4.   192.168.100.zone

$ttl 1d

@            in    soa           @            root.example.com.  (

2007042801

1h15m

1w1d  )

in     ns            example.com.

125         in     ptr           example.com.

125         in     ptr           www.example.com.

124         in     ptr           db.example.com.

126         in     ptr           ns.example.com.

251         in     ptr           mail.example.com.

補充說明

a. named伺服器的啟動問題

1. 啟動 #named   //以root使用者啟動

#named -u named //以named使用者啟動,必須有這個使用者而且,named.pid的屬主是 named

2. 更改配置後如何重啟

# rndc reload

3.測試配置是否成功,可用 host, dig ,nslookup 判斷 

bind9配置例項初探

1.關於zone檔案 通常情況下,乙個zone檔案描述該dns伺服器服務的乙個授權伺服器域。例如,我有乙個dns伺服器可以解析taobao.com的網域名稱和baidu.com的網域名稱,那麼我的dns伺服器配置檔案中就可以設定兩個zone標籤如 乙個用於描述taobao.com的網域名稱資訊,另乙...

Bind9泛網域名稱解析配置

我們在專案中,需要在ingress中動態部署服務,每個服務的主機名不同,如module1.ml.irmp.cc module2.ml.irmp.cc,這需要每部署乙個服務後,同時要配置主機ip解析,讓 ml.irmp.cc都解析到同乙個ingress的node的ip,這顯然不能接受。於是,我們就要借...

bind9的一些配置

etc bind named.conf.options options 監聽在主機的53埠上。any代表監聽所有的主機 directory var named 如果此檔案底下有規範到正反解的zone file 檔名時,該檔名預設應該放置在哪個目錄底下 下面三項是服務的相關統計資訊 dump file...