Hey everyone,
i have a little "problem" with my setup.
Initially i installed proxmox with two ethernet nics, one built into the motherboard and the other as extra pcie card. BUT: i only plugged one ethernet cable into the pcie ethernet port during the installation.
So, right now i reach my web interface in 192.168.2.153:8006 without any problems. The other nic gave itself the IP 192.168.1.1, which also doesn't change when i plug an ethernet cable into the port. I also can't ping the address (I'm more or less directly connected to the machine via an ethernet switch).
So, now i'd like to use the pcie ethernet port somewhere else and have the web interface accessible via the built in port.
Can anyone point me to an article on how to access the GUI from another port/IP? i have messed a bit with the interfaces file by now (yes i always restored the original file after each attempt, so here is a clean, working file), but no attempts worked.
my /etc/network/interfaces file: (the comments aren't in the file, i added them to clarify which port is which physical device)
Thanks in advance
i have a little "problem" with my setup.
Initially i installed proxmox with two ethernet nics, one built into the motherboard and the other as extra pcie card. BUT: i only plugged one ethernet cable into the pcie ethernet port during the installation.
So, right now i reach my web interface in 192.168.2.153:8006 without any problems. The other nic gave itself the IP 192.168.1.1, which also doesn't change when i plug an ethernet cable into the port. I also can't ping the address (I'm more or less directly connected to the machine via an ethernet switch).
So, now i'd like to use the pcie ethernet port somewhere else and have the web interface accessible via the built in port.
Can anyone point me to an article on how to access the GUI from another port/IP? i have messed a bit with the interfaces file by now (yes i always restored the original file after each attempt, so here is a clean, working file), but no attempts worked.
my /etc/network/interfaces file: (the comments aren't in the file, i added them to clarify which port is which physical device)
Bash:
auto lo
iface lo inet loopback
iface enp5s0 inet manual #<-- built-in port
auto vmbr0
iface vmbr0 inet static
address 192.168.2.153 #<-- IP by which the web interface is accessible
netmask 24
gateway 192.168.2.1 #<-- router/gateway
bridge-ports eno1 #<-- pcie port
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.1.1 #<-- gave itself this IP
netmask 24
bridge-ports enp5s0 #<-- built-in port
bridge-stp off
bridge-fd 0
Thanks in advance