I am using dns.resolver
from dnspython.
Is it possible to set the IP address of the server to use for queries ?
Although this is somewhat of an old thread, I will jump in. I've bumped against the same challenge and I thought I would share the solution. So, basically the config file would populate the 'nameservers' instance variable of the dns.resolver.Resolver you are using. Hence, if you want to coerce your Resolver to use a particular nameserver, you can do it direcly like this:
import dns.resolver
my_resolver = dns.resolver.Resolver()
# 8.8.8.8 is Google's public DNS server
my_resolver.nameservers = ['8.8.8.8']
answer = my_resolver.query('google.com')
Hope someone finds it useful.
dns.resolver.Resolver.query() is deprecating. Use dns.resolver.Resolver.resolve().See DeprecationWarning at https://github.com/rthalley/dnspython/blob/master/dns/resolver.py
Yes, it is.
If you use the convenience function dns.resolver.query()
like this
import dns.resolver
r = dns.resolver.query('example.org', 'a')
you can re-initialize the default resolver such such a specific nameserver (or a list) is used, e.g.:
import dns.resolver
dns.resolver.default_resolver = dns.resolver.Resolver(configure=False)
dns.resolver.default_resolver.nameservers = ['8.8.8.8', '2001:4860:4860::8888',
'8.8.4.4', '2001:4860:4860::8844' ]
r = dns.resolver.query('example.org', 'a')
Or you can use a separate resolver object just for some queries:
import dns.resolver
res = dns.resolver.Resolver(configure=False)
res.nameservers = [ '8.8.8.8', '2001:4860:4860::8888',
'8.8.4.4', '2001:4860:4860::8844' ]
r = res.query('example.org', 'a')
You don't specify in your question, but assuming you're using the resolver from dnspython.org, the documentation indicates you want to set the nameservers attribute on the Resolver object.
Though it may be easier to provide an /etc/resolv.conf-style file to pass to the constructor's filename argument.