i need to have a lot of dns in stubby looked for documentation and failed to find info useful for having at least 5 dns providers in stubby (d.o.t)
only found this, would like to have: google, cloudflare, adguard, and whatever i would like to have, any tought?
DoT provider
Stubby is configured with Cloudflare DNS by default. You can change it to Google DNS or any other DoT provider including your own DoT server with Nginx. Use resolvers supporting DNSSEC validation if necessary. Specify several resolvers to improve fault tolerance.
Configure DoT provider while uci -q delete stubby.@resolver[0]; do :; done uci add stubby resolver uci set stubby.@resolver[-1].address="2001:4860:4860::8888" uci set stubby.@resolver[-1].tls_auth_name="dns.google" uci add stubby resolver uci set stubby.@resolver[-1].address="2001:4860:4860::8844" uci set stubby.@resolver[-1].tls_auth_name="dns.google" uci add stubby resolver uci set stubby.@resolver[-1].address="8.8.8.8" uci set stubby.@resolver[-1].tls_auth_name="dns.google" uci add stubby resolver uci set stubby.@resolver[-1].address="8.8.4.4" uci set stubby.@resolver[-1].tls_auth_name="dns.google" uci commit stubby /etc/init.d/stubby restart
source: https://openwrt.org/docs/guide-user/services/dns/dot_dnsmasq_stubby