> For the complete documentation index, see [llms.txt](https://book.ferro.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://book.ferro.pro/nw/dns.md).

# dns

* [Domain Name System Security Extensions (DNSSEC)](#domain-name-system-security-extensions-dnssec)
* [unbound - C](#unbound---c)
* [DNSCrypt](#dnscrypt)
  * [server - public](#server---public)
  * [server - custom](#server---custom)
  * [client](#client)
* [pdnsd](#pdnsd)
* [BIND - C](#bind---c)
* [Public DNS](#public-dns)

## Domain Name System Security Extensions (DNSSEC)

<https://wiki.archlinux.org/index.php/DNSSEC\\>
a suite of Internet Engineering Task Force (IETF) specifications

## unbound - C

a validating, recursive, and caching DNS resolver. <https://unbound.net/>

## DNSCrypt

### server - public

<https://github.com/jedisct1/dnscrypt-proxy/blob/0bbec277e61325a4a2f00e29ab039a7d308fb6c2/dnscrypt-resolvers.csv>

### server - custom

`DNSCrypt-Wrapper`, the reference server-side DNSCrypt proxy.\
<https://hub.docker.com/r/jedisct1/unbound-dnscrypt-server/>

`dnsdist`, compiled with `--enable-dnscrypt`.\
`unbound`, compiled with `--enable-dnscrypt`.

### client

```
sudo apt install -y dnscrypt-proxy
vi /etc/conf.d/dnscrypt-proxy

DNSCRYPT_LOCALIP=127.0.0.1
DNSCRYPT_LOCALPORT=1053
DNSCRYPT_USER=dnscrypt
DNSCRYPT_PROVIDER_NAME=2.dnscrypt-cert.opendns.com
DNSCRYPT_PROVIDER_KEY=B735:1140:206F:225D:3E2B:D822:D7FD:691E:A1C3:3CC8:D666:8D0C:BE04:BFAB:CA43:FB79
DNSCRYPT_RESOLVERIP=208.67.220.220
DNSCRYPT_RESOLVERPORT=443
```

## pdnsd

<https://wiki.archlinux.org/index.php/pdnsd>

## BIND - C

<https://wiki.archlinux.org/index.php/BIND>

## Public DNS

[Google](https://developers.google.com/speed/public-dns/docs/using) | 8.8.8.8 | 8.8.4.4 | 2001:4860:4860::8888 | 2001:4860:4860::8844


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://book.ferro.pro/nw/dns.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
