An open API service indexing awesome lists of open source software.

https://github.com/greensec/nsd-debian

Debian NSD auto-build repository
https://github.com/greensec/nsd-debian

deb debian debian-packages dns nsd packages

Last synced: 2 months ago
JSON representation

Debian NSD auto-build repository

Awesome Lists containing this project

README

          

# NSD Debian Packages

This repository contains the packaging configuration for automatically building Debian packages of [NSD](https://nlnetlabs.nl/projects/nsd/) (Name Server Daemon). NSD is an authoritative DNS name server with a focus on speed, security, and reliability.

## Repository Information

Pre-built packages are available at: [https://greensec.github.io/nsd-debian/](https://greensec.github.io/nsd-debian/)

## Supported Debian/Ubuntu Versions

### Debian
- buster (10)
- bullseye (11)
- bookworm (12)

### Ubuntu
- jammy (22.04 LTS)
- noble (24.04 LTS)

### Automated Builds

This repository uses GitHub Actions to automatically build packages for all supported distributions.

### How to add this repository:

#### Automatically via script
```bash
wget -O- https://greensec.github.io/nsd-debian/add-repository.sh | bash
apt-get install nsd
```

#### Manually
```bash
apt-get install wget lsb-release ca-certificates
wget -O /usr/share/keyrings/greensec.github.io-nsd-debian.key https://greensec.github.io/nsd-debian/public.key
echo "deb [signed-by=/usr/share/keyrings/greensec.github.io-nsd-debian.key] https://greensec.github.io/nsd-debian/repo $(lsb_release -sc) main" > /etc/apt/sources.list.d/nsd-debian.list
apt-get update && apt-get install nsd
```

## Acknowledgements

This package is based on the work of the NSD developers and the Debian DNS team.

### Original NSD Project
- [NSD Official Website](https://nlnetlabs.nl/projects/nsd/)
- [GitHub Repository](https://github.com/NLnetLabs/nsd)