| Crates.io | hickory-dns |
| lib.rs | hickory-dns |
| version | 0.26.0-alpha.1 |
| created_at | 2023-05-17 01:39:42.97261+00 |
| updated_at | 2025-06-03 09:06:32.564364+00 |
| description | Hickory DNS is a safe and secure DNS server with DNSSEC support. Eventually this could be a replacement for BIND9. The DNSSEC support allows for live signing of all records, in it does not currently support records signed offline. The server supports dynamic DNS with SIG0 authenticated requests. Hickory DNS is based on the Tokio and Futures libraries, which means it should be easily integrated into other software that also use those libraries. |
| homepage | https://hickory-dns.org/ |
| repository | https://github.com/hickory-dns/hickory-dns |
| max_upload_size | |
| id | 866507 |
| size | 384,981 |
Hickory DNS provides a binary for hosting or forwarding DNS zones.
This a named implementation for DNS zone hosting, stub resolvers, and recursive
resolvers. It is capable of performing signing all records in the zone for
server DNSSEC RRSIG records associated with all records in a zone. There is also
a hickory-dns binary that can be generated from the library with cargo install hickory-dns. Dynamic updates are supported via SIG0 (an mTLS
authentication method is under development).
NOTICE This project was rebranded from Trust-DNS to Hickory DNS and has been moved to the https://github.com/hickory-dns/hickory-dns organization and repo, this crate/binary has been moved to hickory-dns, from 0.24 and onward, for prior versions see trust-dns.
The following DNS protocols are optionally supported:
dns-over-rustls for DNS over TLS (DoT)dns-over-https-rustls for DNS over HTTP/2 (DoH)dns-over-quic for DNS over QUIC (DoQ)dns-over-h3 for DNS over HTTP/3 (DoH3)The current root key is bundled into the system, and used by default. This gives validation of DNSKEY and DS records back to the root. NSEC and NSEC3 are implemented.
Zones will be automatically resigned on any record updates via dynamic DNS. To enable DNSSEC, enable the dnssec-ring feature.
Warning: Hickory DNS is still under development, running in production is not recommended.
./target/release/hickory-dns --version
./target/release/hickory-dns --help
hickory-dns server with test configNote that if the -p parameter is not passed, the server will run on default
DNS ports. There are separate port options for DoT and DoH servers, see
hickory-dns --help
./target/release/hickory-dns -c ./tests/test-data/test_configs/example.toml -z ./tests/test-data/test_configs/ -p 24141
digdig @127.0.0.1 -p 24141 www.example.com
The current minimum rustc version for this project is 1.70
Hickory DNS does it's best job to follow semver. Hickory DNS will be promoted to 1.0 upon stabilization of the publicly exposed APIs. This does not mean that Hickory DNS will necessarily break on upgrades between 0.x updates. Whenever possible, old APIs will be deprecated with notes on what replaced those deprecations. Hickory DNS will make a best effort to never break software which depends on it due to API changes, though this can not be guaranteed. Deprecated interfaces will be maintained for at minimum one major release after that in which they were deprecated (where possible), with the exception of the upgrade to 1.0 where all deprecated interfaces will be planned to be removed.