mirror of
https://github.com/pi-hole/docs.git
synced 2024-12-06 19:27:12 +01:00
@@ -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!}
|
||||
@@ -172,6 +172,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