I have an PDNS recursor and authoritative servers setup as picture below suggests (DNS1). I have tried to setup a second DNS server in the same way the first is setup, but I am not getting any records on DNS2 from DNS1 (all I am getting is a "ignoring non-query opcode 4 from " in the DNS2 recursor log.
This is how my recursor.conf looks on DNS1
#recursor.conf
forward-zones-file=/etc/powerdns/forward.conf
forward-zones-recurse=.=<some ips>
local-port=53
local-address=<some ip>
This is how my pdns.conf looks on DNS1
#pdns.conf
default-soa-name=ns1.example.cz
allow-axfr-ips=<some ip>
daemon=yes
disable-axfr=no
local-address=127.0.0.1
local-port=53
master=yes
slave=no
launch=gmysql
gmysql-host=127.0.0.1
gmysql-user=<powerdns_user>
gmysql-dbname=<powerdns_db>
gmysql-password=<powerdns_pass>
gmysql-dnssec=no
#gentoo specific - no ipv6 support
query-local-address6=
My question is - is AXFR transfer even possible under these conditions? (eg. does recursor block the record transfer?)
edit: I keep confusing "recursor"(correct) and "precursor"(wrong). sorry!
edit2: Based on Habbie's suggestion, would this make more sense?