Access Proxmox web interface from multiple networks

CodeNinja

New Member
May 20, 2020
4
0
1
Hello,

I have 1 Proxmox host installed and "placed" into our server VLAN (VLAN11 - 192.168.11.0/24).
We configured our network so it routes traffic from our "client VLAN" (VLAN10 - 192.168.10.0/24) to our server VLAN and visa versa.
I'm able to ssh to VM's and containers from our client VLAN but i'm not able to access the Proxmox web interface from our client VLAN.
I suppose that i need to do some extra configuration to Proxmox to achieve this but i have no idea what. I'm not very experienced in Proxmox (Linux) networking so
excuse me if this is a "stupid" question.

My Proxmox configuration is pretty straigt forward and default. My interface configuration is as folows:
Code:
auto lo
iface lo inet loopback

iface eno1 inet manual

iface eno2 inet manual

iface eno3 inet manual

iface eno4 inet manual

auto vmbr0
iface vmbr0 inet static
        address 192.168.11.10
        netmask 255.255.255.0
        gateway 192.168.11.1
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0

I already tried to add an extra virtual interface with these settings:
Code:
auto vmbr10
iface vmbr0 inet static
        address 192.168.10.10
        netmask 255.255.255.0
        gateway 192.168.10.1
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0

But than it says that eno1 is already used by vmbr0.
It would be very kind when someone can help me out.
 
Nevermind, i already found how to fix this. Its EASY.
I needed to create the VLAN's in proxmox also and than it works out of the box.