Okay, a bit of progress...
This didn't work unfortunately:
It still prints the output only to the terminal, nothing to syslog.
However, the following does output to syslog:
Code:
marco@RT-AC68U:/tmp/mnt/USB/dnscrypt-proxy# ./dnscrypt-proxy | logger -t dnscrypt-proxy "$@" &
Which results in: (your results might look different, the excerpt below has been copied from papertrail.com)
Code:
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] Source [https://raw.githubusercontent.com/DNSCrypt/dnscrypt-resolvers/master/v1/dnscrypt-resolvers.csv] loaded
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] [2.dnscrypt.default.ns1.adguard.com.] Valid cert found: [ef0cdaa6887f24c8d7f38584bfa96bc9e92e0094e4a6bd3670bb76e6f85d4603]
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] [2.dnscrypt-cert.fr.dnscrypt.org.] Valid cert found: [ac708439648371fd8cfe27d0da9e88b31e23b0258859fda24acba08a6f7d8954]
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] [2.dnscrypt-cert.fr.dnscrypt.org.] Valid cert found: [ac708439648371fd8cfe27d0da9e88b31e23b0258859fda24acba08a6f7d8954]
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] [2.dnscrypt-cert.dnsrec.meo.ws.] Valid cert found: [e7376400d64607207d9d29aba4c9070c4546cef70cfed62f41e9feaac58f6376]
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] [2.dnscrypt-cert.fr.dnscrypt.org.] Valid cert found: [ac708439648371fd8cfe27d0da9e88b31e23b0258859fda24acba08a6f7d8954]
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [NOTICE] [2.dnscrypt-cert.fr.dnscrypt.org.] Valid cert found: [ac708439648371fd8cfe27d0da9e88b31e23b0258859fda24acba08a6f7d8954]
Jan 15 09:15:30 RT-AC68U dnscrypt-proxy: [2018-01-15 08:15:30] [-] [FATAL] listen udp 127.0.0.1:53: bind: address already in use
I created /jffs/configs/dnsmasq.conf.add (didn't exist?) and added
Code:
no-resolv
server=127.0.0.1#65053
which appears in /etc/dnsmasq.conf after a reboot. However, when starting dnscrypt-proxy, I still get the same fatal error:
Any suggestions?