Last active
December 19, 2024 20:32
-
-
Save fullmetalbrackets/b0a62b13e4c76ebcf6c1957087ab500c to your computer and use it in GitHub Desktop.
Pi-Hole + Unbound using Quad 9 w/ DNS over TLS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.reddit.com/r/pihole/comments/unygz9/struggiling_to_find_unbound_doh_setup_guide/i8bqf37 | |
# These lines added to /etc/unbound/unbound.conf.d/pi-hole.conf will configure Unbound as a forwarding resolver to Quad9 using DoT | |
# Note: For my own purposes I substituted 9.9.9.9 with 9.9.9.11 which is Secured w/ECS: Malware blocking, DNSSEC Validation, ECS enabled | |
tls-cert-bundle: /etc/SSL/certs/ca-certificates.crt | |
forward-zone: | |
name: "." | |
forward-tls-upstream: yes | |
# Quad 9 | |
forward-addr: 9.9.9.11@853#dns.quad9.net | |
forward-addr: 149.112.112.11@853#dns.quad9.net |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment