Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| tech_notes:dns [2024-05-18 Sat wk20 17:13] – baumkp | tech_notes:dns [2025-08-09 Sat wk32 11:11] (current) – [Public DNS providers] baumkp | ||
|---|---|---|---|
| Line 21: | Line 21: | ||
| - | There are a number of levels of DNS. | + | There are a number of levels of DNS, the system interrogates in the following order: |
| - | - host file, this is a basic file on each computer where | + | - host file, this is a basic file on each computer |
| + | -The usual automatic entries are: | ||
| + | -The local machine host name and ip address | ||
| + | -The loop back address | ||
| + | - Additional manual entries can be added for any host name and IP address. | ||
| - local dns resolver | - local dns resolver | ||
| - machine based | - machine based | ||
| + | - many operating systems have a local caching DNS server installed to improve DNS performance. | ||
| - LAN based | - LAN based | ||
| - | | + | |
| + | - public | ||
| - authoritative domain resolver | - authoritative domain resolver | ||
| + | =====Public DNS providers===== | ||
| + | - [[https:// | ||
| + | - IPv4 (filtered) | ||
| + | - 9.9.9.9 | ||
| + | - 149.112.112.112 | ||
| + | - IPv6 (filtered) | ||
| + | - 2620:fe::fe | ||
| + | - 2620:fe::9 | ||
| + | - [[https:// | ||
| + | - [[https:// | ||
| + | - IPv4 | ||
| + | - 208.67.222.222 | ||
| + | - 208.67.220.220 | ||
| + | - IPv4 (filtered family shield, not-configurable) | ||
| + | - 208.67.222.123 | ||
| + | - 208.67.220.123 | ||
| + | - IPv6 (filtered) | ||
| + | - 2620: | ||
| + | - 2620: | ||
| + | - IPv6 (unfiltered) | ||
| + | - 2620: | ||
| + | - 2620: | ||
| + | - [[https:// | ||
| + | - IPv4 (unfiltered) | ||
| + | - 1.1.1.1 | ||
| + | - 1.0.0.1 | ||
| + | - IPv6 (unfiltered) | ||
| + | - 2620: | ||
| + | - 2620: | ||
| + | - See [[https:// | ||
| + | - [[https:// | ||
| + | - IPv4 (unfiltered) | ||
| + | - 8.8.8.8 | ||
| + | - 8.8.4.4 | ||
| + | - IPv6 (unfiltered) | ||
| + | - 2001: | ||
| + | - 2001: | ||
| + | =====Linux DNS Setup===== | ||
| + | The local OS DNS servers are specified in ''/ | ||
| + | The bind9 file that configs the DNS forwarders is ''/ | ||
| + | ++++/ | ||
| + | < | ||
| + | //quad9 with basic malware blocking, no ECS | ||
| + | 9.9.9.9; | ||
| + | 149.112.112.112; | ||
| + | // | ||
| + | //1.1.1.1; | ||
| + | //1.0.0.1; | ||
| + | // | ||
| + | 1.1.1.2; | ||
| + | 1.0.0.2; | ||
| + | //Opendns basic | ||
| + | 208.67.222.222; | ||
| + | 208.67.220.220; | ||
| + | };</ | ||
| + | ++++ | ||
| + | |||
| + | The kea dhcp configuration has the following related to DNS and gateway setup. | ||
| + | ++++dhcpv4.conf| | ||
| + | <code yaml> | ||
| + | { | ||
| + | " | ||
| + | |||
| + | // There are no relays in this network, so we need to tell Kea that this subnet | ||
| + | // is reachable directly via the specified interface. | ||
| + | " | ||
| + | |||
| + | " | ||
| + | { | ||
| + | " | ||
| + | } | ||
| + | ], | ||
| + | " | ||
| + | { | ||
| + | " | ||
| + | " | ||
| + | }, | ||
| + | { | ||
| + | " | ||
| + | " | ||
| + | } | ||
| + | ],</ | ||
| + | ++++ | ||
| + | |||
| + | =====DNS Performance Checker===== | ||
| + | A good resource for checking DNS performance is from [[https:// | ||
| + | When run on 2025-08-09 basic performance rankings with average cached response times are: | ||
| + | 1. QUAD9-AS-1, US (3ms) | ||
| + | 1. CLOUDFLARENET, | ||
| + | 2. CISCO-UMBRELLA, | ||
| + | 3. GOGGLE, US (47ms) | ||
| <- tech_notes: | <- tech_notes: | ||