I'm really struggling with the 'new' VLAN implementation on my CRS328's. My devices are RB4011<-->CRS328<-->CRS328. I have them joined using 10gbe DAC's.
I have DHCP server setup on on the RB on VLAN200. I've then added the correct 10gbe ports to the bridge, added port 200 to the VLAN table. I've then configured ether1 on each CRS by adding the port to the bridges and adding it as untagged on VLAN200. If I then connect a machine to ether 1 on either switch I get an IP and can ping the RB. All great so far!
Where it all goes wrong is with the management port.
I've trying following https://wiki.mikrotik.com/wiki/Manual:Bridge_VLAN_Table and it has this simple example for adding management to VLAN 99.
Code: Select all
/interface vlan
add interface=bridge1 name=VLAN99 vlan-id=99
/ip address
add address=192.168.99.2/24 interface=VLAN99
Any ideas what I'm doing wrong? Looked at it so long I'm obviously missing something obvious but can't see the wood for the trees.
Thank you.
'Middle' CRS config - 10.200.0.10 not reachable from other devices
Code: Select all
/interface bridge
add name=bridge1 vlan-filtering=yes
/interface ethernet
set [ find default-name=sfp-sfpplus1 ] name=sfp-sfpplus1-mainrouter
set [ find default-name=sfp-sfpplus2 ] name=sfp-sfpplus2-garageswitch
/interface vlan
add interface=bridge1 name=vlan200-bridge vlan-id=200
add interface=sfp-sfpplus2-garageswitch name=vlan200-garageswitch vlan-id=200
add interface=sfp-sfpplus1-mainrouter name=vlan200-mainrouter vlan-id=200
/interface bridge port
add bridge=bridge1 interface=sfp-sfpplus1-mainrouter
add bridge=bridge1 interface=ether1 pvid=200
add bridge=bridge1 interface=sfp-sfpplus2-garageswitch
/interface bridge vlan
add bridge=bridge1 tagged=sfp-sfpplus1-mainrouter,sfp-sfpplus2-garageswitch \
untagged=ether1 vlan-ids=200
/ip address
add address=10.200.0.10/24 interface=vlan200-bridge network=10.200.0.0
/ip dhcp-client
add interface=sfp-sfpplus1-mainrouter
add disabled=no interface=vlan200-mainrouter
add disabled=no interface=bridge1
add interface=vlan200-bridge
add interface=vlan200-garageswitch