Closed junkurihara closed 9 months ago
OpenDNS has some resolvers that accepts connections on port 443 and works well with TCP:
208.67.222.222:443 208.67.220.220:443
Really good for a firewalled environment. My mobile phone provider blocks UDP ports other than 53 (for avoiding Torrent), DNSCrypt with anonymized relays doesn't work well here when I use USB Thetering, but doh-auth-proxy does.
Now the develop
branch just supported TCP bootstrap DNS resolver with an arbitrary port. To explicitly specify the protocol and port, we need to set the resolver as tcp://1.1.1.1:53
in toml file. But existing format without protocol and port, e.g., 1.1.1.1
, still works as an alias of udp://1.1.1.1:53
.
I will ship this in the next patch release (not a breaking change due to the alias).
@junkurihara
Thanks a lot, I will test later.
Originally posted by @przemyslaw0 in https://github.com/junkurihara/doh-auth-proxy/issues/43#issuecomment-1885725274