DNS resolver choice affects privacy, performance and operational security for every connected device. This comparison between DNS.SB vs Google Public DNS delivers reproducible benchmarks, legal and logging analysis, encryption support (DoH/DoT/DoQ), and clear configuration steps for Windows, macOS, Linux, Android, iOS and common routers. The goal: enable a confident selection based on measurable latency, jurisdictional risk and feature set — with methods to reproduce tests locally.
What DNS.SB and Google Public DNS Are
DNS.SB is a privacy-focused public resolver project that emphasizes transparency and minimal logging. Details on endpoints and status are published on the official site and project pages. Google Public DNS is one of the largest global public resolvers, widely deployed and integrated with Google infrastructure; it focuses on scale, reliability and rapid response times.
Core purpose and positioning
- DNS.SB: positioned for users prioritizing privacy and open-source tooling. Public documentation focuses on minimal retention and community trust.
- Google Public DNS: designed for large-scale performance and global coverage, with documented logging practices for diagnostics and abuse prevention.
Primary resolver endpoints and protocols
- Google Public DNS: IPv4 8.8.8.8 and 8.8.4.4; DNS-over-HTTPS endpoint at https://dns.google/dns-query and DNS-over-TLS at dns.google port 853. Official docs: Google Public DNS privacy & docs.
- DNS.SB: official resolver list and endpoints are maintained on the project site; verify current addresses at DNS.SB.
Privacy, Jurisdiction and Logging: What Changes in England
DNS operator choice determines who can be served data in legal processes, and how long query metadata may be retained.
Jurisdiction, legal risk and access to logs
- Google Public DNS: operated by Google LLC (US jurisdiction); global operations make it subject to US legal process. Google publishes transparency and law enforcement request reports. See detailed policy: Google DNS privacy.
- DNS.SB: governance and hosting vary by operator. Public statements emphasize minimal retention but users should verify current hosting jurisdictions via the official site before assuming protections. For clarity on UK data access frameworks and interception, review the ICO guidance: UK Information Commissioner's Office.
Logging policies and retention comparison (2025–2026)
- Logging scope: Google logs truncated client IP data for troubleshooting and abuse mitigation; retention windows are documented. DNS.SB publicly states limited retention for immediate debugging, but specifics vary by time and operator — audit the project's transparency reports.
- Retention windows: Google historically retains diagnostic data for limited periods; DNS.SB aims for shorter retention but requires independent verification. For auditable expectations, consult both provider pages and independent audits where available.

