开发者

Where can I find a C++ DNS Library?

I know DNS is typically handled by the operating system, but I'm working under the assumption that DNS has been broken on the target system (this is a tool to diagnose DNS misconfiguration). I therefore need to implement DNS myself, to check the results I get back from the system against a known good DNS server.

You can do this with the NSLookup or Dig too开发者_运维问答ls, specifying a DNS server address manually, but it appears the Windows API calls for doing this (e.g. GetAddressByName) don't allow me to specify a server to query, and use the system's configured target instead.

I tried to look for the RFCs on DNS, but unfortunately they are clear as mud to me -- they make the HTTP spec look like the clearest and most well written spec ever produced.

I also don't want to reinvent something that someone else has already done several times before.


You might try: http://25thandclement.com/~william/projects/dns.c.html . Also, see Need To Build Simple DNS Resolver in C

Actually, a Google search of "DNS resolver C" reveals several possibilities.


Try the c-ares library, which as I understand it does implement its own DNS stack. I've used it successfully on linux, and they say that it supports Windows, though I haven't tried it myself. It isn't C++, just plain C, but you can easily enough write a C++ wrapper for it.

It gets bonus points for being asynchronous, and providing hooks by which you can integrate it with an existing event loop.


I know that the question is old, but I haven't found good answer for me here. I have found poslib as the best dns library with very easy interface.


http://www.vantage-points.org/libvdns.html

http://directory.fsf.org/project/FireDNS/

Did never use this, but maybe that helps you?


I'd suggest libunbound which (together with ldns) is a standalone library included with the Unbound recursive resolver.

It has DNSSEC validation support too, which will become useful as DNSSEC continues to get deployed.

See http://unbound.net/


djbdns contains a DNS client library which you could use:

http://cr.yp.to/djbdns/dns.html

This is independent of the system DNS resolver libraries and will generate the right UDP packets. If you really wanted to get clever, you could combine it with dnscache, or look at the dnstrace utility to resolve names from root servers and see what is really going on.

You'd need to make it work on Windows, of course. Shouldn't be that hard.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