Tagged Questions
The dnspython tag has no wiki summary.
4
votes
2answers
887 views
Tell urllib2 to use custom DNS
I'd like to tell urllib2.urlopen (or a custom opener) to use 127.0.0.1 (or ::1) to resolve addresses. I wouldn't change my /etc/resolv.conf, however.
One possible solution is to use a tool like ...
3
votes
2answers
682 views
How can I find the authoritative DNS server for a domain using dnspython?
As part of a tool I'm writing I want to have a diagnostic that will tell the user whether they have configured their domain's DNS correctly for a particular service. I want to query the authoritative ...
2
votes
1answer
515 views
TXT records in dnsPython
I have implemented a simple DNS server.
It simply responds with a TXT record. I am hosting the
script as the NS server for example.com. The NS server is x.y.z.k. It
works fine when I issue ...
2
votes
4answers
2k views
dnspython and python objects
I'm trying to use the dnspython library, and am a little confused by their example for querying MX records on this page: www.dnspython.org/examples.html:
import dns.resolver
answers = ...
1
vote
3answers
1k views
Python + DNS : Cannot get RRSIG records: No Answer
I get DNS records from a Python program, using DNS
Python
I can get various DNSSEC-related records:
>>> import dns.resolver
>>> myresolver = dns.resolver.Resolver()
>>> ...
0
votes
1answer
32 views
Dnspython: Setting query timeout/lifetime
I have a small script that checks a large list of domains for their MX records, everything works fine but when the script finds a domain with no record, it takes quite a long time to skip to the next ...
0
votes
0answers
24 views
dnspython how to lookup serial of subdomain?
I have a little issue I cannot seem to get my head get around. I am trying to query the serial number of a sub-domain. I keep getting no answer error tho but it will work fine on root domains. Easier ...
0
votes
1answer
90 views
DNSSEC Sign RRSET using DNSPython
I'm trying to DNSSEC Sign a RRSET, however I am not able finding any references to how to do so using DNSPython. Yes it has dns.dnssec.validate_rrsig(), but I want to DNSSEC sign a rrset, how can this ...