Just wanted to share my experience with adding 10Gb network cards to systems that already had PVE installed and working.
On both systems I tried this (with different cards), this caused my the PVE GUI no longer to be reachable.
I had to connect keyboard and display to login, use
In one case from enp3s0 to enp4s0, while the (dual) 10Gb card got the names enp1s0f0 and enp1s0f1.
did reboot after making the change.
In the end I used that method as well for switching to using the 10Gb card on one machine, and used the System->Network entry in the GUI to change the other (after being able to reconnect to the GUI on the 1Gb interface).
This might help someone out. I don't think it is an issue for anyone who first assembles the final hardward and then installs proxmox.
On both systems I tried this (with different cards), this caused my the PVE GUI no longer to be reachable.
I had to connect keyboard and display to login, use
ip addr
to see the new name of the adapter and then edit /etc/network/interfaces
to update the name (in two places). In one case from enp3s0 to enp4s0, while the (dual) 10Gb card got the names enp1s0f0 and enp1s0f1.
Code:
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
iface enp3s0 inet manual
# ^ changed 3 to 4
iface enp1s0f0 inet manual
iface enp1s0f1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.3/24
gateway 192.168.0.1
bridge-ports enp3s0
# ^ changed 3 to 4
bridge-stp off
bridge-fd 0
source /etc/network/interfaces.d/*
did reboot after making the change.
In the end I used that method as well for switching to using the 10Gb card on one machine, and used the System->Network entry in the GUI to change the other (after being able to reconnect to the GUI on the 1Gb interface).
This might help someone out. I don't think it is an issue for anyone who first assembles the final hardward and then installs proxmox.