Please tell me, a regular(uncontrolled) switch with several ports is connected to my Mikrotik in lan1, regular clients are connected to this switch, as well as clients that have VLAN 10 installed on their network cards, how can I get them all in one bridge on Mikrotik? When I install on mikrotik PVID 10 for ether1 and add tagged and untagged in one vlan table, I get an error that they cannot be at the same time.
ROS cannot handle a port with a tagged VLAN and also untagged in that same VLAN
e.g.:
eth1 is untagged 10 and also tagged VLAN 10 on that bridge:
EDIT: (second part got lost on first post; sorry)
but you can set the PVID (untagged traffic) in the port menu itself for that port in the bridge setup:
(do not set the port “untagged” in “Bridge > VLANs” - as in the first screenshot)
It seems to me that you didn’t explained correctly. So you should provide your network diagram so people here can easily understand what are you need. Also with the information you provided they understood correctly, what you wanted to do is hybrid port where one VLAN is untagged and other VLANs are tagged but you can’t tag and untag same VLAN, it just doesn’t make any sense.
Write how many dumb switches do you have, draw a network diagram so we can see what do you want and to see what your network looks like. Then, and only then you can receive real help.
You said you have ether1 on Mikrotik where VLAN10 and untag come, from where ? Is this Mikrotik a switch ? Or is it a router ? By untagged do you mean VLAN11 ?
What I understood you need hybrid port with VLAN 11 untagged and VLAN 10 tagged ? And you have dumb switch downstream where you want your VLAN11 to be untagged and VLAN10 is passed out ? Is your dumb switch capable of passing tagged VLAN traffic ?
building a network using 802.1Q and using unmanaged switches is the basic part, I’m sorry you don’t understand it
I don’t need to rework the network, this is just an example that the task displays for simplicity.
There are many pitfalls using multiple bridges, so best avoided.
Do you need a bridge? If your network is only connected to a single port you can simply add a vlan interface to that port:
/interface vlan
add interface=ether1 name=vlan10 vlan-id=10
then add different subnets to the two networks (ether1 and vlan10) plus any services, e.g. DHCP server, as required.
/interface bridge vlans
add bridge=bridge tagged=bridge untagged=ether1 vlan-ids=5 { This captures the clients coming in untagged from the switch }
add bridge=bridge tagged=bridge,ether1 vlan-ids=10 { This captures the vlan10 clients coming in from the the switch }
Now if you had other ports also handling this traffic on the mikrotik one would have to add it to the lines above as appropriate..