I appreciate the work you put into this. We were just talking about implementing something like this in-house. You saved us some time! I had one issue come up while using it though. I had a situat...
DNS servers allow clients to dynamically update their DNS records when their IP address changes (for instance, useful when a client receives a new IP Addresses from a DHCP server). References: RFC...
Infrastructure in code has the beginnings of TCP support, but it currently throws a NotImplementedException(). Finish adding TCP support.
A Zone Transfer allows a resolver to pull a copy of the a zone file from a DNS server. NOTE: "Because accuracy is essential, TCP or some other reliable protocol must be used for AXFR requests.", ...
Currently DnDns only supports IPv4 to query DNS Servers. As IPv6 become more prevalent, DnDns needs to support IPv6 networks as well.
RFC 2874 introduces IPv6 Record Types to the DNS system. Add additional record type A6 and modify the following existing record types to support IPv6 specifics as well. ref: http://www.ietf.org/r...
Tool would be similar to nslookup, more verbose.
"DNSSEC was designed to protect the Internet from certain attacks, such as DNS cache poisoning [0]. It is a set of extensions to DNS, which provide: a) origin authentication of DNS data, b) data in...
This project started long before I knew or understood what test driven development or unit testing was. Ideally I'd like to add unit testing to the project to make additions/patching, etc. for this...