Advertisement
Guest User

Untitled

a guest
Apr 21st, 2024
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. [service]
  2. client_id_preference = 'mac'
  3. cache_enable = true
  4. cache_size = 4096
  5. cache_serve_stale = false
  6.  
  7. [listener]
  8. [listener.0]
  9. ip = '0.0.0.0'
  10. port = 53
  11.  
  12. [listener.0.policy]
  13. name = 'Failover DNS'
  14. networks = [
  15. { 'network.0' = ['upstream.0', 'upstream.1', 'upstream.2']}
  16. ]
  17.  
  18. [network]
  19. [network.0]
  20. name = 'All Networks'
  21. cidrs = ['0.0.0.0/0']
  22.  
  23. [upstream]
  24. [upstream.0]
  25. name = "Control D DOH3"
  26. type = 'doh3'
  27. endpoint = 'https://dns.controld.com/YOUR-RESOLVER-ID'
  28. bootstrap_ip = '76.76.2.22'
  29. timeout = 3000
  30.  
  31.  
  32. [upstream.1]
  33. name = 'Cloudflare DOH3'
  34. type = 'doh3'
  35. endpoint = 'https://dns.cloudflare.com/dns-query'
  36. bootstrap_ip = '1.1.1.1'
  37. timeout = 3000
  38.  
  39. [upstream.2]
  40. name = 'Quad9 DOH'
  41. type = 'doh'
  42. endpoint = 'https://dns11.quad9.net/dns-query'
  43. bootstrap_ip = '9.9.9.11'
  44. timeout = 3000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement