Simple recursive DNS resolver for debugging (app or VM)
Posted
by
notpeter
on Server Fault
See other posts from Server Fault
or by notpeter
Published on 2012-12-13T19:59:46Z
Indexed on
2012/12/14
5:05 UTC
Read the original article
Hit count: 501
I have an issue which I believe is caused by incorrect DNS queries (doubled subdomains like _record.host.subdomain.tld.subdomain.tld) when querying for SRV records.
So I need to an alternate DNS server with heavy logging so I can see every query (especially stupid ones), acting as a recursive resolver with the ability create records which override real DNS records so I can not only find the records it's (wrongly) looking for, but populate those records as well.
I know I could install a DNS server on yet another linux box, but I feel like this is the sort of thing that someone may already setup a simple python script or single use vm just for this purpose.
© Server Fault or respective owner