bind - named Transfer failed -


dig @111.1111.111.111 domain.ru. axfr

; <<>> dig 9.8.2rc1-redhat-9.8.2-0.30.rc1.el6_6.2 <<>> @95.85.36.112 domain.ru. axfr ; (1 server found) ;; global options: +cmd ; transfer failed.

google searched all. can not understand what's wrong?

Му named.conf options

options {         listen-on port 53 {                 0.0.0.0;                 };         listen-on-v6 port 53 { ::1; };         directory       "/var/named";         dump-file       "/var/named/data/cache_dump.db";         statistics-file "/var/named/data/named_stats.txt";         memstatistics-file "/var/named/data/named_mem_stats.txt";         allow-query { any; };         recursion no;         dnssec-enable yes;         dnssec-validation yes;         dnssec-lookaside auto;         allow-transfer {111.1111.111.111;}; 

Не могу понять что произходит? Что я делаю не так ?

i can not understand occured? doing wrong?

allow-transfer directive allow group of hosts able transfer from server. in case, 111.1111.111.111 (which, way, not valid ip address because second quad has many 1s).

your dig command (dig @111.1111.111.111 domain.ru. axfr) asking transfer from server @ ip 111.1111.111.111 (once again not valid ip).

so, think need update allow-transfer directive include whatever computer running dig from.


Comments

Popular posts from this blog

tcpdump - How to check if server received packet (acknowledged) -