alexreinert / piVCCU

piVCCU is a project to install the original Homematic CCU3 firmware inside a virtualized container (lxc) on ARM based single board computers.
Apache License 2.0
306 stars 65 forks source link

Raspberry nach Update der network interface auf Raspian Bookworm nicht mehr erreichbar #528

Open phipro92 opened 2 months ago

phipro92 commented 2 months ago

Folgt man der Installationsanleitung für den Raspberry Pi (3B) in Schritt 9.1 für "Update your config. (Replace eth0 if necessary)", ist der Raspberry Pi nach dem Reboot nicht mehr erreichbar. (Ping schlägt fehl: "Host down") https://alexreinert.github.io/piVCCU/docs/setup/raspberrypi.html

Ich konnte den Fehler soweit eingrenzen, dass mit einem frischen Raspian Bookworm 64-bit und der direkten Ausführung des Schritts Nr. 9, der Raspberry Pi an Eth0 anschließend nicht mehr erreichbar ist.

Wenn ich die interface Datei manuell mit 'nano' wie folgt ändere, bootet der Raspberry normal und ist über Eth0 weiter erreichbar:

source /etc/network/interfaces.d/*

auto lo iface lo inet loopback

iface eth0 inet manual

auto br0 iface br0 inet dhcp bridge_ports eth0

Ich vermute, dass der Fehler mit dem EOT' am Ende oder der source-directory in der Anleitung zu tun hat.