Hello everyone.
Have a task to join multiple management vlans that come from several ISP’s to cisco switch to one broadcast domain. Cisco switch connected with RB1100ah4 via trunk port. All hosts in this vlans locate in one subnet 10.10.10.0/24
Example you can see on a picture. How can i join all of this vlans in one ip subnet that all hosts can reach each other.
https://photos.app.goo.gl/GnfWAEf49P9EECDa9
I send rays of good to all who will help
Let’s say the trunk between cisco and RB1100 is connected to ether5. Then one needs 3 vlan interfaces created one ether5 … and joined those 3 vlan interfaces to single bridge.
/interface vlan
add interface=ether5 name=e5v10 vlan-id=10
add interface=ether5 name=e5v20 vlan-id=20
add interface=ether5 name=e5v30 vlan-id=30
/interface bridge
add name=bridge-mgmt
/interface bridge port
add bridge=bridge-mgmt interface=e5v10
add bridge=bridge-mgmt interface=e5v20
add bridge=bridge-mgmt interface=e5v30
You are right. RB connected via port 5 to port gi1/0/1 on Cisco. But with this configuration i have not seen any mac-addresses on Cisco Gi1/0/1.Hosts can not reach each other thus its not working.
I’m not a Cisco guy, so I can’t comment on what you see there.
BTW, if you want to ping other switches from RB1100 itself, then RB’s management IP address has to be set on bridge-mgmt interface, not somewhere else.
And make sure ether5 is not member of any bridges …