dns/README.md

141 lines
3.8 KiB
Markdown
Raw Normal View History

2014-07-08 14:35:41 +00:00
[![Build Status](https://travis-ci.org/miekg/dns.svg?branch=master)](https://travis-ci.org/miekg/dns)
2014-01-12 13:47:03 +00:00
# Alternative (more granular) approach to a DNS library
2010-12-28 14:44:19 +00:00
2012-01-28 00:14:55 +00:00
> Less is more.
2012-05-03 06:59:02 +00:00
Complete and usable DNS library. All widely used Resource Records are
2012-01-27 07:51:24 +00:00
supported, including the DNSSEC types. It follows a lean and mean philosophy.
2012-01-11 21:01:40 +00:00
If there is stuff you should know as a DNS programmer there isn't a convenience
2012-05-03 06:59:02 +00:00
function for it. Server side and client side programming is supported, i.e. you
can build servers and resolvers with it.
2011-07-05 17:54:20 +00:00
2012-08-09 21:38:47 +00:00
If you like this, you may also be interested in:
* https://github.com/miekg/unbound -- Go wrapper for the Unbound resolver.
2012-05-11 21:48:43 +00:00
# Goals
2012-02-15 09:34:35 +00:00
2012-01-26 22:00:37 +00:00
* KISS;
2014-04-11 13:53:48 +00:00
* Fast;
2012-02-19 12:38:31 +00:00
* Small API, if its easy to code in Go, don't make a function for it.
2012-01-26 22:00:37 +00:00
2013-03-14 15:42:35 +00:00
# Users
A not-so-up-to-date-list-that-may-be-actually-current:
* https://github.com/abh/geodns
* http://www.statdns.com/
* http://www.dnsinspect.com/
2013-08-26 04:22:11 +00:00
* https://github.com/chuangbo/jianbing-dictionary-dns
* http://www.dns-lg.com/
* https://github.com/fcambus/rrda
2013-07-26 16:50:20 +00:00
* https://github.com/kenshinx/godns
2013-10-15 19:35:24 +00:00
* https://github.com/skynetservices/skydns
2014-07-02 23:21:29 +00:00
* https://github.com/DevelopersPL/godnsagent
2014-07-04 06:29:35 +00:00
* https://github.com/duedil-ltd/discodns
2015-01-16 07:48:43 +00:00
* https://github.com/StalkR/misc/tree/master/dns/proxy
2014-09-21 08:13:29 +00:00
Send pull request if you want to be listed here.
2013-03-14 15:42:35 +00:00
2012-05-11 21:48:43 +00:00
# Features
2011-07-05 17:54:20 +00:00
* UDP/TCP queries, IPv4 and IPv6;
2013-05-15 23:15:36 +00:00
* RFC 1035 zone file parsing ($INCLUDE, $ORIGIN, $TTL and $GENERATE (for all record types) are supported;
2013-05-05 19:59:43 +00:00
* Fast:
* Reply speed around ~ 80K qps (faster hardware results in more qps);
2014-04-11 13:53:48 +00:00
* Parsing RRs ~ 100K RR/s, that's 5M records in about 50 seconds;
2012-08-09 21:38:47 +00:00
* Server side programming (mimicking the net/http package);
2012-11-19 18:28:49 +00:00
* Client side programming;
2012-05-03 06:59:02 +00:00
* DNSSEC: signing, validating and key generation for DSA, RSA and ECDSA;
* EDNS0, NSID;
* AXFR/IXFR;
* TSIG, SIG(0);
2014-08-30 15:42:51 +00:00
* DNS name compression;
* Depends only on the standard library.
2010-12-28 14:44:19 +00:00
2012-03-04 15:35:21 +00:00
Have fun!
2014-08-05 06:43:12 +00:00
Miek Gieben - 2010-2012 - <miek@miek.nl>
2012-03-04 15:35:21 +00:00
2012-05-11 21:48:43 +00:00
# Building
2012-03-04 15:35:21 +00:00
Building is done with the `go` tool. If you have setup your GOPATH
2012-12-02 07:13:57 +00:00
correctly, the following should work:
2011-01-01 21:07:47 +00:00
2012-08-09 21:38:47 +00:00
go get github.com/miekg/dns
2013-10-07 20:02:55 +00:00
go build github.com/miekg/dns
## Examples
2012-12-01 20:29:47 +00:00
A short "how to use the API" is at the beginning of dns.go (this also will show
2014-01-28 10:55:31 +00:00
when you call `godoc github.com/miekg/dns`).
Example programs can be found in the `github.com/miekg/exdns` repository.
2013-09-20 15:15:27 +00:00
2012-01-15 15:29:01 +00:00
## Supported RFCs
2011-01-27 08:29:11 +00:00
2012-05-03 06:59:02 +00:00
*all of them*
2012-01-26 22:00:37 +00:00
2012-08-26 20:32:47 +00:00
* 103{4,5} - DNS standard
2013-10-13 11:25:08 +00:00
* 1348 - NSAP record
2011-01-27 08:29:11 +00:00
* 1982 - Serial Arithmetic
2012-04-30 13:47:37 +00:00
* 1876 - LOC record
2011-01-27 08:29:11 +00:00
* 1995 - IXFR
* 1996 - DNS notify
* 2136 - DNS Update (dynamic updates)
2014-01-28 10:56:29 +00:00
* 2181 - RRset definition - there is no RRset type though, just []RR
2011-01-27 08:29:11 +00:00
* 2537 - RSAMD5 DNS keys
* 2065 - DNSSEC (updated in later RFCs)
2012-02-18 20:49:02 +00:00
* 2671 - EDNS record
* 2782 - SRV record
* 2845 - TSIG record
* 2915 - NAPTR record
2013-04-18 09:23:53 +00:00
* 2929 - DNS IANA Considerations
2011-01-27 08:29:11 +00:00
* 3110 - RSASHA1 DNS keys
* 3225 - DO bit (DNSSEC OK)
2012-02-18 20:49:02 +00:00
* 340{1,2,3} - NAPTR record
2012-02-16 22:34:09 +00:00
* 3445 - Limiting the scope of (DNS)KEY
2011-02-21 15:24:14 +00:00
* 3597 - Unkown RRs
* 403{3,4,5} - DNSSEC + validation functions
2012-02-18 20:49:02 +00:00
* 4255 - SSHFP record
2013-09-20 15:15:27 +00:00
* 4343 - Case insensitivity
2012-02-18 20:49:02 +00:00
* 4408 - SPF record
2011-03-22 08:44:33 +00:00
* 4509 - SHA256 Hash in DS
2012-02-15 09:28:55 +00:00
* 4592 - Wildcards in the DNS
* 4635 - HMAC SHA TSIG
2012-02-18 20:25:37 +00:00
* 4701 - DHCID
2011-07-29 10:24:41 +00:00
* 4892 - id.server
2013-09-20 15:15:27 +00:00
* 5001 - NSID
2012-02-18 20:49:02 +00:00
* 5155 - NSEC3 record
* 5205 - HIP record
2012-04-18 12:52:49 +00:00
* 5702 - SHA2 in the DNS
2011-01-27 08:29:11 +00:00
* 5936 - AXFR
2013-10-18 22:07:48 +00:00
* 5966 - TCP implementation recommendations
2012-05-03 06:59:02 +00:00
* 6605 - ECDSA
* 6725 - IANA Registry Update
2012-11-17 20:26:48 +00:00
* 6742 - ILNP DNS
2013-04-27 15:57:33 +00:00
* 6891 - EDNS0 update
2013-10-13 12:28:48 +00:00
* 6895 - DNS IANA considerations
2014-08-30 15:46:37 +00:00
* 6975 - Algorithm Understanding in DNSSEC
2014-01-28 10:59:12 +00:00
* 7043 - EUI48/EUI64 records
* 7314 - DNS (EDNS) EXPIRE Option
2012-05-03 06:59:02 +00:00
* xxxx - URI record (draft)
2012-10-17 07:06:49 +00:00
* xxxx - EDNS0 DNS Update Lease (draft)
2012-08-26 20:32:47 +00:00
## Loosely based upon
* `ldns`
* `NSD`
* `Net::DNS`
* `GRONG`
2014-02-10 20:42:52 +00:00
## TODO
* privatekey.Precompute() when signing?
* Last remaining RRs: APL, ATMA, A6 and NXT and IPSECKEY;
2014-08-30 07:44:16 +00:00
* Missing in parsing: ISDN, UNSPEC, ATMA;
2014-04-11 13:53:48 +00:00
* CAA parsing is broken;
2014-09-02 10:31:15 +00:00
* NSEC(3) cover/match/closest enclose;
2014-10-06 10:57:49 +00:00
* Replies with TC bit are not parsed to the end;