Hi there,
my problem is the following: I want to be able to connect to the webgui via 2 nics. Both are bridges, but the 2nd got no bridge port since i only use it for a dmz. Via gui i added an ip to the 2nd bridge and also added the new ip to /etc/hosts of my proxmox hv. I can ping the new ip, but i cant ssh or access the gui via 2nd ip. What am i doing wrong?
Thx for any help
my problem is the following: I want to be able to connect to the webgui via 2 nics. Both are bridges, but the 2nd got no bridge port since i only use it for a dmz. Via gui i added an ip to the 2nd bridge and also added the new ip to /etc/hosts of my proxmox hv. I can ping the new ip, but i cant ssh or access the gui via 2nd ip. What am i doing wrong?
Code:
auto vmbr0
iface vmbr0 inet static
address 172.16.0.11/16
gateway 172.16.0.254
bridge-ports eno1
bridge-stp off
bridge-fd 0
#Hypervisor
auto vmbr1
iface vmbr1 inet manual
bridge-ports eno2
bridge-stp off
bridge-fd 0
#Intern (Gateway)
auto vmbr2
iface vmbr2 inet manual
bridge-ports eno3
bridge-stp off
bridge-fd 0
#Intern
auto vmbr3
iface vmbr3 inet manual
bridge-ports eno4
bridge-stp off
bridge-fd 0
#Server-DMZi3
auto vmbr4
iface vmbr4 inet manual
bridge-ports enp5s0f0
bridge-stp off
bridge-fd 0
#Extern (Gateway)
auto vmbr5
iface vmbr5 inet manual
bridge-ports enp5s0f1
bridge-stp off
bridge-fd 0
#Extern
auto vmbr6
iface vmbr6 inet manual
bridge-ports enp5s0f2
bridge-stp off
bridge-fd 0
#Extern
auto vmbr7
iface vmbr7 inet manual
bridge-ports enp5s0f3
bridge-stp off
bridge-fd 0
#GuestWlan (Gateway)
auto vmbr8
iface vmbr8 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
#ServerVM-DMZi1
auto vmbr9
iface vmbr9 inet static
address 172.21.0.11/24
bridge-ports none
bridge-stp off
bridge-fd 0
#ServerVM-DMZi2
Thx for any help