I've got an RB1100 setup with a fairly basic config, essentially we've got an uplink to the internet and then three separate subnets (separate bridges) hanging off different ports on the RB (the rest of the ports are also in use but the configuration of them is not relevant to this question).
We're looking at hanging some more kit off the router which will necessitate chucking a switch into the mix, and in order to make it work we basically need to push those subnets over a VLAN trunk to our switch ideally retaining the "local" port access (though worst case I'll just move everything to the switch).
The naive way to do this would just be to define VLAN interfaces on ether5 and drop those onto the relevant bridges, however in reading a bit further I ran across this https://wiki.mikrotik.com/wiki/Manual:L ... _interface which tells me that is a problem.
With the solution presented in the article, I can successfully get ONE of the bridge networks pushed out over the VLAN trunk, but I run into issues when it's time to bring the second and subsequent networks onto that trunk, in a nutshell;
Code: Select all
/interface bridge
add name=bridge1 vlan-filtering=yes
/interface bridge port
add bridge=bridge1 interface=ether2 pvid=20
add bridge=bridge1 interface=ether5
/interface bridge vlan
add bridge=bridge1 tagged=ether5 untagged=ether2 vlan-ids=20
Been trying various things in Switch config and such but I've not had any luck getting it to work.
Can anybody provide some guidance as to how I can achieve this?
Thanks,
-A