- Dhcpcd package is missing from the latest raspberry pi os (64bit). They now use nmcli to handle static ip.
- manually set the ip with nmcli. Documentation: https://www.raspberrypi.com/documentation/computers/configuration.html#assign-a-static-ip-address
Simple program that writes
interface wlan0
static ip_address=
static routers=
static domain_name_servers=
interface eth0
static ip_address=
static routers=
static domain_name_servers=
to dhcpcd.conf file.
- dhcpcd
- Run the install script with this command
./install
If dhcpcd error occurs.. it might not be running. Use these commands to start and enable dhcpcd service.
sudo service dhcpcd start
sudo systemctl enable dhcpcd
Check if service is running.
sudo service dhcpcd status
- Manual uninstall. The uninstall script open up the dhcpcd file with sudo privileges.
If you found this program useful and would like to show your appreciation, you can
Thank you for using this program! Feel free to reach out if you have any questions or need further assistance.