## 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 between 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 its '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. ### In which order are locally defined DNS records used? **Answer:** The order of locally defined DNS records is: 1. The device's host name and `pi.hole` 2. Configured in a config file in `/etc/dnsmasq.d/` 3. Read from `/etc/hosts` 4. Read from the "Local (custom) DNS" list (stored in `/etc/pihole/custom.list`) Only the first record will trigger an address-to-name association.