Hi,
I recently noticed that Tor binds to UDP sockets when configured as a relay on FreeBSD.
root@:~ # sockstat -46l
USER COMMAND PID FD PROTO LOCAL ADDRESS FOREIGN ADDRESS
_tor tor 1344 5 tcp4 *:9001 *:*
_tor tor 1344 6 tcp6 *:9001 *:*
_tor tor 1344 8 udp4 *:* *:*
_tor tor 1344 9 udp6 *:* *:*
I only have the following two lines in torrc:
SOCKSPort 0
ORPort 9001
My understanding is that Tor only binds to UDP when configured to provide DNS, but I don’t have DNSPort set.
So why is Tor binding to UDP sockets?
Thanks!