Hi,
hopefully somebody can help here...
We use a firewall appliance (intel x86-Hardware) as a proxmox host. This appliance has a lot of network interfaces. Idea is to use some of the ports like a switch.
Details:
We build a vmbr1 VLAN aware with 3 network Interfaces added (no bonding!)
Then we build Opensense with some interfaces (1x WAN to vmbr0, 3x LAN (2 with different VLAN Tags (10,20) to vmbr1, one without VLAN). We provide 3 LAN-Interfaces in Opensense with own IPs and DHCPv4-service. So we were able to use the untagged network (for Opensense management and routed Proxmox management also) and both tagged networks for 2 Client networks from vmbr1.
Everything was working as expected to this point. We have connect one Interface from vmbr1 directly to a computer and we got access to all 3 networks (by using VLAN tagging on this device).
Now we want to use two wrt-based WLAN accesspoints on the other interfaces in vmbr1 to get VLAN-tagged WLANs, each Access-Point should open 2 SSIDs and connect each one to one VLAN.
Only Proxmox "knows" the VLAN Tags and the external devices also.
Here we have problems. we get some some connections, but f.eg. no DHCP-IP on the WLAN Client. It seems, that the network interfaces in vmbr1 doesn't act as expected. When more than one interface in this vmbr is active (=has a device connected), we have problems.
Is it possible, that a vmbr with multiple interfaces without any bonding or LACP is not able to "route" packets back to the same interface like a vSwitch in ESXi (Route based on IP Hash or others)? We don't want to use a switch here if possible, its a special project for a small nonprofit org...
Following the simplified network config
Thanks for your help!
hopefully somebody can help here...
We use a firewall appliance (intel x86-Hardware) as a proxmox host. This appliance has a lot of network interfaces. Idea is to use some of the ports like a switch.
Details:
- Proxmox 8 latest version
- Opensense Firewall
- multiple network segmentations provided by Opensense Firewall
- some WRT-flashed Accesspoints
We build a vmbr1 VLAN aware with 3 network Interfaces added (no bonding!)
Then we build Opensense with some interfaces (1x WAN to vmbr0, 3x LAN (2 with different VLAN Tags (10,20) to vmbr1, one without VLAN). We provide 3 LAN-Interfaces in Opensense with own IPs and DHCPv4-service. So we were able to use the untagged network (for Opensense management and routed Proxmox management also) and both tagged networks for 2 Client networks from vmbr1.
Everything was working as expected to this point. We have connect one Interface from vmbr1 directly to a computer and we got access to all 3 networks (by using VLAN tagging on this device).
Now we want to use two wrt-based WLAN accesspoints on the other interfaces in vmbr1 to get VLAN-tagged WLANs, each Access-Point should open 2 SSIDs and connect each one to one VLAN.
Only Proxmox "knows" the VLAN Tags and the external devices also.
Here we have problems. we get some some connections, but f.eg. no DHCP-IP on the WLAN Client. It seems, that the network interfaces in vmbr1 doesn't act as expected. When more than one interface in this vmbr is active (=has a device connected), we have problems.
Is it possible, that a vmbr with multiple interfaces without any bonding or LACP is not able to "route" packets back to the same interface like a vSwitch in ESXi (Route based on IP Hash or others)? We don't want to use a switch here if possible, its a special project for a small nonprofit org...
Following the simplified network config
Code:
auto lo
iface eno2 inet manual
iface eno3 inet manual
iface eno4 inet manual
iface eno5 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.x.20/24
gateway 192.168.x.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.y.20/24
bridge-ports eno3 eno4 eno5
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
Thanks for your help!