What does traceroute between those test hosts show?
What does
/ip route print show?
Just noticed: there's missing config detail in
/interface bridge vlan: sfp-sfpplus1 should be declared as untagged member of VLAN 100, setting interface with pvid is not sufficient
set [ find vlan-ids=100 ] untagged=sfp-sfpplus1
ok now its gone really weird..
dec/07/2019 14:34:52 by RouterOS 6.45.7
# software id = SP97-FB0N
#
# model = CRS317-1G-16S+
# serial number = 7A1406FA5C7F
/interface bridge
add admin-mac=6C:3B:6B:EB:75:43 auto-mac=no frame-types=admit-only-vlan-tagged name=bridge vlan-filtering=yes
/interface ethernet
set [ find default-name=sfp-sfpplus1 ] name=sfp-sfpplus1-esxi01
set [ find default-name=sfp-sfpplus2 ] name=sfp-sfpplus2-esxi02
set [ find default-name=sfp-sfpplus3 ] name=sfp-sfpplus3-esxi03
set [ find default-name=sfp-sfpplus4 ] name=sfp-sfpplus4-nas01
/interface vlan
add interface=bridge name=VLAN-001-DEFAULT vlan-id=1
add interface=bridge name=VLAN-010-MGMT vlan-id=10
add interface=bridge name=VLAN-2-WIFI vlan-id=2
add interface=bridge name=VLAN-100-SERVER vlan-id=100
/interface bridge port
add bridge=bridge comment=defconf interface=ether1
add bridge=bridge comment=defconf interface=sfp-sfpplus1-esxi01
add bridge=bridge comment=defconf interface=sfp-sfpplus2-esxi02
add bridge=bridge comment=defconf interface=sfp-sfpplus3-esxi03
add bridge=bridge comment=defconf interface=sfp-sfpplus4-nas01
add bridge=bridge comment=defconf interface=sfp-sfpplus5
add bridge=bridge comment=defconf interface=sfp-sfpplus6
add bridge=bridge comment=defconf interface=sfp-sfpplus7
add bridge=bridge comment=defconf interface=sfp-sfpplus8
add bridge=bridge comment=defconf interface=sfp-sfpplus9
add bridge=bridge comment=defconf interface=sfp-sfpplus10
add bridge=bridge comment=defconf interface=sfp-sfpplus11
add bridge=bridge comment=defconf interface=sfp-sfpplus12
add bridge=bridge comment=defconf interface=sfp-sfpplus13
add bridge=bridge comment=defconf interface=sfp-sfpplus14
add bridge=bridge comment=defconf interface=sfp-sfpplus15
add bridge=bridge comment=defconf interface=sfp-sfpplus16
/interface bridge vlan
add bridge=bridge tagged=ether1,bridge,sfp-sfpplus1-esxi01,sfp-sfpplus2-esxi02,sfp-sfpplus3-esxi03 vlan-ids=10
add bridge=bridge tagged=sfp-sfpplus1-esxi01,bridge,ether1,sfp-sfpplus2-esxi02,sfp-sfpplus3-esxi03 vlan-ids=100
add bridge=bridge tagged=bridge,ether1,sfp-sfpplus1-esxi01,sfp-sfpplus2-esxi02,sfp-sfpplus3-esxi03 vlan-ids=2
add bridge=bridge tagged=bridge,ether1 vlan-ids=1
/ip address
add address=192.168.10.5/24 interface=VLAN-010-MGMT network=192.168.10.0
add address=192.168.1.5/24 interface=VLAN-001-DEFAULT network=192.168.1.0
add address=192.168.2.5/24 interface=VLAN-2-WIFI network=192.168.2.0
add address=10.10.10.5/24 interface=VLAN-100-SERVER network=10.10.10.0
/ip dns
set servers=10.10.10.10
/ip route
add distance=1 gateway=10.10.10.1
add distance=1 gateway=192.168.1.1
add distance=1 gateway=192.168.10.1
add distance=1 gateway=192.168.10.1
add distance=1 gateway=192.168.2.1
/ip service
set telnet disabled=yes
set ftp disabled=yes
set api disabled=yes
set winbox disabled=yes
set api-ssl disabled=yes
/system clock
set time-zone-name=Europe/Copenhagen
/system routerboard settings
set boot-os=router-os boot-protocol=dhcp
/system swos
set address-acquisition-mode=static allow-from-vlan=1 static-ip-address=192.168.1.218
With this configuration, (i re-ordered the ports so they make more sense) not only do my vlans route to the wrong router, but when pinging within the same vlan, in this case vlan100 from port spf3 to spf1 it goes through ethernet1, meaning this link is 1gbit max. not the 10gbit it should be
[admin@MikroTik] /interface bridge vlan> /ip route print
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme, B - blackhole, U - unreachable, P - prohibit
# DST-ADDRESS PREF-SRC GATEWAY DISTANCE
0 A S 0.0.0.0/0 10.10.10.1 1
1 S 0.0.0.0/0 192.168.1.1 1
2 S 0.0.0.0/0 192.168.10.1 1
3 S 0.0.0.0/0 192.168.10.1 1
4 S 0.0.0.0/0 192.168.2.1 1
5 ADC 10.10.10.0/24 10.10.10.5 VLAN-100-SERVER 0
6 ADC 192.168.1.0/24 192.168.1.5 VLAN-001-DEFAULT 0
7 ADC 192.168.2.0/24 192.168.2.5 VLAN-2-WIFI 0
8 ADC 192.168.10.0/24 192.168.10.5 VLAN-010-MGMT 0
I think im a bit confused right now as to how these vlans are routed.