-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for DoT to DNS probes #643
Conversation
Hmm, I can see this being confusing if it silently doesn't do anything when UDP is asked for. Docs also need updating. |
@brian-brazil do you want me to error out when UDP and DoT is chosen? I’ll update the docs shortly. |
An error would do it. |
0210007
to
df4e7b5
Compare
@brian-brazil Added error case, and docs. |
CONFIGURATION.md
Outdated
@@ -153,6 +153,9 @@ tls_config: | |||
|
|||
[ transport_protocol: <string> | default = "udp" ] # udp, tcp | |||
|
|||
# Whether to use DNS over TLS. This only makes sense with TCP transport protocol. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This only works with TCP.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Signed-off-by: André Cruz <[email protected]>
Thanks! |
This adds a new DNS probe option
dns_over_tls
to enable DoT on DNS probes.