summaryrefslogtreecommitdiff
path: root/content/guide/stuff-about-dns-and-ip.md
diff options
context:
space:
mode:
authorNantha Sorubakanthan <nantha@mielota.com>2025-11-16 18:45:02 +0100
committerNantha Sorubakanthan <nantha@mielota.com>2025-11-16 18:45:02 +0100
commit573d3358b3fb0ddfba64c601becaaf83de6f1b31 (patch)
tree5f026a6bf76419ca530beab34894a8ef8606014b /content/guide/stuff-about-dns-and-ip.md
parent47e1836202ef3b115d8da5edd090349d062a765a (diff)
remove dns resolver
Diffstat (limited to 'content/guide/stuff-about-dns-and-ip.md')
-rw-r--r--content/guide/stuff-about-dns-and-ip.md17
1 files changed, 1 insertions, 16 deletions
diff --git a/content/guide/stuff-about-dns-and-ip.md b/content/guide/stuff-about-dns-and-ip.md
index 2713db2..1412c41 100644
--- a/content/guide/stuff-about-dns-and-ip.md
+++ b/content/guide/stuff-about-dns-and-ip.md
@@ -84,7 +84,7 @@ This is possible by setting DNS records. You set "A" record that bind the domain
Domain names are cool and convenient. It would be a pain to remember the IP addresses of my favourite websites.
-You also have subdomains. Like [dns.mielota.com](https://dns.mielota.com), `dns` is a subdomain of [mielota.com](/). With the help of a webserver like [NGINX](https://nginx.org) you can ask your server to serve different kind of content depending on the domain/subdomains.
+You also have subdomains. Like [ads.google.com](https://ads.google.com), `ads` is a subdomain of [google.com](/). With the help of a webserver like [NGINX](https://nginx.org) you can ask your server to serve different kind of content depending on the domain/subdomains.
You also have "CNAME" records, they act like _alias_. "MX" records are for _Mail Exchange_ and "TXT" store some data.
@@ -130,21 +130,6 @@ dig example.com @your_custom_dns
By doing so you can stop your computer/browser/phone from finding websites containing ads, malware, or [unwanted content](https://denshi.org/antiporn).
-For example ask for the IP of `ads.google.com` to the 8.8.8.8 DNS server:
-
-```sh
-dig +short ads.google.com @8.8.8.8
-```
-
-You got the IP address right ? Now do the same with my DNS server:
-
-```sh
-dig +short ads.google.com @dns.mielota.com # or put the IPv4 of my server
-```
-
-You will get 0.0.0.0
-
-
Here are some useful links if you want to use blocky on your server/computer.
- [Blocky DNS](https://0xerr0r.github.io/blocky/latest/)