-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Installation on OpenWrt
- Which method to use?
- Package installation (Basic)
- Manual installation (Advanced)
- Recommended tweaks
- Logging DNS queries with client IPs
- Verifying the configuration
The basic opkg package installation is for those looking for a simple no-frills installation, where updates are at the discretion of the package maintainer. Success is dependent upon the updated state of the package, it may not work if it goes stale. This is only available for OpenWrt 19.07+
The advanced manual installation offers more flexibility, and is the preferred method for the more competent users.
Whichever you choose, the additional tweaks are highly recommended.
System > Software > Update lists...
Type dnscrypt-proxy2 in the Filter box then Install the desired package
Add 127.0.0.53 to Network > DHCP and DNS > General Settings > DNS forwardings
Save & Apply
Restart dnsmasq in System > Startup
opkg update
opkg install dnscrypt-proxy2
uci add_list dhcp.@dnsmasq[0].server='127.0.0.53'
uci commit dhcp
/etc/init.d/dnsmasq restartUse ssh or scp to edit the configuration file at /etc/dnscrypt-proxy2/dnscrypt-proxy.toml e.g:
vi /etc/dnscrypt-proxy2/dnscrypt-proxy.toml
/etc/init.d/dnscrypt-proxy restartIn a package installation, the configuration files are located in /etc/dnscrypt-proxy2/. To ensure all files here are backed up, in LuCI select System > Backup / Flash Firmware, click the Configuration tab and add the following line:
/etc/dnscrypt-proxy2/
Then click Save. Alternatively, you can add the line to /etc/sysupgrade.conf directly.
Download the latest binary here. Get the right binary for your architecture. If you get a strange parse error later when trying to run the executable file, chances are that you didn't pick the right file for the CPU of your router. Here are some common examples:
Netgear R7800 - linux_arm
Ubiquiti EdgeRouter X - linux_mipsle
The dnscrypt-proxy file is quite large, but can be compressed for a massive reduction of its size, from ~12 MB down to ~2 MB.
In order to do so, use UPX on any platform (Windows, Linux, macOS...) with the following command:
upx --lzma dnscrypt-proxyRename example-dnscrypt-proxy.toml to dnscrypt-proxy.toml, and change at least the following line:
listen_addresses = ['127.0.0.1:53', '[::1]:53']to (notice the IP address change):
listen_addresses = ['127.0.0.53:53']Use scp to copy:
-
dnscrypt-proxyto/usr/sbin/ - The modified
dnscrypt-proxy.tomlfile to/etc/config/ -
This
init.dfile by @etam saved as/etc/init.d/dnscrypt-proxy
Then use ssh to log on the router and type:
chmod +x /usr/sbin/dnscrypt-proxy
chmod +x /etc/init.d/dnscrypt-proxyThe ca-bundle package is not installed by default in OpenWrt, which will cause issues if not installed.
opkg update
opkg install ca-bundlednscrypt-proxy -config /etc/config/dnscrypt-proxy.toml -checkAnd watch for possible errors. Looks good? Start it for real:
/etc/init.d/dnscrypt-proxy enable
/etc/init.d/dnscrypt-proxy startEdit /etc/config/dhcp to direct dns queries to dnscrypt-proxy
config dnsmasq
# Upstream dnscrypt-proxy resolver to use for queries:
list server '127.0.0.53'
Restart dnsmasq to switch to the new configuration and check for any errors reported:
/etc/init.d/dnsmasq restart
logread -l 100 | grep dnsmasqIt should report this: daemon.info dnsmasq[PID]: using nameserver 127.0.0.53#53
In the System > Backup / Flash Firmware page, click the Configuration tab and add the list of files you uploaded and the automatically generated rc.d symlink to restore its enabled status after a sysupgrade:
/etc/init.d/dnscrypt-proxy
/usr/sbin/dnscrypt-proxy
/etc/rc.d/S18dnscrypt-proxy
Configuration files in /etc/config are automatically saved already.
Edit /etc/sysupgrade.conf to add files to be included in backups.
Edit /etc/config/dhcp:
config dnsmasq
# Ignore ISP's DNS:
option noresolv '1'
# Change /etc/resolv.conf to direct local router processes to use local dnsmasq:
option localuse '1'
# Don't forward RFC 1918 private addresses and RFC 6761 top level domains
option boguspriv '1'
# Disable dnsmasq cache because we don't want to cache twice and the dnscrypt-proxy cache is superior
option cachesize '0'
Restart dnsmasq to switch to the new configuration and check for any errors reported:
/etc/init.d/dnsmasq restart
logread -l 100 | grep dnsmasqNote: If you're using an OpenWrt version built before 23 February 2019, you need to update dnsmasq, since its option localuse was added on 23 Feb 2019:
opkg update; opkg upgrade dnsmasqIn order to prevent leakage of queries from these local zones (such as 168.192.in-addr.arpa) to upstream resolvers, ensure that you're running version 2.0.36 or later with this line present (it is now enabled by default in dnscrypt-proxy.toml):
block_undelegated = trueCreate firewall rules for redirecting all detectable DNS requests from lan zone clients to dnscrypt-proxy by adding the following rules into /etc/config/firewall:
config redirect
option name 'Divert-DNS, port 53'
option src 'lan'
option proto 'tcp udp'
option src_dport '53'
option dest_port '53'
option target 'DNAT'
config redirect
option name 'Divert-DNS, port 853'
option src 'lan'
option proto 'tcp udp'
option src_dport '853'
option dest_port '853'
option target 'DNAT'
config redirect
option name 'Divert-DNS, port 5353'
option src 'lan'
option proto 'tcp udp'
option src_dport '5353'
option dest_port '5353'
option target 'DNAT'
And reload Firewall: /etc/init.d/firewall reload
Note: Alternatively, if you are using the adblock package you can enable the Force Local DNS option which will create these rules automatically for you.
dnscrypt-proxy can log queries, but in this OpenWrt configuration it cannot log the requesting client IP address because dnsmasq is forwarding the request to dnscrypt-proxy. It can be helpful to know the requesting client IP in order to identify which device is making a particular DNS query. This can be achieved by enabling query logging in dnsmasq as follows:
config dnsmasq
# equivalent to --log-queries=extra in dnsmasq
option logqueries '1'
# where to write log file to
option logfacility '/tmp/dnsmasq_queries.log'/etc/init.d/dnsmasq restart
Note: These logs accumulate quickly so it is recommended to write to an external share or storage device as embedded devices have limited flash write cycles and storage space.
openwrt > dnscrypt-proxy -resolve google.comResolver IP should not belong to your ISP. You can verify whose network an IP address is on IPtoASN.
openwrt > cat /etc/resolv.conf
search lan
nameserver 127.0.0.1The above value for nameserver must be 127.0.0.1, which is the dnsmasq server.
Note: These entries might only show when dhcp option localuse is enabled as instructed above.
The DNS leak test and DNS randomness test show the actual IP of your DNS server(s).
You should make sure that any reported name or IP is NOT associated with the ISP you are using.
If you see the ISP presence in the test results, something is wrong with the configuration, since it's bypassing your dnscrypt-proxy provider.
DNSSEC resolver test determines whether your DNS resolver validates DNSSEC signatures.
You can also use this site to test both your IPV4 & IPV6 & DNSSEC settings: https://en.internet.nl/connection/
- Home
- Installation
- Configuration
- Checking that your DNS traffic is encrypted
- Automatic Updates
- Server sources
- Combining blocklists
- Public Blocklist and other configuration files
- Building from source
- Run your own DNSCrypt server in under 10 minutes
- DNS stamps specifications
- Windows Tips
- dnscrypt-proxy in the media
- Planned Features