cmprovision icon indicating copy to clipboard operation
cmprovision copied to clipboard

provisioner on bookworm

Open knachte opened this issue 1 year ago • 4 comments

I've set up a provisioner on a bookworm install and am seeing problems with the network settings, both in the manual which is no longer up to date and after installing the provisioner, with files like /etc/dhcpcd.conf no longer being he correct ones to use.

Are there plans to upgrade the provisioner/documentation to work with bookworm?

knachte avatar Apr 16 '24 12:04 knachte

what are you using instead of /etc/dhcpcd.conf?

synaption avatar May 30 '24 01:05 synaption

It seems they switched to nmcli: https://raspberrypi.stackexchange.com/questions/144886/how-to-set-up-a-static-ip-on-raspberry-pi-5-with-raspbian-dhcpcd-conf-missing.

knachte avatar Jun 04 '24 13:06 knachte

I did this: sudo nano /etc/network/interfaces.d/eth0

auto eth0
iface eth0 inet static
    address 172.20.0.1
    netmask 255.255.0.0

synaption avatar Jun 28 '24 19:06 synaption

You can also configure through the CLI. This survives reboots.

sudo nmcli con add type ethernet con-name eth0-static ifname eth0 ip4 172.20.0.1/16

grevelle avatar Jul 17 '24 20:07 grevelle

Well I just wasted half a day on this. Suspecting originally a hardware issue.

Updated documentation would be have been very appreciated.

magicsmoke avatar Sep 19 '24 14:09 magicsmoke