From: Bob Halley Date: Sun, 30 Mar 2025 19:24:37 +0000 (-0700) Subject: add comment that running xfr example does not work for access control reasons X-Git-Tag: v2.8.0rc1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac9e39551099b238245245565c556ddcc155b937;p=thirdparty%2Fdnspython.git add comment that running xfr example does not work for access control reasons --- 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")