Untuk Fedora 22 bisa dilihat Instalasi dan Konfigurasi DNSCrypt di Fedora 22
Install library yang dibutuhkan untuk meng-compile libsodium dan dnscrypt.
dnf install gcc make automake gcc-c++ glibc-devel libtool automake libtool-ltdl-devel -y
Download Libsodium
wget https://download.libsodium.org/libsodium/releases/libsodium-1.0.1.tar.gz
ekstrak dan install
tar zxvf libsodium-1.0.1.tar.gz cd libsodium-1.0.1/ ./configure make su -c "make install"
setelah menginstall libsodium, jalankan perintah dibawah ini, agar libsodium dikenali di system.
echo /usr/local/lib > /etc/ld.so.conf.d/usr_local_lib.conf ldconfig
bila perintah diatas tidak dijalankan maka kemungkinan akan muncul error
checking host system type... x86_64-unknown-linux-gnu checking for gcc... gcc -std=gnu99 checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... configure: error: in `/tmp/dnscrypt-proxy-1.4.2/src/libevent-modified': configure: error: cannot run C compiled programs. If you meant to cross compile, use `--host'. See `config.log' for more details configure: error: ./configure failed for src/libevent-modified
Download dnscrypt
wget http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.4.2.tar.gz
ekstrak dan install
tar zxvf dnscrypt-proxy-1.4.2.tar.gz cd dnscrypt-proxy-1.4.2 ./autogen.sh ./configure make su -c "make install"
Cara penggunaan DNSCrypt
Agar dnscrypt berfungsi dengan semestinya, hapus isi file /etc/resolv.conf ganti dengan
nameserver 127.0.0.1
lalu jalankan dnscrypt dengan format
su -c "dnscrypt-proxy -R opendns"
coba ping ke beberapa website, atau browsing beberapa situs, setelah anda yakin website-website tersebut bisa diakses, jalankan dnscrypt di background dengan cara
su -c "dnscrypt-proxy -R opendns -d"
Bila anda mau menggunakan DNSCrypt di jaringan LAN ada beberapa yang perlu diubah, misalkan IP komputer/server anda menginstall DNSCrypt adalah 192.168.1.2 ubah file /etc/resolv.conf menjadi
nameserver 127.0.0.1
ubah juga perintah menjalankan dnscrypt menjadi
su -c "dnscrypt-proxy --local-address=192.168.1.2 -R opendns -d"
lalu ganti semua DNS di LAN anda menjadi 192.168.1.2.