diff options
| -rw-r--r-- | stuff/index.html | 2 | ||||
| -rw-r--r-- | stuff/mullvad-dot.html (renamed from stuff/cloudflare-dot.html) | 9 |
2 files changed, 5 insertions, 6 deletions
diff --git a/stuff/index.html b/stuff/index.html index 658b962..dbe2e86 100644 --- a/stuff/index.html +++ b/stuff/index.html @@ -91,7 +91,7 @@ <nav> <ul> <li> - <a href="cloudflare-dot.html">DNS over TLS (DoT) with Cloudflare</a> + <a href="mullvad-dot.html">DNS over TLS (DoT) with mullvad</a> <span class="date">2026-04-14</span> </li> <li> diff --git a/stuff/cloudflare-dot.html b/stuff/mullvad-dot.html index af4a1c2..faea8f7 100644 --- a/stuff/cloudflare-dot.html +++ b/stuff/mullvad-dot.html @@ -81,20 +81,19 @@ </head> <body> -<h1>DNS over TLS (DoT) with cloudflare</h1> +<h1>DNS over TLS (DoT) with mullvad</h1> <p>This guide assumes that you're running a systemd-based operating system</p> -<h2>1. Configure systemd-resolved to use cloudflare's DNS server</h2> +<h2>1. Configure systemd-resolved to use mullvad's DNS server</h2> <p>Add the following block to your <code>/etc/systemd/resolved.conf</code></p> <pre><code class="language-toml"><span class="toml-key">[Resolve]</span> -DNS=1.1.1.3#family.cloudflare-dns.com 2606:4700:4700::1113#family.cloudflare-dns.com -FallbackDNS=1.0.0.3#family.cloudflare-dns.com 2606:4700:4700::1003#family.cloudflare-dns.com +DNS=194.242.2.4#base.dns.mullvad.net +FallbackDNS=194.242.2.2#dns.mullvad.net DNSOverTLS=yes DNSSEC=yes Domains=~. </code></pre> -<p><code>1.1.1.3</code> and <code>1.0.0.3</code> are part of cloudflare's family-friendly DNS servers which block malware and adult contents. You can also use the default <code>1.1.1.1</code> DNS server for DoT.</p> <p>Once the changes are saved, restart <code>systemd-resolved</code></p> <pre><code class="language-shell">sudo systemctl restart systemd-resolved </code></pre> |
