dns/README.markdown

123 lines
3.2 KiB
Markdown
Raw Normal View History

2011-02-10 19:01:43 +11:00
# Alternative (more granular) approach to a DNS library.
2010-12-29 01:44:19 +11:00
2012-01-28 11:14:55 +11:00
> Less is more.
2012-05-03 16:59:02 +10:00
Complete and usable DNS library. All widely used Resource Records are
2012-01-27 18:51:24 +11:00
supported, including the DNSSEC types. It follows a lean and mean philosophy.
2012-01-12 08:01:40 +11:00
If there is stuff you should know as a DNS programmer there isn't a convenience
2012-05-03 16:59:02 +10:00
function for it. Server side and client side programming is supported, i.e. you
can build servers and resolvers with it.
2011-07-06 03:54:20 +10:00
2012-08-10 07:38:47 +10:00
If you like this, you may also be interested in:
2013-06-24 06:39:14 +10:00
* https://github.com/miekg/fks -- a (in)complete nameserver written in Go;
2012-08-10 07:38:47 +10:00
* https://github.com/miekg/unbound -- Go wrapper for the Unbound resolver.
2012-05-12 07:48:43 +10:00
# Goals
2012-02-15 20:34:35 +11:00
2012-01-27 09:00:37 +11:00
* KISS;
2013-05-16 09:15:36 +10:00
* Fast
2012-02-19 23:38:31 +11:00
* Small API, if its easy to code in Go, don't make a function for it.
2012-01-27 09:00:37 +11:00
2013-03-15 02:42:35 +11: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 14:22:11 +10:00
* https://github.com/chuangbo/jianbing-dictionary-dns
* http://www.dns-lg.com/
* https://github.com/fcambus/rrda
2013-07-27 02:50:20 +10:00
* https://github.com/kenshinx/godns
2013-10-16 06:35:24 +11:00
* https://github.com/skynetservices/skydns
2013-08-26 14:22:11 +10:00
* more? (send pull request if you want to be listed here)
2013-03-15 02:42:35 +11:00
2012-05-12 07:48:43 +10:00
# Features
2011-07-06 03:54:20 +10:00
* UDP/TCP queries, IPv4 and IPv6;
2013-05-16 09:15:36 +10:00
* RFC 1035 zone file parsing ($INCLUDE, $ORIGIN, $TTL and $GENERATE (for all record types) are supported;
2013-05-06 05:59:43 +10:00
* Fast:
* Reply speed around ~ 80K qps (faster hardware results in more qps);
2012-10-15 22:44:18 +11:00
* Parsing RRs with ~ 100K RR/s, that's 5M records in about 50 seconds;
2012-08-10 07:38:47 +10:00
* Server side programming (mimicking the net/http package);
2012-11-20 05:28:49 +11:00
* Client side programming;
2012-05-03 16:59:02 +10:00
* DNSSEC: signing, validating and key generation for DSA, RSA and ECDSA;
* EDNS0, NSID;
* AXFR/IXFR;
* TSIG;
2012-01-27 09:00:37 +11:00
* DNS name compression.
2010-12-29 01:44:19 +11:00
2012-03-05 02:35:21 +11:00
Have fun!
2012-05-21 04:46:25 +10:00
Miek Gieben - 2010-2012 - miek@miek.nl
2012-03-05 02:35:21 +11:00
2012-05-12 07:48:43 +10:00
# Building
2012-03-05 02:35:21 +11:00
Building is done with the `go` tool. If you have setup your GOPATH
2012-12-02 18:13:57 +11:00
correctly, the following should work:
2011-01-02 08:07:47 +11:00
2012-08-10 07:38:47 +10:00
go get github.com/miekg/dns
2013-10-08 07:02:55 +11:00
go build github.com/miekg/dns
## Examples
2012-12-02 07:29:47 +11:00
A short "how to use the API" is at the beginning of dns.go (this also will show
when you call `go doc github.com/miekg/dns`.
Example programs can be found in the `github.com/miekg/exdns` repository.
2013-09-21 01:15:27 +10:00
2012-01-16 02:29:01 +11:00
## Supported RFCs
2011-01-27 19:29:11 +11:00
2012-05-03 16:59:02 +10:00
*all of them*
2012-01-27 09:00:37 +11:00
2012-08-27 06:32:47 +10:00
* 103{4,5} - DNS standard
2013-10-13 22:25:08 +11:00
* 1348 - NSAP record
2011-01-27 19:29:11 +11:00
* 1982 - Serial Arithmetic
2012-04-30 23:47:37 +10:00
* 1876 - LOC record
2011-01-27 19:29:11 +11:00
* 1995 - IXFR
* 1996 - DNS notify
* 2136 - DNS Update (dynamic updates)
2011-01-27 19:29:11 +11:00
* 2181 - RRset definition
* 2537 - RSAMD5 DNS keys
* 2065 - DNSSEC (updated in later RFCs)
2012-02-19 07:49:02 +11:00
* 2671 - EDNS record
* 2782 - SRV record
* 2845 - TSIG record
* 2915 - NAPTR record
2013-04-18 19:23:53 +10:00
* 2929 - DNS IANA Considerations
2011-01-27 19:29:11 +11:00
* 3110 - RSASHA1 DNS keys
* 3225 - DO bit (DNSSEC OK)
2012-02-19 07:49:02 +11:00
* 340{1,2,3} - NAPTR record
2012-02-17 09:34:09 +11:00
* 3445 - Limiting the scope of (DNS)KEY
2011-02-22 02:24:14 +11:00
* 3597 - Unkown RRs
* 403{3,4,5} - DNSSEC + validation functions
2012-02-19 07:49:02 +11:00
* 4255 - SSHFP record
2013-09-21 01:15:27 +10:00
* 4343 - Case insensitivity
2012-02-19 07:49:02 +11:00
* 4408 - SPF record
2011-03-22 19:44:33 +11:00
* 4509 - SHA256 Hash in DS
2012-02-15 20:28:55 +11:00
* 4592 - Wildcards in the DNS
* 4635 - HMAC SHA TSIG
2012-02-19 07:25:37 +11:00
* 4701 - DHCID
2011-07-29 20:24:41 +10:00
* 4892 - id.server
2013-09-21 01:15:27 +10:00
* 5001 - NSID
2012-02-19 07:49:02 +11:00
* 5155 - NSEC3 record
* 5205 - HIP record
2012-04-18 22:52:49 +10:00
* 5702 - SHA2 in the DNS
2011-01-27 19:29:11 +11:00
* 5936 - AXFR
2012-05-03 16:59:02 +10:00
* 6605 - ECDSA
2012-11-18 07:26:48 +11:00
* 6742 - ILNP DNS
2013-04-28 01:57:33 +10:00
* 6891 - EDNS0 update
2013-10-13 23:28:48 +11:00
* 6895 - DNS IANA considerations
2012-05-03 16:59:02 +10:00
* xxxx - URI record (draft)
2012-10-17 18:06:49 +11:00
* xxxx - EDNS0 DNS Update Lease (draft)
2013-04-28 01:57:33 +10:00
* xxxx - IEU48/IEU64 records (draft)
2013-05-12 02:04:55 +10:00
* xxxx - Algorithm-Signal (draft)
2012-08-27 06:32:47 +10:00
## Loosely based upon
* `ldns`
* `NSD`
* `Net::DNS`
* `GRONG`