Posts

Showing posts with the label isp

Bypass your ISP DNS blocking

Follow this instruction to bypass your ISP DNS blocking  (I'm using Fedora 24) Ikuti langkah di bawah ini untuk menghindari pembatasan situs oleh ISP # Install the package dnf install dnscrypt-proxy # To start manually dnscrypt-proxy -R cisco # To start automatic using systemd vi /etc/systemd/system/dnscrypt-proxy.service [Unit] Description=DNSCrypt client proxy Documentation=man:dnscrypt-proxy(8) After=network.target Before=nss-lookup.target [Install] WantedBy=multi-user.target [Service] Type=forking ExecStart=/sbin/dnscrypt-proxy  -R ovpnse -S -d -u nobody systemctl enable dnscrypt-proxy.service systemctl start dnscrypt-proxy.service # To use it echo 'nameserver 127.0.0.1' > /etc/resolv.conf # or change DNS in network manager ping www.reddit.com # Tips You can download latests resolver from https://raw.githubusercontent.com/jedisct1/dnscrypt-proxy/master/dnscrypt-resolvers.csv and replace this file /usr/share/dnscrypt-proxy/dnscr...