I did install 4 pve's version 8.2.2 and notice a issue on installation config.
On install you can setup a netowork interface and the file /etc/network/interfaces became something like this:
Your problem is that when you reboot, there is no interface automaticly loaded.
To solve this you just need to do is insert "auto" before your interface name, like this:
On install you can setup a netowork interface and the file /etc/network/interfaces became something like this:
Code:
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
iface eno1 inet manual
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
address 172.16.0.2/16
gateway 172.16.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
source /etc/network/interfaces.d/*
Your problem is that when you reboot, there is no interface automaticly loaded.
To solve this you just need to do is insert "auto" before your interface name, like this:
Code:
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
auto eno1 #THIS LINE WILL SOLVE YOUR ISSUE
iface eno1 inet manual
auto eno2
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
address 172.16.0.2/16
gateway 172.16.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
source /etc/network/interfaces.d/*
Last edited: