dns/README.markdown

98 lines
2.5 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:
* https://github.com/miekg/fks -- a complete nameserver written in Go;
* 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;
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
2012-05-12 07:48:43 +10:00
# Features
2011-07-06 03:54:20 +10:00
* UDP/TCP queries, IPv4 and IPv6;
2012-05-21 03:12:20 +10:00
* RFC 1035 zone file parsing ($INCLUDE, $ORIGIN, $TTL and $GENERATE [for all record types]
are supported);
2012-01-27 09:00:37 +11:00
* Fast:
2012-10-15 22:44:18 +11:00
* Reply speed around ~ 50K qps (faster hardware results in more qps);
* 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);
* Client side programming with asynchronous calls;
2012-02-15 20:24:58 +11:00
* Asynchronous queries/replies for client and server;
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
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
go build dns
Sample programs can be found in the `ex` directory. They can
2012-02-19 08:18:16 +11:00
be build with: `make -C ex`, or also with the `go` tool.
2012-01-24 07:05:13 +11: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
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
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
* 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
2011-01-27 19:29:11 +11: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
* xxxx - URI record (draft)
* xxxx - Dns Update Lease (draft)
2012-08-27 06:32:47 +10:00
## Loosely based upon
* `ldns`
* `NSD`
* `Net::DNS`
* `GRONG`