Open hanjo opened 3 years ago
Yes this is quite peculiar and does have something to do with dual-stack mode IPv6, though it doesn't actually bind dual stack when providing just the IPv6 so I suppose I have to look into what is going on here... You can workaround the issue by disabling dual-stack mode IPv6:
# echo 1 > /proc/sys/net/ipv6/bindv6only
Thansk for pointing out the workaround - seems to be working now:
$ sudo netstat -lnp | grep stubby
tcp 0 0 0.0.0.0:53 0.0.0.0:* LISTEN 645/stubby
tcp6 0 0 :::53 :::* LISTEN 645/stubby
udp 0 0 0.0.0.0:53 0.0.0.0:* 645/stubby
udp6 0 0 :::53 :::* 645/stubby
Hi,
I'd like Stubby do listen on all my interfaces/addresses, so I've configured
This however doesn't seem to work with TCP on IPv6, the daemon doesn't seem to listen:
However, when I put in a real IPv6 address in the config:
it works:
I assume this is a bug, but maybe my configuration above for listening on all IPv6 addresses is not correct.