Hello, i have problem with configuration DHCP. I'm new user Pi-Hole, today i installed Pi-Hole on RasberryPi 3 B+, it work but i don't know what i must do in Connect Box (DHCP).
RasberryPi IP: 192.168.0.241
IPv4, wlan0
Someone is able to help me with the configuration of this?
I removed your link to your debug log, as we can access the debug from the token you provide.
The debug logs upload to a server and are automatically deleted in 48 hours. Only a few people have access to your debug log. This is done to protect your privacy, as debug logs may contain personal information.
Your debug log shows that there is not an IPv4 IP address assigned to the ethernet interface, which is what you have Pi-Hole configured to listen on.
The Pi-Hole IP that you think the Pi is assigned (192.168.0.241) is not on the same subnet that you are showing in the DHCP settings on the router (192.168.10.100).
It appears that your DHCP settings on the router should be starting local address 192.168.0.100. Then number of CPE's 100 (this will give you IP addresses in the range of 100-200.
Then reboot the Pi, and check the router clients list to see which IP the Pi received. Then you make that reservation reserved or static on the router (so it won't change in the future).
Lastly, run this command to reconfigure the Pi-Hole to use the WAN IP address that you reserved above.
This log shows that you how have an IP address of 192.168.0.176 on the WLAN interface of the Pi. The Pi-Hole is working as shown on this section of your debug log:
*** [ DIAGNOSING ]: Name resolution (IPv4) using a random blocked domain and a known ad-serving domain
[✓] www.nysubwayoffer.com is 0.0.0.0 via localhost (127.0.0.1)
[✓] www.nysubwayoffer.com is 0.0.0.0 via Pi-hole (192.168.0.176)
[✓] doubleclick.com is 172.217.16.46 via a remote, public DNS server (8.8.8.8)
The problem is in your router and/or clients. After you made this change, did you change the DNS on your router to this IP (and only this IP)? Also, your clients will all need to renew their leases after the router is setup.
You misunderstood the "Set your Pi name server to Public IP" suggestion.
You do not change the IP address of your PI, you change the IP address of the name server your Pi is using to resolve names.
Your file may differ but the 127.0.0.1 should be the same and is what you want to change to 1.1.1.1:
pi@pi-3b-1:~ $ cd /etc
pi@pi-3b-1:/etc $ cat resolv.conf
# Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8)
# DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN
nameserver 127.0.0.1
search home
pi@pi-3b-1:/etc $