The dns.resolver.Resolver and dns.resolver.Answer Classes
- classdns.resolver.Resolver(filename:str='/etc/resolv.conf',configure:bool=True)[source]
DNS stub resolver.
filename, a
stror file object, specifying a filein standard /etc/resolv.conf format. This parameter is meaningfulonly whenconfigure is true and the platform is POSIX.configure, a
bool. If True (the default), the resolverinstance is configured in the normal fashion for the operatingsystem the resolver is running on. (I.e. by reading a/etc/resolv.conf file on POSIX systems and from the registryon Windows systems.)- domain
A
dns.name.Name, the domain of this host.
- nameservers
A
listofstrordns.nameserver.Nameserver. A string may bean IPv4 or IPv6 address, or an https URL.This field is actually a property, and returns a tuple as of dnspython 2.4.Assigning this field converts any strings into
dns.nameserver.Nameserverinstances.
- search
A
listof dns.name.Name objects. If the query name is arelative name, the resolver will construct absolute query namesto try by appending values from the search list.
- use_search_by_default
A
bool, specifes whether or notresolve()uses thesearch list configured in the system’s resolver configurationwhen thesearchparameter toresolve()isNone. Thedefault isFalse.
- port
An
int, the default DNS port to send to if not overridden bynameserver_ports. The default value is 53.
- nameserver_ports
A
dictmapping an IPv4 or IPv6 addressstrto anint.This specifies the port to use when sending to a nameserver. Ifa port is not defined for an address, the value of theportattribute will be used.
- timeout
A
float, the number of seconds to wait for a response froma server.
- lifetime
A
float, the number of seconds to spend trying to get ananswer to the question. If the lifetime expires adns.exception.Timeoutexception will be raised.
- cache
An object implementing the caching protocol, e.g. a
dns.resolver.Cacheor adns.resolver.LRUCache. The defaultisNone, in which case there is no local caching.
- retry_servfail
A
bool. Should we retry a nameserver if it saysSERVFAIL?The default isFalse.
- keyring
A
dict, the TSIG keyring to use. If akeyring isspecified but akeyname is not, then the key used will bethe first key in thekeyring. Note that the order of keysin a dictionary is not defined, so applications should supplya keyname when a keyring is used, unless they know the keyringcontains only one key.
- keyname
A
dns.name.NameorNone, the name of the TSIG key touse; defaults toNone. The key must be defined in thekeyring.
- keyalgorithm
A
dns.name.Nameorstr, the TSIG algorithm to use.
- edns
An
int, the EDNS level to use. SpecifyingNone,False, or-1means “do not use EDNS”, and inthis case the other parameters are ignored. SpecifyingTrueis equivalent to specifying 0, i.e. “use EDNS0”.
- ednsflags
An
int, the EDNS flag values.
- payload
An
int, is the EDNS sender’s payload field, which is themaximum size of UDP datagram the sender can handle. I.e. how biga response to this message can be.
- flags
An
intorNone, the message flags to use. IfNone,then the default flags as set by thedns.message.Messageconstructor will be used.
- canonical_name(name:Name|str)→Name[source]
Determine the canonical name ofname.
The canonical name is the name the resolver uses for queriesafter all CNAME and DNAME renamings have been applied.
name, a
dns.name.Nameorstr, the query name.This method can raise any exception that
resolve()canraise, other thandns.resolver.NoAnsweranddns.resolver.NXDOMAIN.Returns a
dns.name.Name.
- query(qname:Name|str,rdtype:RdataType|str=RdataType.A,rdclass:RdataClass|str=RdataClass.IN,tcp:bool=False,source:str|None=None,raise_on_no_answer:bool=True,source_port:int=0,lifetime:float|None=None)→Answer[source]
Query nameservers to find the answer to the question.
This method calls resolve() with
search=True, and isprovided for backwards compatibility with prior versions ofdnspython. See the documentation for thedns.resolver.Resolver.resolve()method for further details.
- resolve(qname:Name|str,rdtype:RdataType|str=RdataType.A,rdclass:RdataClass|str=RdataClass.IN,tcp:bool=False,source:str|None=None,raise_on_no_answer:bool=True,source_port:int=0,lifetime:float|None=None,search:bool|None=None)→Answer[source]
Query nameservers to find the answer to the question.
Theqname,rdtype, andrdclass parameters may be objectsof the appropriate type, or strings that can be converted into objectsof the appropriate type.
qname, a
dns.name.Nameorstr, the query name.rdtype, an
intorstr, the query type.rdclass, an
intorstr, the query class.tcp, a
bool. IfTrue, use TCP to make the query.source, a
strorNone. If notNone, bind to this IPaddress when making queries.raise_on_no_answer, a
bool. IfTrue, raisedns.resolver.NoAnswerif there’s no answer to the question.source_port, an
int, the port from which to send the message.lifetime, a
float, how many seconds a query should runbefore timing out.search, a
boolorNone, determines whether thesearch list configured in the system’s resolver configurationare used for relative names, and whether the resolver’s domainmay be added to relative names. The default isNone,which causes the value of the resolver’suse_search_by_defaultattribute to be used.Raises
dns.resolver.LifetimeTimeoutif no answers could be foundin the specified lifetime.Raises
dns.resolver.NXDOMAINif the query name does not exist.Raises
dns.resolver.YXDOMAINif the query name is too long afterDNAME substitution.Raises
dns.resolver.NoAnswerifraise_on_no_answer isTrueand the query name exists but has no RRset of thedesired type and class.Raises
dns.resolver.NoNameserversif no non-brokennameservers are available to answer the question.Returns a
dns.resolver.Answerinstance.
- resolve_address(ipaddr:str,*args:Any,**kwargs:Any)→Answer[source]
Use a resolver to run a reverse query for PTR records.
This utilizes the resolve() method to perform a PTR lookup on thespecified IP address.
ipaddr, a
str, the IPv4 or IPv6 address you want to getthe PTR record for.All other arguments that can be passed to the resolve() functionexcept for rdtype and rdclass are also supported by thisfunction.
- resolve_name(name:Name|str,family:int=AddressFamily.AF_UNSPEC,**kwargs:Any)→HostAnswers[source]
Use a resolver to query for address records.
This utilizes the resolve() method to perform A and/or AAAA lookups onthe specified name.
qname, a
dns.name.Nameorstr, the name to resolve.family, an
int, the address family. If socket.AF_UNSPEC(the default), both A and AAAA records will be retrieved.All other arguments that can be passed to the resolve() functionexcept for rdtype and rdclass are also supported by thisfunction.
- try_ddr(lifetime:float=5.0)→None[source]
Try to update the resolver’s nameservers using Discovery of DesignatedResolvers (DDR). If successful, the resolver will subsequently useDNS-over-HTTPS or DNS-over-TLS for future queries.
lifetime, a float, is the maximum time to spend attempting DDR. The defaultis 5 seconds.
If the SVCB query is successful and results in a non-empty list of nameservers,then the resolver’s nameservers are set to the returned servers in priorityorder.
The current implementation does not use any address hints from the SVCB record,nor does it resolve addresses for the SCVB target name, rather it assumes thatthe bootstrap nameserver will always be one of the addresses and uses it.A future revision to the code may offer fuller support. The code verifies thatthe bootstrap nameserver is in the Subject Alternative Name field of theTLS certficate.
- classdns.resolver.Answer(qname:Name,rdtype:RdataType,rdclass:RdataClass,response:QueryMessage,nameserver:str|None=None,port:int|None=None)[source]
DNS stub resolver answer.
Instances of this class bundle up the result of a successful DNSresolution.
For convenience, the answer object implements much of the sequenceprotocol, forwarding to its
rrsetattribute. E.g.forainansweris equivalent toforainanswer.rrset.answer[i]is equivalent toanswer.rrset[i], andanswer[i:j]is equivalent toanswer.rrset[i:j].Note that CNAMEs or DNAMEs in the response may mean that answerRRset’s name might not be the query name.
- qname
A
dns.name.Name, the query name.
- rdclass
An
int, the query class.
- rdtype
An
int, the query type.
- response
A
dns.message.QueryMessage, the response message.
- rrset
A
dns.rrset.RRsetorNone, the answer RRset.
- expiration
A
float, the time when the answer expires.
- canonical_name
A
dns.name.Name, the canonical name of the query name,i.e. the owner name of the answer RRset after any CNAME and DNAMEchaining.