I was adding a new NVMe drive to a previously unused slot on my little home server running Proxmox. After putting it back together, my services, like Home Assistant and Pihole, never came back online.
Running
, I could see the error message:systemctl status networking
error: vmbr0: bridge port enp1s0 does not exist
Long story short:
Adding a new drive changed the enumeration of the network interface, it is now
.enp2s0
Solution:
I edited
and changed /etc/network/interfaces
to enp1s0
.enp2s0
Running
now ran without error and networking was working again. 🎉ifup vmbr0
Leave a Reply