Questions tagged [pihole]

Pi-hole is a Linux network-level advertisement and Internet tracker blocking application

37 questions
0
votes
0 answers

Is there a way I could check the status of a Pi-Hole through a batch script

I'm trying to make a script that can help me remotely monitor my Pi-Hole through batch, and I want to add a feature that checks if the Pi-Hole is actually on, possibly by using ping, but I can't figure out how to. Current Code: ECHO OFF ECHO…
0
votes
1 answer

No module named requests but satisfied on RP OS 64bit

Occasionally my PiHole goes down and I'm unavailable to resolve any sites, it just did it the other day for hours before I noticed. I'm trying to run this to catch the times that I miss it so it doesn't mess up anything for anyone else on the…
0
votes
1 answer

DHCP packet received on wlan0 which has no address on pihole

I have setup my DHCP server with pihole, it's working fine. I received this error on pi-Hole diagnosis. Check the image here. Please help. I tried nothing to resolve this error.
0
votes
0 answers

certbot for homeassistant with pi-hole docker running

I have to create an SSL certificate for home-assistant with is running in a docker container. I follow this guide: https://community.home-assistant.io/t/a-comprehensive-guide-on-how-to-set-up-alexa-with-ha-docker/360079 and I try using certbot to…
franzi98
  • 33
  • 1
  • 7
0
votes
0 answers

Would it be possible to rebuild pihole/pihole for Mips architecture?

I’m using a device with the Mips architecture and since Pihole doesn’t support this architecture I was wondering how possible and difficult it’d be to modify their files to support work with Mips.…
Jacob
  • 19
  • 6
0
votes
0 answers

How to i modify my commands to set up a custom version of pi-hole to my container

I can't install pi-hole in my container due to it not officially supporting the CPU architecture ("mips"). It has however been performed by https://www.reddit.com/r/pihole/comments/fnhfb8/pihole_for_mips_ci20/, but I'm not sure how to modify my yml…
Jacob
  • 19
  • 6
0
votes
0 answers

Im trying to run a pi-hole docker container and get the error message "no matching manifest for linux/mipsle in the manifest list entries"

Update: It turns out it can't install pi-hole due to it not officially supporting the CPU architecture ("mips"). It has however been performed by https://www.reddit.com/r/pihole/comments/fnhfb8/pihole_for_mips_ci20/ that guy, but I'm not sure how to…
Jacob
  • 19
  • 6
0
votes
2 answers

SQL - select only max values for each timestamp

Long term observer, first time poster. I have a table that is: UTC Allowed Blocked 1666852500 100 52 1666853100 45 11 1666853100 67 15 The UTC column has multiple duplicates, due to my sampling. I would like to remove duplicates of…
biobar
  • 1
0
votes
1 answer

Nginx, Pihole and DNS over TLS -> Get the Real IP

Currently I have setup Pihole(v5.12.2) in an Ubuntu 20.04 VPS. I have installed Nginx as a reverse proxy for DNS over TLS and it works fine but in the logs in Pihole everything appears as 127.0.0.1 due to Nginx not forwarding the real IP of the each…
kampias
  • 459
  • 1
  • 10
  • 21
0
votes
0 answers

Which is the correct PiHole DNS Entry

In the last couple of weeks I moved from clicking pihole in portainer to using stacks / docker-compose.yaml However, this also limited the functionality of my pihole. At some point it was no longer possible to perform the gravity update via the web…
petr42
  • 9
  • 1
  • 4
0
votes
1 answer

Pi-hole docker Portainer Stack volume config

I need help with the correct config for my Pi-hole Docker/Portainer Stack... services: pihole: container_name: pihole image: pihole/pihole:latest restart: unless-stopped ports: - 53:53/tcp - 53:53/udp - 80:80/tcp …
Duncan
  • 31
  • 6
0
votes
1 answer

Raspberry (PiHole): 500 Internal Server Error

It happened already twice today, I try to reach the dashboard and I get "500 Internal Server Error"; I can ping the raspberry but SSH does not work (connection closed by peer) A reboot will fix the problem Any ideas?
MarcoGT
  • 53
  • 6
0
votes
1 answer

Troubles with NGINX as reverse proxy

I have a problem configuring an nginx as reverse proxy. On RaspPI with raspberry Lite OS, I installed the pihole reachable under: 192.168.177.77:81 nginx runs on port 80. In the hosts file on a mac notebook, I created the entry: 192.168.177.77 …
sd_19x4
  • 17
  • 4
0
votes
1 answer

yaml for pihole container on QNAP

I am trying to make the following docker-compose.yaml to run on my QNAP container station. The following part is working, but after the "restart: unless-stopped" the mess begins. version: '3' services: pihole: container_name: pihole …
Waldecker
  • 25
  • 3
0
votes
0 answers

Kubernetes ingress redirects to 504

I'm trying to learn kubernetes with a couple of rpi's at home. I'm trying to run pihole in the cluster, which has worked, now the issue i'm facing is a redirect issue with ingress. my ingress.yaml file output: ## pihole.ingress.yml apiVersion:…