Replies: 1 comment 1 reply
-
No, something else is happening. You might want to try using |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone!
I am running 2 DNS servers that are separated by location. The obvious way was to set them up as master/slave with AXFR between them. Both are running powerdns 4.9.2 on Ubuntu 22.04. It goes something like this:
What happens is if I do a
dig ourdomain.com @ns.something.com
it only says;; communications error to IP#53: timed out
, which is not ideal. When I do the same with ns2 it replies with the correct information.What's more so interesting is if I query the SOA record by hand
dig SOA ourdomain.com @ns.something.com
I do get the correct SOA back, just not any of the other records. ns2 replies to all queries perfectly.Now you'd wonder if there are issues with AXFR, nope, AXFR works perfectly fine. If I update the zones on ns.something.com it send it over to ns2.something.com.
In trying to figure out what is happening I have set loglevel=9 on ns.something.com, but there are 0, none, null, logs about the requests, it only seems to log the successful ones even with max logging, which sucks. I have even turned on
query-logging
which also prints no logs for the failed requests, as if PowerDNS silently discards them for some reason.Is discarding ALL requests on PRIMARY an intended mode of operation? If so why isn't it in the documentation? If not then how do I debug this issue?
Beta Was this translation helpful? Give feedback.
All reactions