Gizm0:
So I tried it and it didn´t help. Once the lease for the addresses runs out, you cannot connect to modem itself, to many pages on the internet (for some reason Google works, but any other pages does not).
When you want the Pi5 to act as a DHCP server, its required to configure static manual IP details on the Pi itself.
A static DHCP reservation for the Pi on the modem/router will stop working once you disabled the DHCP service on the modem.
You didnt mention the distro, but if it's a recent release of Pi-OS/Raspbian:
Configure manual static IP details with below if you like.
Or if you want to have Pi-hole do DHCP services for your LAN.
sudo nmtui
Here is mine for IPv4 only:
$ nmcli -t -f name con show --active | xargs -d '\n' -n 1 nmcli -p -f ipv4.method,ipv4.addresses,ipv4.gateway,ipv4.dns,ipv4.dns-search connection show
===============================================================================
Connection profile details (Wired connection 1)
===============================================================================
ipv4.method: manual
-------------------------------------------------------------------------------
ipv4.addresses: 10.0.0.2/24
-------------------------------------------------------------------------------
ipv4.gateway: 10.0.0.1
-------------------------------------------------------------------------------
ipv4.dns: 10.0.0.1
-------------------------------------------------------------------------------
ipv4.dns-search: home.dehakkelaar.nl
-------------------------------------------------------------------------------
===============================================================================
Connection profile details (lo)
===============================================================================
ipv4.method: manual
-------------------------------------------------------------------------------
ipv4.addresses: 127.0.0.1/8
-------------------------------------------------------------------------------
ipv4.gateway: --
-------------------------------------------------------------------------------
ipv4.dns: --
-------------------------------------------------------------------------------
ipv4.dns-search: --
-------------------------------------------------------------------------------
1 Like