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.net? specified에는 무엇이 포함되어야 합니까 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 서버를 다시 시작하세요.

행운을 빌어요.

관련 정보