**This is an old revision of the document!**
Pihole-DNS-Server
Auf einem OrangePi zero installiert
Pihole
DNScrypt-Proxy
https://blog.sean-wright.com/dns-with-pi-hole-dnscrypt/
- Change the current directory to /opt: cd /opt
- Download the latest version: sudo wget https://github.com/DNSCrypt/dnscrypt-proxy/releases/download/2.0.45/dnscrypt-proxy-linux_arm64-2.0.45.tar.gz
- Unarchive the downloaded archive: sudo tar -xvzf ./dnscrypt-proxy-linuxarm64-2.0.45.tar.gz
- Remove the downloaded archive: sudo rm dnscrypt-proxy-linuxarm64-2.0.45.tar.gz - Rename the unpacked directory: `sudo mv ./linux-x86_64 ./dnscrypt-proxy
- Change directory to dnscrypt-proxy: cd dnscrypt-proxy
- Create configuration from an example: sudo cp ./example-dnscrypt-proxy.toml ./dnscrypt-proxy.toml
- Edit the configuration:
servernames = ['cloudflare'] # you can can change this and get a list of names from https://dnscrypt.info/public-servers
listenaddresses = ['127.0.0.1:54'] - Install the dnscrypt-proxy: sudo ./dnscrypt-proxy -service install
- Start dnscrypt-proxy: sudo ./dnscrypt-proxy -service start