DoH Configuration Examples
This document provides detailed examples of DNS over HTTPS configurations.
Browser Configuration Examples
Firefox Configuration
For detailed Firefox configuration steps, please check our How to Set Up DNS over HTTPS in Firefox guide.
Quick setup:
- Open Firefox Settings
- Search for “DNS”
- Under “Network Settings”, click “Settings”
- Select “Enable DNS over HTTPS”
- Choose “Cloudflare” or “Custom”
- If selecting custom, enter the following address:
https://1.1.1.1/dns-query
Chrome Configuration
For detailed Chrome configuration steps, please check our How to Set Up DNS over HTTPS in Chrome guide.
Quick setup:
- Open Chrome Settings
- Search for “Secure DNS”
- Select “Use secure DNS”
- Choose “Use custom”
- Enter the following address:
https://dns.google/dns-query
System Configuration Examples
Windows Configuration
For detailed Windows configuration steps, please check our How to Set Up DNS over HTTPS in Windows guide.
Quick setup:
- Open Windows Settings
- Go to “Network & Internet” > “Network and Sharing Center”
- Click on the current network connection
- Click “Properties”
- Double-click “Internet Protocol Version 4 (TCP/IPv4)”
- Select “Use the following DNS server addresses”
- Enter the following addresses:
1.1.1.1 1.0.0.1
macOS Configuration
For detailed macOS configuration steps, please check our How to Set Up DNS over HTTPS in macOS guide.
Quick setup:
- Open System Preferences
- Click “Network”
- Select the current network connection
- Click “Advanced”
- Select the “DNS” tab
- Click ”+” to add the following servers:
1.1.1.1 1.0.0.1
Linux Configuration
For detailed Linux configuration steps, please check our How to Set Up DNS over HTTPS in Linux guide.
systemd-resolved Configuration
# Edit configuration file
sudo nano /etc/systemd/resolved.conf
# Add the following content
[Resolve]
DNS=1.1.1.1 1.0.0.1
DNSOverTLS=yes
# Restart service
sudo systemctl restart systemd-resolved
dnscrypt-proxy Configuration
# Edit configuration file
sudo nano /etc/dnscrypt-proxy/dnscrypt-proxy.toml
# Add the following content
server_names = ['cloudflare', 'google']
listen_addresses = ['127.0.0.1:53']
Mobile Device Configuration Examples
iOS Configuration
For detailed iOS configuration steps, please check our How to Set Up DNS over HTTPS in iOS guide.
Quick setup:
- Open Settings
- Go to “Wi-Fi”
- Tap the current network
- Tap “Configure DNS”
- Select “Manual”
- Add the following servers:
1.1.1.1 1.0.0.1
Android Configuration
For detailed Android configuration steps, please check our How to Set Up DNS over HTTPS in Android guide.
Quick setup:
- Open Settings
- Go to “Network & internet”
- Tap “Private DNS”
- Select “Private DNS provider hostname”
- Enter the following address:
dns.google
Command-line Tool Configuration Examples
cloudflared Configuration
# Install cloudflared
# macOS
brew install cloudflared
# Linux
sudo apt install cloudflared
# Configure DoH
cloudflared proxy-dns --port 53 --upstream https://1.1.1.1/dns-query
dnscrypt-proxy Configuration
# Install dnscrypt-proxy
# macOS
brew install dnscrypt-proxy
# Linux
sudo apt install dnscrypt-proxy
# Edit configuration file
sudo nano /etc/dnscrypt-proxy/dnscrypt-proxy.toml
# Add the following content
server_names = ['cloudflare', 'google']
listen_addresses = ['127.0.0.1:53']
Verify Configuration
Using dig Command
# Test Cloudflare DNS
dig @1.1.1.1 example.com
# Test Google DNS
dig @8.8.8.8 example.com
Using Browser Developer Tools
- Open browser developer tools
- Go to the “Network” tab
- Check “Preserve log”
- Visit any website
- Check if DNS queries use HTTPS
Using Online Tools
- Visit DNS Query Test
- Enter the domain to test
- View DNS query results
Troubleshooting
Common Issues
-
DNS Query Failure
# Check network connectivity ping 1.1.1.1 # Check DNS service dig @1.1.1.1 example.com
-
Performance Issues
# Test DNS response time time dig @1.1.1.1 example.com
-
Configuration Issues
# Check DNS configuration cat /etc/resolv.conf
Next Steps
- Server List - Choose the right DoH server
- Security Best Practices - Ensure secure configuration
- Tool Recommendations - Use appropriate tools
- FAQ - Resolve configuration issues