 ScaredyCat World Chat Champion

Joined: 19 May 2012 Karma :   
|
 Posted: 18:16 - 04 Nov 2015 Post subject: DNSCrypt Proxy |
 |
|
Just a quick one, if you fancy using your raspberry pi (you can use almost any machine to do this just check out https://dnscrypt.org for all the clients) to encrypt your DNS lookups. This prevents people from spoofing dns and encrypts the actual dns packet content.
Create a work directory and move to it
| Code: | | mkdir dnsc && cd dnsc |
Get libsodium
| Code: | | wget http://download.libsodium.org/libsodium/releases/libsodium-1.0.6.tar.gz |
extract it
| Code: | | tar -zxvf libsodium-1.0.6.tar.gz |
build and install it
| Code: | cd libsodium-1.0.6
./configure
make
make install |
make sure you run
to refresh the library cache.
move back to your work dir
Now, get dnscrypt proxy
| Code: | | wget http://download.dnscrypt.org/dnscrypt-proxy/dnscrypt-proxy-1.6.0.tar.gz |
extract it
| Code: | | tar -zxvf dnscrypt-proxy/dnscrypt-proxy-1.6.0.tar.gz |
build and install it
| Code: | cd dnscrypt-proxy-1.6.0
./configure
make
make install |
Then run it using
| Code: | | dnscrypt-proxy --local-address=<IP>:53 -R cisco -d |
Where IP is your local IP, and -R cisco means use opendns
see /usr/local/share/dnscrypt-proxy/dnscrypt-resolvers.csv for a list you can use. You can update the list from https://github.com/jedisct1/dnscrypt-proxy/blob/master/dnscrypt-resolvers.csv
Depending on how the rest of your network is configured, you can simply point your main router at your pi to proxy and fetch encrypted dns. ____________________ Honda CBF125 ➝ NC700X
Honda CBF125 ↳ Speed Triple |
|
 Accuhaler Nitrous Nuisance
Joined: 28 Dec 2014 Karma :    
|
 Posted: 19:41 - 04 Nov 2015 Post subject: |
 |
|
Thanks for the guide
I'll just use pacman -S dnscrypt-proxy  |
|