This seems well documented until you get the 'multiple interfaces' part. I've tried various things such as a VLAN having a bridge as a master interface, bridge has a physical interface, but it's not possible to have physical interfaces on multiple bridges.
In Cisco I would just configure this as an SVI and trunked switchports:
Code: Select all
int VLAN123
ip address 1.2.3.4/24
int VLAN456
ip address 5.6.7.8/24
int Gi0/1
switchport mode trunk
switchport trunk allowed vlan add 123
switchport trunk allowed vlan add 456
int Gi0/2
switchport mode trunk
switchport trunk allowed vlan add 123
switchport trunk allowed vlan add 456