https://github.com/icann-dns/nsd_package
https://github.com/icann-dns/nsd_package
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/icann-dns/nsd_package
- Owner: icann-dns
- License: bsd-3-clause
- Created: 2025-03-11T17:58:27.000Z (2 months ago)
- Default Branch: ubuntu/devel
- Last Pushed: 2025-03-11T18:41:02.000Z (2 months ago)
- Last Synced: 2025-03-11T19:25:07.456Z (2 months ago)
- Language: C
- Size: 7.72 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# NSD
[](https://github.com/NLnetLabs/nsd/actions)
[](https://scan.coverity.com/projects/nlnetlabs-nsd)
[](https://repology.org/project/nsd/versions)
[](https://bestpractices.coreinfrastructure.org/projects/1462)
[](https://fosstodon.org/@nlnetlabs)The NLnet Labs Name Server Daemon (NSD) is an authoritative DNS name server.
It has been developed for operations in environments where speed,
reliability, stability and security are of high importance. If you
have any feedback, we would love to hear from you. Don’t hesitate to
[create an issue on Github](https://github.com/NLnetLabs/nsd/issues/new)
or post a message on the
[NSD mailing list](https://lists.nlnetlabs.nl/mailman/listinfo/nsd-users).
You can learn more about NSD by reading our
[documentation](https://nsd.docs.nlnetlabs.nl/).## Building
Make sure you have the following installed:
* C toolchain (the set of tools to compile C such as a compiler, linker, and assembler)
* OpenSSL, with its include files (usually these are included in the "dev" version of the library)
* libevent, with its include files (usually these are included in the "dev" version of the library)
* flex
* bisonWhen building from Git, the `configure` script and [simdzone][simdzone]
sources are missing, use the following commands to get started (note that the
`configure` script and sources are included in release tarballs and do not
need to be generated/downloaded):```
$ git submodule update --init
$ autoreconf -fi
```> `autoreconf` should install the required auxiliary files (e.g. `config.sub`
> and `config.guess`). Older versions of `autoreconf` may not do so, try
> running `libtoolize -fi -c` first in that case.Compile and install using:
```
$ ./configure && make && make install
```## NSD configuration
The configuration options for NSD are described in the man pages, which are
installed (use `man nsd.conf`) and are available on the NSD
[documentation page](https://nsd.docs.nlnetlabs.nl/).An example configuration file is located in
[nsd.conf.sample](https://github.com/NLnetLabs/nsd/blob/master/nsd.conf.sample.in).[simdzone]: https://github.com/NLnetLabs/simdzone