nixpkgs/nixos/modules/services/networking/dnscrypt-proxy.xml

67 lines
2 KiB
XML
Raw Normal View History

<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0"
xml:id="sec-dnscrypt-proxy">
2018-09-30 00:51:11 +00:00
<title>DNSCrypt client proxy</title>
<para>
The DNSCrypt client proxy relays DNS queries to a DNSCrypt enabled upstream
resolver. The traffic between the client and the upstream resolver is
encrypted and authenticated, mitigating the risk of MITM attacks, DNS
poisoning attacks, and third-party snooping (assuming the upstream is
trustworthy).
2018-09-30 00:51:11 +00:00
</para>
<sect1 xml:id="sec-dnscrypt-proxy-configuration">
<title>Basic configuration</title>
<para>
2018-09-30 00:51:11 +00:00
To enable the client proxy, set
<programlisting>
2018-04-05 08:43:56 +00:00
<xref linkend="opt-services.dnscrypt-proxy.enable"/> = true;
2019-06-17 10:01:51 +00:00
</programlisting>
</para>
<para>
Enabling the client proxy does not alter the system nameserver; to relay
local queries, prepend <literal>127.0.0.1</literal> to
<option>networking.nameservers</option>.
</para>
2018-09-30 00:51:11 +00:00
</sect1>
<sect1 xml:id="sec-dnscrypt-proxy-forwarder">
<title>As a forwarder for another DNS client</title>
<para>
To run the DNSCrypt proxy client as a forwarder for another DNS client,
change the default proxy listening port to a non-standard value and point
the other client to it:
2018-09-30 00:51:11 +00:00
<programlisting>
2018-04-05 08:43:56 +00:00
<xref linkend="opt-services.dnscrypt-proxy.localPort"/> = 43;
2019-06-17 10:01:51 +00:00
</programlisting>
</para>
2018-09-30 00:51:11 +00:00
<sect2 xml:id="sec-dnscrypt-proxy-forwarder-dsnmasq">
<title>dnsmasq</title>
<para>
<programlisting>
2018-04-05 08:43:56 +00:00
{
<xref linkend="opt-services.dnsmasq.enable"/> = true;
<xref linkend="opt-services.dnsmasq.servers"/> = [ "127.0.0.1#43" ];
}
2019-06-17 10:01:51 +00:00
</programlisting>
2018-09-30 00:51:11 +00:00
</para>
</sect2>
2018-09-30 00:51:11 +00:00
<sect2 xml:id="sec-dnscrypt-proxy-forwarder-unbound">
<title>unbound</title>
<para>
<programlisting>
2018-04-05 08:43:56 +00:00
{
<xref linkend="opt-services.unbound.enable"/> = true;
<xref linkend="opt-services.unbound.forwardAddresses"/> = [ "127.0.0.1@43" ];
}
2019-06-17 10:01:51 +00:00
</programlisting>
2018-09-30 00:51:11 +00:00
</para>
</sect2>
2018-09-30 00:51:11 +00:00
</sect1>
</chapter>