Expected Behavior:
Recently, my PiHole instance stopped blocking anything. I have Pi-hole running on a Docker container on a Linux server and while Pi-hole sees all the queries coming in, nothing is blocked.
- Operating System (Family and Version):
Ubuntu 20.04.6 LTS (Focal Fossa) - Docker compose file or Docker run command
version: "3"
services:
pihole:
container_name: pihole
image: pihole/pihole:latest
ports:
- "[MY_IP]:53:53/tcp"
- "[MY_IP]:53:53/udp"
- "67:67/udp"
- "80:80/tcp"
- "443:443/tcp"
environment:
TZ: America/Chicago
volumes:
- './etc-pihole/:/etc/pihole/'
- './etc-dnsmasq.d/:/etc/dnsmasq.d/'
cap_add:
- NET_ADMIN
restart: unless-stopped
- Docker engine version:
Docker version 27.5.1, build 9f9e405
Actual Behavior:
All my devices are connected to my router -> router has custom DNS servers pointed to the pi-hole server. Query Logs show every query I'm making but they're all green and allowed; however, when I click on the "Active Clients" link under "Total Queries", it shows all my devices as > 24 hours ago. I'm also unable to manually deny anything from "query logs"; nothing happens.
Any idea what could've changed? Not sure how to even troubleshoot this at this point.
Thanks!