Andere Client-Adressen in PiHole

Hallo zusammen,

ich bin ganz neu dabei - bitte entschuldigt daher vielleicht meine Dummen Anfängerfragen.
Ich habe Pi-hole unter Windows/ Docker Compose installiert. Hier das docker-compose.yml:

version: "3"

More info at GitHub - pi-hole/docker-pi-hole: Pi-hole in a docker container and https://docs.pi-hole.net/

services:
pihole:
container_name: pihole
image: pihole/pihole:latest
# For DHCP it is recommended to remove these ports and instead add: network_mode: "host"
ports:
- "53:53/tcp"
- "53:53/udp"
- "67:67/udp" # Only required if you are using Pi-hole as your DHCP server
- "80:80/tcp"
environment:
TZ: 'Europe/Berlin'
# WEBPASSWORD: '32489fhh7hv7hui' # 'set a secure password here or it will be random'
# Volumes store your data between container upgrades
volumes:
- './etc-pihole:/etc/pihole'
- './etc-dnsmasq.d:/etc/dnsmasq.d'
# GitHub - pi-hole/docker-pi-hole: Pi-hole in a docker container
cap_add:
- NET_ADMIN # Required if you are using Pi-hole as your DHCP server, else not needed
restart: unless-stopped

Das Ramdom Password habe ich dann zufälligerweise im log von Docker gefunden :slight_smile: Allerdings wird nirgends erwähnt wie eigentlich Pihole aufzurufen ist. Unter dem Port 53 oder 80 geht es zu mindestens nicht.

Irgendwo in den tiefen des Internets habe ich dann herausgefunden das man nur diese Adresse eingeben muss: http://ip-computer/admin/ was in meinem Fall diese ist http://192.168.178.5/admin

In meiner Fritzbox habe ich dann diese Adresse unter DNS Server eingetragen.

Was mich jetzt ein wenig wundert sind die komischen IP Adressen in Pi-hole? Woher weiß ich denn jetzt welche IP welcher Client ist? Die müssten ja eigentlich so lauten 192.168.178.xx

Ich habe in Pihole auch noch das eingetragen. Hilft aber auch nicht

127.0.0.1 is localhost, also known as loopback address: localhost – Wikipedia

The other 2 IPs are docker addresses.

Your container is using bridge network. Docker creates internal addresses for this network. In this case they are in the range 172.24.0.0/16 (from 172.24.0.1 to 172.24.255.254).

172.24.0.1 is the docker gateway.
You didn't provide a debug log, but 172.24.0.2 is probably Pi-hole container itself.

Ah, ok - vielen Dank! Aber wie kann ich jetzt diese Adressen in die richtigen umwandeln? Bzw. wie finde ich heraus welche Adresse welcher Client ist. Leider werden die Namen ja auch nicht angezeigt.

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