Android enforces DNS over IPV6 “first” to Google Servers as Backup DNS Solution. Google wants to catch EVERY DNS request for their DNS Logging (Spyware)! If any IPV6 DNS Google Server answere’s Android stops DNS over IPV4 of LAN to prevent AD’s BLOCKING!! So no LAN Server is seen on Android Browsers Solution: Disable IPV6 broadcast DHCP/DNS on LAN Routers! Block outgoing IPV6 on LAN Firewalls! With this crap settings google is analysing the whole internet!
Tag: dns
Script DNS Blocker DNSMASQ
If you tested pihole, you perhaps look for a smaller Command Line version? Install dnsmasq by: sudo apt-get install dnsmasq Here DNS Rule Injector Script (copy & paste): blocker.sh # www.linuxonlinehelp.eu 2019 # DNS Blocker for Small Linux with dnsmasq # #!/bin/bash # goto tmp (tmpfs) cd /tmp/ # get URL-Blocklists wget -O blocklist.txt https://v.firebog.net/hosts/Kowabit.txt # get Templates #SET Variables txt='blocklist.txt' IP='0.0.0.0' # set to 0.0.0.0 or to a Webserver with "white Page" showing Text "URL-blocked!! #merge URLs and redirect to wanted IP – Rule creation n=1; while read line; do echo 'address=/'$line'/$IP '>> 02-blocked1.conf ; n=$((n+1)); done < $txt […]
Fritzbox: DNS lookup slow
Problem: Wenn man mit einem PC hinter eine Router z.b. fritzbox 7170 sitzt kann das anfordern von Internetseiten (http://www.usw…) länger dauern. Grund Ihr Internetprovider besitzt DNS-Namensauflösungsserver die unter hoher Last z.B. viele DSL-Kunden leiden. Das Problem besteht weiter darin das Ihr DSL-Router dynamisch diese DNS-Server mitgeteilt bekommt und Sie diese nicht manuell ändern können (ander Fabrikate ausgenommen) Lösung: Sie richten auf Ihrem PC unter Netzwerkeinstellugen neue zusätzliche DNS Servereinträge ein und nutzen diese an erster Stelle öffenen Sie die Datei /etc/resolv.conf (für Windows Nutzer siehe Netzwerk) und einfügen nameserver 208.67.222.222 #OPENDNS POWER SERVER nameserver 208.67.220.220 nameserver 192.168.178.1 #Router nun sollten […]