Is there any documentation for this switch yet? All the examples on the wiki state explicitly they are not for CRS3xx series. Not sure why Mikrotik think they can keep geting away with not providing documentation and having customers figure it out and document it for them.
I’m struggling to get something as basic as VLANs working. I want a bunch of VLANs, I want some of them untagged on access ports, I want some of them tagged on 802.1q trunk ports. I want RSTP running. And of course I want this all switched in hardware.
It is ridiculous how obscure such utterly fundamental switching functionality is to configure in RouterOS. I have been bashing my head against it for three days now. SwOS is not an option, it is a complete joke, it doesn’t even let you set a subnet mask on the management IP.
I’ve removed master-port from all the switch ports as this was preventing me doing anything whatsoever to the slave ports. I hope this hasn’t turned off hardware switching, and I’m not sure how to find out.
If I create a bridge for each VLAN then I can’t have more than one VLAN on a port. But if I create a single bridge and create individual VLANs, it’s no longer running spanning tree.
Here’s what I have so far. A single VLAN 998 that tagged on sfp-sfpplus16. It works, vaguely, but it’s not running spanning tree and I can’t get any more VLANs on that uplink.
/interface> export terse
# nov/18/2017 16:41:45 by RouterOS 6.41rc52
#
# model = CRS317-1G-16S+
/interface ethernet set [ find default-name=ether1 ] name=ether1-mgmt
/interface ethernet set [ find default-name=sfp-sfpplus1 ] comment=vmhost01-port1 l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus2 ] comment=vmhost02-port1 l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus3 ] comment=vmhost03-port1 l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus4 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus5 ] comment=vmhost01-port2 l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus6 ] comment=vmhost02-port2 l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus7 ] comment=vmhost03-port2 l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus8 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus9 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus10 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus11 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus12 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus13 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus14 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus15 ] l2mtu=9004 mtu=9000
/interface ethernet set [ find default-name=sfp-sfpplus16 ] l2mtu=9004 mtu=9000
/interface bridge add name=bridge1
/interface vlan add interface=bridge1 name=vlan998 vlan-id=998
/interface list add name=WAN
/interface list add name=LAN
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus1
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus2
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus3
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus4
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus5
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus6
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus7
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus8
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus9
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus10
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus11
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus12
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus13
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus14
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus15
/interface bridge port add bridge=bridge1 interface=sfp-sfpplus16
/interface bridge vlan add bridge=bridge1 tagged=sfp-sfpplus16 vlan-ids=998
/interface list member add interface=ether1-mgmt list=WAN
/interface list member add interface=sfp-sfpplus1 list=LAN
/interface list member add interface=sfp-sfpplus2 list=LAN
/interface list member add interface=sfp-sfpplus3 list=LAN
/interface list member add interface=sfp-sfpplus4 list=LAN
/interface list member add interface=sfp-sfpplus5 list=LAN
/interface list member add interface=sfp-sfpplus6 list=LAN
/interface list member add interface=sfp-sfpplus7 list=LAN
/interface list member add interface=sfp-sfpplus8 list=LAN
/interface list member add interface=sfp-sfpplus9 list=LAN
/interface list member add interface=sfp-sfpplus10 list=LAN
/interface list member add interface=sfp-sfpplus11 list=LAN
/interface list member add interface=sfp-sfpplus12 list=LAN
/interface list member add interface=sfp-sfpplus13 list=LAN
/interface list member add interface=sfp-sfpplus14 list=LAN
/interface list member add interface=sfp-sfpplus15 list=LAN
/interface list member add interface=sfp-sfpplus16 list=LAN
Any pointers welcome. Thanks.