From ac9e39551099b238245245565c556ddcc155b937 Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Sun, 30 Mar 2025 12:24:37 -0700 Subject: [PATCH] add comment that running xfr example does not work for access control reasons --- examples/xfr.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/xfr.py b/examples/xfr.py index 13360531..8f21e909 100755 --- a/examples/xfr.py +++ b/examples/xfr.py @@ -4,6 +4,9 @@ import dns.query import dns.resolver import dns.zone +# Note that running this doesn't currently work because +# dnspython.org's nameservers do not permit AXFR + soa_answer = dns.resolver.resolve("dnspython.org", "SOA") master_answer = dns.resolver.resolve(soa_answer[0].mname, "A") -- 2.47.3