DNSサーバーバインド9に別の名前を追加する

DNSサーバーバインド9に別の名前を追加する

例から取得したDNS serverこのユーティリティを使用してメソッドを設定し、結果は次のとおりです。bind9settingsconfiguration

文書:/etc/bind/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    "testing.net" {
        type master;
        file "/etc/bind/db.forward.com";
};

zone    "12.168.192.in-addr.arpa" {
        type master;
        file "/etc/bind/db.reverse.com";
};

文書:/etc/bind/db.forward.com

;
; BIND data file for local loopback interface
;
$TTL    604800
@       IN      SOA     ns.testing.net. root.localhost. (
                              2         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      ns.testing.net.
ns      IN      A       192.168.12.1
server  IN      A       192.168.12.1
www     3600    IN      CNAME ns.testing.net.

文書:/etc/bind/db.reverse.com

;
; BIND reverse data file for local loopback interface
;
$TTL    604800
@       IN      SOA     ns.testing.net. root.localhost. (
                              1         ; Serial
                         604800         ; Refresh
                          86400         ; Retry
                        2419200         ; Expire
                         604800 )       ; Negative Cache TTL
;
@       IN      NS      ns.
1       IN      PTR     ns.testing.net.
1       IN      PTR     ns.testing.net.

私のシステムにはというサービスが実行されていますdemo.testing.net。また、このシステムにアクセスポイントを実装しており、ここに接続されているクライアントが名前にアクセスできますns.testing.net

bind9クライアントが名前付きシステムにアクセスできるように設定を設定する方法を教えてくださいdemo.testing.netspecifiedには何を含めるべきですかconfiguration files?とても感謝しています!

ベストアンサー1

Linux ホストの場合、/etc/resolv.conf に次のように入力する必要があります。

nameserver 192.168.12.1
search testing.net

次に、以下をテストする必要があります。

ping demo

/etc/bind/db.forward.comに次の行を入力することを忘れないでください。

demo  IN      A       192.168.12.<host ip>

そして/etc/bind/db.reverse.comから:

<host ip>     IN      PTR     demo.testing.net.

そしてBind9サーバーを再起動してください。

頑張ってください。

おすすめ記事