diff options
Diffstat (limited to 'content/guide')
| -rw-r--r-- | content/guide/stuff-about-dns-and-ip.md | 17 |
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/) |
