When I installed proxmox it chose eno2 as the management interface, and maybe I am being a little OCD but I want it to use eno1. However, everytime I try to configure it using eno1 I lose my connection to the box. It also used the wrong subnet and I just ignored it during setup thinking it would be easy to change after the fact.
This was my default config
auto lo
iface lo inet loopback
iface eno1 inet manual
auto eno2
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.200/24
gateway 192.168.0.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
I am trying to do this:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.100.300.11/24
gateway 10.100.300.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.0.200/24
bridge-ports eno2
bridge-stp off
bridge-fd 0
but when I do I lose all connections and need to revert back. It just does not make sense to me. I have been working with Linux networking for many many years, but something here is different. Networking connectivity on both interfaces is confirmed working.
This was my default config
auto lo
iface lo inet loopback
iface eno1 inet manual
auto eno2
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.200/24
gateway 192.168.0.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
I am trying to do this:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
auto eno2
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.100.300.11/24
gateway 10.100.300.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.0.200/24
bridge-ports eno2
bridge-stp off
bridge-fd 0
but when I do I lose all connections and need to revert back. It just does not make sense to me. I have been working with Linux networking for many many years, but something here is different. Networking connectivity on both interfaces is confirmed working.