1
0
Fork 0
No description
Find a file
Daniel Baumann 02f32fe0d4
Updating uploaders field.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:18 +02:00
.github/workflows Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
bench Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
ci Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
client/.packaging Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
contrib Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
daemon Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
debian Updating uploaders field. 2025-06-21 13:56:18 +02:00
distro Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
doc Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
etc Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
lib Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
modules Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
scripts Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
systemd Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
tests Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
utils Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.clang-tidy Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.dir-locals.el Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.gitattributes Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.gitignore Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.gitlab-ci.yml Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.gitmodules Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.luacheckrc Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.mailmap Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
.readthedocs.yaml Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
AUTHORS Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
CodingStyle Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
CONTRIBUTING.md Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
COPYING Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
Dockerfile Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
meson.build Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
meson_options.txt Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
NEWS Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
README.md Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00
security.txt Adding upstream version 5.7.5. 2025-06-21 13:56:17 +02:00

Knot Resolver

Build Status Coverage Status Documentation Status Packaging status

Knot Resolver is a caching full resolver implementation written in C and LuaJIT, both a resolver library and a daemon. The core architecture is tiny and efficient, and provides a foundation and a state-machine like API for extensions. There are three modules built-in - iterator, validator, cache, and a few more are loaded by default. Most of the rich features are written in Lua(JIT) and C. Batteries are included, but optional.

The LuaJIT modules, support DNS privacy and DNSSEC, and persistent cache with low memory footprint make it a great personal DNS resolver or a research tool to tap into DNS data. TL;DR it's the OpenResty of DNS.

Strong filtering rules, and auto-configuration with etcd make it a great large-scale resolver solution.

The server adopts a different scaling strategy than the rest of the DNS recursors - no threading, shared-nothing architecture (except MVCC cache that may be shared) that allows you to pin instances on available CPU cores and grow by self-replication. You can start and stop additional nodes depending on the contention without downtime.

It also has strong support for DNS over TCP, notably TCP Fast-Open, query pipelining and deduplication, and response reordering.

Packages

The latest stable packages for various distributions are available in our upstream repository. Follow the installation instructions to add this repository to your system.

Knot Resolver is also available from the following distributions' repositories.

Building from sources

Knot Resolver mainly depends on Knot DNS libraries, LuaJIT and libuv. See the Building project documentation page for more information.

Docker image

This is simple and doesn't require any dependencies or system modifications, just run:

$ docker run -Pit cznic/knot-resolver

The images are meant as an easy way to try knot-resolver, and they're not designed for production use.

Running

The project builds a resolver library in the lib directory, and a daemon in the daemon directory. It requires no configuration or parameters to run a server on localhost.

$ kresd

See the documentation at knot-resolver.readthedocs.io for more options.

Contacting us