regex-allow Eintrag wegen Bloons TD6 Update

Nach einem Update des Spiels Bloons TD6, wird nun, wenn man den Coop-Modus startet, eine DNS Anfrage "199.247.4.81.getmoss.site" an den DNS geschickt.
pi-hole blockt diese. Da sich die Subdomain ständig ändert, habe ich einen regex-allow domain Eintrag hinzugefügt:
*.getmoss.site

Dennoch werden alle DNS requests mit domain x.getmoss.site geblockt.

Für mein Verständnis findet er ja einen passenden Eintrag für die Domain, aber im query log ist immer noch alles was mit dieser Domain zu tun hat, rot!

sudo pihole -q 199.247.4.81.getmoss.site
Found 1 domains exactly matching '199.247.4.81.getmoss.site'.

  • *.getmoss.site (type: exact allow domain)
    Found 0 adlists exactly matching '199.247.4.81.getmoss.site'.

und warum er da "(type: exact allow domain)" schreibt, obwohl es als regex-allow definiert ist, habe ich auch noch nicht verstanden.

Vielen Dank im Voraus für eure Unterstützung.
Gruß
mod2001

Debug Token:

https://tricorder.pi-hole.net/998G46J8/

This is not a valid regex and it won't match what you want.

The asterisk (*) is not a wildcard. It actually means "match the previous token between zero and unlimited times", but you started the string with it and there are no "previous tokens", invalidating the regex.

To match getmoss.site and any domain ending with .getmoss.site, try this: (^|\.)getmoss\.site$.

1 Like

vielen Dank für Ihre Unterstützung.
ich habe die Regel definiert, aber in den " Recent Queries" werden weiterhin alle Anfragen von *.getmoss.site geblockt.
Query Status: Blocked (external, IP)

Und genau hier ist das Problem. OpenDNS blockte die IP, nicht pihole. Ich habe testweise mal auf google als DNS umgestellt, jetzt funktioniert es.

Thank you for your support.
I've defined the rule, but all requests from *.getmoss.site are still blocked in the "Recent Queries."
Query Status: Blocked (external, IP)

And that's exactly the problem. OpenDNS was blocking the IP, not Pihole. I switched to Google as the DNS for testing, and it's working now.

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.