From 11d16ad9391f5fdcc18bd17e55e3a01bae2871da Mon Sep 17 00:00:00 2001 From: Ilya Pupko Date: Sat, 22 Sep 2018 11:38:36 -0700 Subject: [PATCH] sudo command added for install and start - permission failure without it leads to a non-desriptive failure, e.g. "systemctl" failed: exit status 1 --- DNSCrypt-2.0.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DNSCrypt-2.0.md b/DNSCrypt-2.0.md index b3715c7..cbe52b7 100644 --- a/DNSCrypt-2.0.md +++ b/DNSCrypt-2.0.md @@ -14,8 +14,8 @@ This can probably replace the DNSCrypt page, but leaving it for archive purposes * `sudo nano dnscrypt-proxy.toml`: Edit the toml file. This is where all the fancy configuration happens. * In the `listen_addresses` line, edit port to be something other than `53` (since `53` is being used by Pi-Hole). I'll use port 5353 in this example. You can also change both IPv4 and IPv6 as desired. * Edit other settings as desired. I set `require_dnssec` to be `true`. There are a lot of other options, but server selection and more is already done. If you want to specify the server(s) you want to use, look at [this site](https://dnscrypt.info/public-servers). -* `./dnscrypt-proxy -service install`: install dnscrypt-proxy service -* `./dnscrypt-proxy -service start`: start the new service +* `sudo ./dnscrypt-proxy -service install`: install dnscrypt-proxy service +* `sudo ./dnscrypt-proxy -service start`: start the new service You can see dnscrypt-proxy 2.0 installation instructions on the [wiki](https://github.com/jedisct1/dnscrypt-proxy/wiki/installation).