multiple interfaces in the same vlan

can i add ether1 and ether2 to the same vlan1 ??

Add the two ports to a bridge and then add the bridge to the VLAN.

/interface bridge add name=vlan_bridge
/interface bridge port add bridge=vlan_bridge interface=ether1
/interface bridge port add bridge=vlan_bridge interface=ether2
/interface vlan add disabled=no name=vlan1 interface=vlan_bridge vlan-id=1

Hope this helps!


Thomas