DNS filter working bot no local DNS results

Please follow the below template, it will help us to help you!

Expected Behaviour:

DNS filtering working but can't resolve local DNS (pi.hole and manually added entries)
I can access the admin panel via the IP - and looking at logs I can see that all requests are routed through the pi.hole successfully

Actual Behaviour:

I get a NXDomain error with the locla addresses

Debug Token:

docker compose deployment

services:

  pihole:

    container_name: pihole

    image: pihole/pihole:latest

    ports:

      - "53:53/tcp"

      - "53:53/udp"

      - "67:67/udp"

      - "80:80/tcp"

    environment:

      TZ: 'America/Chicago'

      WEBPASSWORD: censored

      ServerIP: 10.0.0.26  

    volumes:

      - '/media/apps/pihole/pihole/:/etc/pihole/:rw'

      - '/media/apps/pihole/dnsmasq.d/:/etc/dnsmasq.d/:rw'

    # Recommended but not required (DHCP needs NET_ADMIN)

    #   https://github.com/pi-hole/docker-pi-hole#note-on-capabilities

    cap_add:

      - NET_ADMIN

    restart: unless-stopped

I found the issue - Newer versions of chrome use secure DNS that is not supported

I tried with a different browser and found success

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