OpenWRT-- bind: address already in use #3163
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
|
What you are seeing is expected.
The So there are really two possible setups:
Also make sure:
Otherwise client IPs will still be hidden or anonymized. So in short: this is not something dnscrypt-proxy can recover when dnsmasq is in front of it; the original client IP is already lost at that point. |
Beta Was this translation helpful? Give feedback.
-
|
Thank you for the answer! |
Beta Was this translation helpful? Give feedback.
What you are seeing is expected.
dnscrypt-proxycan only display the address of the client that is directly connected to it. In your current setup, that client isdnsmasq, so the Monitoring UI shows127.0.0.1(or the router local address), not the original LAN host.The
bind: address already in useerror is also expected ifdnsmasqis already listening on port 53. Both services cannot bind to0.0.0.0:53at the same time.So there are really two possible setups:
dnsmasqlistens on:53and forwards todnscrypt-proxy- works fine - but dnscrypt-proxy only sees dnsmasq as the clientdnscrypt-proxylistens on:53directly - then the Monitoring UI can show real LAN client IPs - but dnsmasq …