Pihole DNS not resolving

**The issue I am facing: after upgrading to latest version of PI OS Bookworm I reinstalled Pihole in portainer but with macvlan **

**Details about my system: Rapberry 3 SD CARD ASUS Ax86 router **

*What I have changed since installing Pi-hole: IP4 DNS to Cloudflare activate conditional forwarding
I can view pihole Web page but after inserting up address in lab dns field I have no Internet access.

https://tricorder.pi-hole.net/oUzBBUvO/

Please, post the compose file or docker run command used to start the container.

Sorry, but I followed this guide using Portainer image

I hope this helps

GNU nano 7.2 docker-compose.yml

    container_name: pihole
    image: pihole/pihole:latest
    ports:
      - "53:53/tcp"
      - "53:53/udp"
      - "67:67/udp"
      - "80:80/tcp"
      - "443:443/tcp"
    environment:
      TZ: 'Europe/Rome' #this is the time zone
    volumes:
       - './etc-pihole/:/etc/pihole/'
       - './etc-dnsmasq.d/:/etc/dnsmasq.d/'
    dns:
      - 127.0.0.1
      - 1.1.1.1
    cap_add:
      - NET_ADMIN
    restart: unless-stopped

If I understood correctly, you are running Pi-hole image in your Raspberry Pi.

From a different computer on your network, run this commands:

nslookup pi.hole

nslookup pi.hole 192.168.50.195

nslookup flurry.com 192.168.50.195


Hi, first of all thanks for your support. Yesterday evening I succefully made pihole going. Waiting for other answers on the forum I made some modifications, added macvlan ip address to dns filter of my router with “no redirection” option, moving from “allow only local requests” to “bind to eth0”interface, stopping Skynet and Diversion on asus-merlin router. This way it works.

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