Skip to content
Snippets Groups Projects
README.md 1.89 KiB
Newer Older
# Knot DNS Resolver

Marek Vavruša's avatar
Marek Vavruša committed
[![Build Status](https://img.shields.io/travis/CZ-NIC/knot-resolver.svg)](https://travis-ci.org/CZ-NIC/knot-resolver)
[![Coverage Status](https://img.shields.io/coveralls/CZ-NIC/knot-resolver.svg)](https://coveralls.io/r/CZ-NIC/knot-resolver)
[![Coverity](https://img.shields.io/coverity/scan/3912.svg)](https://scan.coverity.com/projects/3912)
Marek Vavruša's avatar
Marek Vavruša committed
[![Documentation Status](https://readthedocs.org/projects/knot-resolver/badge/?version=latest)](https://readthedocs.org/projects/knot-resolver/?badge=latest)
Marek Vavruša's avatar
Marek Vavruša committed
The Knot DNS Resolver is a minimalistic caching resolver implementation. The project provides both a resolver
library and a small daemon. Modular architecture of the library keeps the core tiny and efficient, and provides
a state-machine like API for extensions. There are two built-in modules: *iterator* and *cache*,
and each module can be flipped on and off.
Marek Vavruša's avatar
Marek Vavruša committed
### Try it out?
Marek Vavruša's avatar
Marek Vavruša committed
The Knot DNS Resolver is currently in an early development phase, you shouldn't put it in the production right away.

### Docker image

This is simple and doesn't require any dependencies or system modifications, just run:
Marek Vavruša's avatar
Marek Vavruša committed
$ docker run cznic/knot-resolver
Marek Vavruša's avatar
Marek Vavruša committed
See the build page [registry.hub.docker.com/u/cznic/knot-resolver](https://registry.hub.docker.com/u/cznic/knot-resolver) for more information and options.
Marek Vavruša's avatar
Marek Vavruša committed

### Building from sources 

The Knot DNS Resolver [depends][depends] on the pre-release version of the Knot DNS library and other projects.
See the [Building project][depends] documentation page for more information.
Marek Vavruša's avatar
Marek Vavruša committed
### Running
The project builds a resolver library in the `lib` directory, and a daemon in the `daemon` directory.

```
$ ./daemon/kresolved -h
$ ./daemon/kresolved [working_directory]
Marek Vavruša's avatar
Marek Vavruša committed

See the documentation at [knot-resolver.readthedocs.org][doc].

[depends]: http://knot-resolver.readthedocs.org/en/latest/build.html
[doc]: http://knot-resolver.readthedocs.org/en/latest/index.html