DNS 서버 바인딩

DNS 서버 바인딩

enter code here기본 DNS 서버를 설정 중입니다. 역방향 조회는 제대로 작동하는 것 같은데 정방향 조회가 문제인 것 같습니다.

이것은 내 구성 파일입니다.

/etc/default/bind9:

RESOLVCONF=no
OPTIONS="-u bind -4"

/etc/bind/named.conf.options:

acl "trusted" { 192.168.1.0; localhost; };
options {
    directory "/var/cache/bind";
    recursion yes;
    allow-recursion { trusted; };
    listen-on { 192.168.1.204; 127.0.0.1; };
    allow-transfer { none; };
    forwarders { 
        192.168.1.254;
    };
// listen-on-v6 { any; };
};

/etc/bind/named.conf.local:

zone "example.home.local" {
    type master;
    file "etc/bind/zones/db.example.home.local";
    };

zone "1.168.192.in-addr.arpa" {
    type master;
    file "/etc/bind/zones/db.1.168.192";
    };

/etc/bind/zones/db.example.home.local:

;
; BIND data file for local loopback interface
;
$TTL    604800
@   IN  SOA ubuntuserver.example.home.local. root.example.home.local. (
                 14     ; Serial
             604800     ; Refresh
              86400     ; Retry
            2419200     ; Expire
             604800 )   ; Negative Cache TTL
;
;name servers - NS records
@   IN  NS  ubuntuserver.example.home.local.

;name servers - A records
ubuntuserver    IN  A   192.168.1.204

;subnet - A records
ubuntuweb   IN  A   192.168.1.208

/etc/bind/zones/db.1.168.192:

;
; BIND reverse data file for local loopback interface
;
$TTL    604800
@   IN  SOA example.home.local. root.example.home.local. (
                 11     ; Serial
             604800     ; Refresh
              86400     ; Retry
            2419200     ; Expire
             604800 )   ; Negative Cache TTL
; name servers
@   IN  NS  UbuntuServer.

; PTR records
204 IN  PTR ubuntuserver.example.home.local.
208 IN  PTR ubuntuweb.example.home.local.

앞서 언급했듯이 역방향 조회는 잘 작동합니다. 내가 달릴 때

sudo named-checkzone 1.168.192.in-addr.arpa /etc/bind/zones/db.1.168.192

결과는 양호하며 nslookup테스트 클라이언트에서 수행하면 IP 주소를 이름으로 성공적으로 확인합니다.

그러나 내가 달릴 때

sudo named-checkzone example.home.local /etc/bind/zones/db.example.home.local

그것은 다시 보고한다

loading from master file /etc/bind/zones/db.example.home.local failed: unknown class/type

답변1

데이터베이스 경로의 앞 부분이 /etc/bind/named.conf.local누락되어 오타가 있습니다 ./

file "etc/bind/zones/db.example.home.local";

관련 정보