gtech99 has asked for the wisdom of the Perl Monks concerning the following question:
I want to do a recursive dns lookup using Net::DNS::Resolver::Recurse , akin to doing dig +trace
Great, the module's description even gives you a code example on how to do that.
However, the module doesn't seem to try more than one NS in case of failure. I know I can do a loop where I can specify myself the NSs but how can I do that with this module ? I am testing one domain that has two NS listed. One answers properly, the other returns REFUSED.
How can I get it to retry on the other server ?
Back to
Seekers of Perl Wisdom