A core gap in many public guides is reproducibility. The following methodology allows local replication and transparent comparison.
Benchmark methodology (reproducible)
- Use RIPE Atlas probes or a combination of local machines across geographic points in England (London, Manchester, Edinburgh) and one on-premise point in Europe for cross-border comparison. RIPE Atlas docs: RIPE Atlas documentation.
- Run three measurement sets over two weeks at randomized times: peak (18:00–22:00), off-peak (02:00–06:00) and midday (11:00–14:00).
- Commands: use
dig +short @resolver example.com A for raw lookups and curl --silent --output /dev/null --write-out "%{time_total}/n" 'https://dns.google/resolve?name=example.com' for DoH timing. Replace resolver address as needed.
- Track metrics: median latency (ms), 95th percentile, failure rate (NXDOMAIN, timeouts), and TLS handshake time for DoH/DoT.
- Archive raw logs and publish scripts on a Git repository for verifiability. For global performance baselines consult DNSPerf: DNSPerf.
Summary of typical results (2025–2026 observed patterns)
- Median latency (England region): Google Public DNS often shows lower median latency in urban UK locations due to widespread Google caches and anycast footprint. DNS.SB can be competitive in specific locations, especially when local resolvers or partner nodes exist.
- Reliability: Google reports high uptime and global redundancy. DNS.SB reliability depends on operator node count and monitoring.
- Encrypted protocol performance: DoH/DoT handshake overheads add a small initial delay; persistent connections reduce subsequent latency.
| Feature / Metric |
DNS.SB |
Google Public DNS |
| Primary IPv4 (verify on site) |
See dns.sb |
8.8.8.8 / 8.8.4.4 |
| DoH endpoint |
Often available; verify project page |
https://dns.google/dns-query |
| DoT support |
Varies by node |
dns.google:853 |
| DNS over QUIC (DoQ) |
Limited / node-dependent |
Experimental / evolving |
| Median latency (England, ms) |
12–40* |
8–30* |
| 95th percentile latency (ms) |
40–120* |
30–90* |
| Uptime (reported) |
Node-dependent |
99.99%+ |
| Logging policy |
Minimal stated; verify |
Documented diagnostics retention |
| DNSSEC validation |
Supported if configured |
Supported |
| Blocking / Filters |
Community lists on some nodes |
No built-in ad-blocking |
*Numbers are illustrative based on multi-site tests in 2025–2026; perform local tests for current values.
Security and Protocols: DoH, DoT and DNSSEC Practicalities
Encrypted DNS protocols matter for privacy on untrusted networks. Implementations differ and real-world support varies.
Protocol support and practical implications
- DoH (DNS over HTTPS): commonly supported; hides DNS queries in HTTPS traffic. Google provides a well-documented DoH endpoint. References: RFC 8484 (DoH).
- DoT (DNS over TLS): designed for dedicated TLS channel on port 853. RFC: RFC 7858 (DoT).
- DoQ (DNS over QUIC): reduces connection setup latency for encrypted DNS; refer to RFC 9250 (DoQ) for protocol details.
DNSSEC handling and validation
Both resolvers support DNSSEC validation. For security-sensitive deployments, configure stub resolvers or local validating resolvers and verify chain validation with dig +dnssec tests.
Configuration steps include OS-level and router-level changes. Replace resolver IPs and endpoints after verifying them on the provider pages.
Windows 10/11
- Open Settings > Network & internet > Change adapter options.
- Right-click active adapter > Properties > Internet Protocol Version 4 (TCP/IPv4) > Properties.
- Set Preferred DNS server to the resolver IPv4 and Alternate to the secondary. For DoH, enable system DoH (Windows 11 supports custom DoH providers) or install a DoH-capable client such as Stubby or cloudflared and point system resolver to localhost.
MacOS
- System Settings > Network > Advanced > DNS. Add resolver addresses.
- For system-wide DoH, configure a local DoH client and add 127.0.0.1 as the resolver.
Linux (example using resolv.conf and systemd-resolved)
- For systemd-resolved:
sudo resolvectl dns eth0 8.8.8.8 (replace with DNS.SB address if used).
- For DoH/DoT, install a local forwarder (e.g.,
cloudflared, stubby) and point /etc/resolv.conf at 127.0.0.1.
Android
- Settings > Network & internet > Advanced > Private DNS. Enter provider hostname for DoT (Google:
dns.google) or select automatic. For DoH use apps supporting DoH.
IOS
- Settings > Wi‑Fi > Info (i) > Configure DNS > Manual. Add resolver addresses. For DoH, use supported VPN-like DNS apps (e.g., AdGuard or nextDNS client).
Router (OpenWrt example)
- Update DHCP DNS options via UI or
uci set network.lan.dns='8.8.8.8 8.8.4.4' && uci commit && /etc/init.d/network restart' replacing with DNS.SB addresses as required.
Reverting changes
- Revert to ISP defaults by selecting automatic or removing custom DNS addresses. Keep a note of original settings before making changes.
- Example
dig test: dig @8.8.8.8 example.com A +time=2 +tries=1.
- Example DoH timing:
curl -w "%{time_namelookup} %{time_connect} %{time_total}/n" -o /dev/null "https://dns.google/resolve?name=example.com".
- Publish test scripts and raw outputs in a public Git repo for independent verification (recommend hosting on GitHub with clear README and RIPE Atlas probes list).
Independent Audits, Transparency and Gaps
- Google provides public documentation and transparency reports. DNS.SB's transparency depends on community reporting and the operator's disclosure. Independent security audits are uncommon for small resolvers; users should prefer resolvers with published audits when possible.
FAQs
What is the main privacy difference between DNS.SB and Google Public DNS?
Privacy differences hinge on jurisdiction and retention. Google publicly documents diagnostic retention and operates under US jurisdiction. DNS.SB emphasizes minimal retention, but users should verify current operator hosting and published retention statements on the official site.
Are DNS queries to Google Public DNS logged permanently?
Google documents retention windows for diagnostic data and provides transparency reporting. Queries are not published as raw records, but diagnostic metadata may be retained temporarily for abuse prevention; see Google DNS privacy.
Does DNS.SB support encrypted DNS (DoH/DoT/DoQ)?
Support varies by DNS.SB node. Confirm available encrypted endpoints on DNS.SB before configuring.
Will switching resolvers break services like Google or Microsoft authentication?
Generally no. Switching resolvers only affects name resolution. However, DNS-based allowlists, split-horizon DNS or enterprise policies may require coordination with IT administrators.
How to measure resolver latency from a home connection in England?
Use dig against resolver addresses, schedule tests across different times of day, and summarize median and 95th percentile values. Optionally use RIPE Atlas for consistent multi-point testing: RIPE Atlas docs.
Are there built-in ad-blocking features in Google Public DNS or DNS.SB?
Google Public DNS does not provide ad-blocking. Some DNS.SB nodes may offer community lists or filtering, but functionality depends on the operator.
How to ensure DNSSEC validation after changing resolvers?
Run dig +dnssec example.com and inspect the AD (authenticated data) flag or use validation tools like delv/drill to confirm signature validation.
If a problem occurs, how to revert to ISP DNS quickly?
Restore automatic settings in the OS network panel or re-enable DHCP-provided DNS on the router. Keeping a screenshot or notes of original values speeds reversion.
Conclusion
Resolver choice balances privacy, latency and operational trust. Google Public DNS delivers global scale, consistent uptime and broad protocol support but carries US jurisdiction implications. DNS.SB centers privacy and transparency but requires active verification of node locations, retention policies and encrypted endpoint availability. For users in England prioritizing privacy, the pragmatic approach is: test both with the provided reproducible methodology, audit provider pages for current retention and encryption endpoints, and select the resolver that meets the required trade-off between latency and data exposure.
For technical teams, implement local validation (DNSSEC), run periodic benchmarks with RIPE Atlas or local probes, and document resolver choices in incident and compliance procedures. For non-technical users, prefer resolvers with clear documentation and community trust, and consider using DoH/DoT-capable clients to protect DNS on untrusted networks.