Set specific DNS server using dns.resolver (pythondns)

Massimo picture Massimo · Oct 10, 2010 · Viewed 53.3k times · Source

I am using dns.resolver from dnspython.

Is it possible to set the IP address of the server to use for queries ?

Answer

Marcin Wyszynski picture Marcin Wyszynski · Aug 4, 2011

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.