mirror of
https://github.com/pi-hole/docs.git
synced 2026-02-15 07:26:03 +00:00
Merge branch 'master' into new/dnsmasq_warnings
This commit is contained in:
@@ -47,7 +47,7 @@ You can easily imagine even longer chains for subdomains as the query process co
|
||||
|
||||
- Benefit: Privacy - as you're directly contacting the responsive servers, no server can fully log the exact paths you're going, as e.g. the Google DNS servers will only be asked if you want to visit a Google website, but not if you visit the website of your favorite newspaper, etc.
|
||||
|
||||
- Drawback: Traversing the path may be slow, especially for the first time you visit a website - while the bigger DNS providers always have answers for commonly used domains in their cache, you will have to transverse the path if you visit a page for the first time. The first request to a formerly unknown TLD may take up to a second (or even more if you're also using DNSSEC). Subsequent requests to domains under the same TLD usually complete in `< 0.1s`.
|
||||
- Drawback: Traversing the path may be slow, especially for the first time you visit a website - while the bigger DNS providers always have answers for commonly used domains in their cache, you will have to traverse the path if you visit a page for the first time. The first request to a formerly unknown TLD may take up to a second (or even more if you're also using DNSSEC). Subsequent requests to domains under the same TLD usually complete in `< 0.1s`.
|
||||
Fortunately, both your Pi-hole as well as your recursive server will be configured for efficient caching to minimize the number of queries that will actually have to be performed.
|
||||
|
||||
## Setting up Pi-hole as a recursive DNS server solution
|
||||
|
||||
57
docs/main/faq.md
Normal file
57
docs/main/faq.md
Normal file
@@ -0,0 +1,57 @@
|
||||
## Frequently Asked Questions
|
||||
|
||||
This is a collection of questions that were asked repeatedly on discourse or github.
|
||||
|
||||
### Odd random character queries in Pi-hole's query logs
|
||||
|
||||
You see three queries containing only random strings, sometimes with the local domain suffix, like
|
||||
|
||||
```bash
|
||||
yfjmdpisrvyrnq
|
||||
attxnwheeeuiad
|
||||
nskywzjbpj
|
||||
```
|
||||
|
||||
**Solution:**
|
||||
|
||||
This happens when using Chrome-based browsers. Chrome tries to find out if someone is messing up with the DNS (i.e. wildcard DNS servers to catch all domains). Chrome does this by issuing DNS requests to randomly generated domain names with bewteen 7 and 15 characters
|
||||
|
||||
In a normal setup this results in a “No such name” response from your DNS server. If the DNS server you use has a wildcard setup, each of these requests will result in a response (which is normally even the same) so Chrome knows that there is someone messing around with DNS responses.
|
||||
|
||||
Link to [Chromium's source code](https://chromium.googlesource.com/chromium/src/+/refs/heads/main/chrome/browser/intranet_redirect_detector.cc#132) explaining the function.
|
||||
|
||||
### Pi-hole update fails due to repository changed it's 'Suite' value
|
||||
|
||||
This happens after a manual OS upgrade to the next major version on deb based systems. A typical message is
|
||||
|
||||
```bash
|
||||
Repository 'http://archive.raspberrypi.org/debian buster InRelease' changed its 'Suite' value from 'stable' to 'oldstable'
|
||||
```
|
||||
|
||||
**Solution:**
|
||||
|
||||
```bash
|
||||
sudo apt-get update --allow-releaseinfo-change
|
||||
```
|
||||
|
||||
### Pi-hole's gravity complains about invalid IDN domains
|
||||
|
||||
During a gravity update, Pi-hole complains about some invalid Internationalized Domain Names (IDN) domains
|
||||
|
||||
```bash
|
||||
Sample of invalid domains:
|
||||
- test.中国
|
||||
- test.рф
|
||||
- test.भारत
|
||||
- e-geräteundhaus.com
|
||||
- rëddït.com
|
||||
```
|
||||
|
||||
**Solution:**
|
||||
|
||||
Ask the list maintainer to convert the IDNs to their punycode representation.
|
||||
|
||||
Internationalizing Domain Names in Applications (IDNA) was conceived to allow client-side use of language-specific characters in domain names without requiring any existing infrastructure (DNS servers, mall servers, etc., including associated protocols) to change. Accordingly, the corresponding original [RFC 3490](https://tools.ietf.org/html/rfc3490) clearly states that IDNA is employed at application level, not on the server side.
|
||||
Hence, DNS servers never see any IDN domain name, which means DNS records do not store IDN domain names at all, only their [Punycode](https://en.wikipedia.org/wiki/Punycode) representations.
|
||||
|
||||
{!abbreviations.md!}
|
||||
@@ -1,7 +1,7 @@
|
||||
Diese Anleitung wurde für FRITZ!OS 07.21 geschrieben, sollte jedoch auch mit anderen Firmware-Versionen funktionieren. Ziel ist es, grundlegende Prinzipien für ein reibungsloses Zusammenspiel zwischen Fritz!Box und Pi-hole zu verdeutlichen.
|
||||
|
||||
> Hinweis:
|
||||
Es gibt nicht nur **die eine Art**, eine funktionierende DNS System aufzusetzen. Konfiguriert euer Netzwerk nach euren Bedürfnissen.
|
||||
Es gibt nicht nur **die eine Art**, ein funktionierendes DNS-System aufzusetzen. Konfiguriert euer Netzwerk nach euren Bedürfnissen.
|
||||
Diese Anleitung wurde für IPv4 geschrieben und muss für IPv6 Netwerke entsprechend angepasst werden.
|
||||
|
||||
### Erweiterte Ansicht aktivieren
|
||||
|
||||
@@ -173,6 +173,7 @@ nav:
|
||||
- 'Router setup':
|
||||
- 'Fritz!Box (EN)': routers/fritzbox.md
|
||||
- 'Fritz!Box (DE)': routers/fritzbox-de.md
|
||||
- 'FAQ': main/faq.md
|
||||
- 'Community Projects': main/projects.md
|
||||
|
||||
extra:
|
||||
|
||||
Reference in New Issue
Block a user