1. 下载对应的版本
https://github.com/jedisct1/dnscrypt-proxy/releases 2. 修改配置文件设置好你要用的服务器地址和监听的地址和端口
3. 以监听 0.0.0.0:5335,路由器 wan 口 IP 为 10.0.0.1 为例
iptables -t nat -A PREROUTING -p udp --dport 53 ! -d 9.9.9.9 -j DNAT --to-destination 10.0.0.1:5335
iptables -t nat -A PREROUTING -p tcp --dport 53 ! -d 9.9.9.9 -j DNAT --to-destination 10.0.0.1:5335
iptables -t nat -A OUTPUT -p udp --dport 53 ! -d 9.9.9.9 -j DNAT --to-destination 127.0.0.1:5335
iptables -t nat -A OUTPUT -p tcp --dport 53 ! -d 9.9.9.9 -j DNAT --to-destination 127.0.0.1:5335
4. 写脚本让以上操作开机自动进行