BIND 연결 거부 문제

BIND 연결 거부 문제
host -l mycity.example.com
;; Connection to 10.0.1.12#53(10.0.1.12) for mycity.example.com failed: connection refused.

내 명명된.conf.options 파일은 다음과 같습니다.

acl "trusted" {
    10.0.1.0/16; 
    localhost;
    localnets;
};

options {
    directory "/var/cache/bind";

    recursion yes;
    allow-recursion { trusted; };
    allow-query { any; }
    allow-query-cache { trusted; }
    listen-on { 10.0.1.12; };
    allow-transfer {trusted; };

// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk.  See http://www.kb.cert.org/vuls/id/800113

// If your ISP provided one or more IP addresses for stable 
// nameservers, you probably want to use them as forwarders.  
// Uncomment the following block, and insert the addresses replacing 
// the all-0's placeholder.

forwarders {    
    10.0.1.1;
    8.8.8.8;
    8.8.4.4;
};

//========================================================================
// If BIND logs error messages about the root key being expired,
// you will need to update your keys.  See https://www.isc.org/bind-keys
//========================================================================
dnssec-validation no;


auth-nxdomain no;    # conform to RFC1035
listen-on-v6 { any; };
};

참고로 이 네임서버에는 내부 서버만 접근할 수 있습니다.

내가 도대체 ​​뭘 잘못하고있는 겁니까?? :(

Bind9 상태에 대한 추가 정보:

Apr 26 00:37:12 myserver1 named[15933]: client 10.0.1.12#38844
(myserver2.mycity.example.com): bad zone transfer request:
'myserver2.mycity.example.com/IN': non-authoritative zone (NOTAUTH)

답변1

대답은 간단합니다. -l 옵션과 함께 호스트 명령을 사용할 때 호스트 이름을 매개변수로 사용하지 않습니다. 정규화된 도메인 이름을 사용하면 모든 호스트가 반환됩니다. 다음과 같이 명령을 입력하면 모든 것이 예상대로 작동했습니다.

host -l mycity.example.com

server1.mycity.example.com
server2.mycity.example.com

관련 정보