Dear all,
I am quite embarrassed to ask such a simple question on a forum but since it is not working and I have been bashing my head on a wall for more than two weeks of tests I have exhausted all possible options to understand why such a very simple and straight-forward scenario is not working. Just a quick note I come from the Cisco world and have a CCNA and some 10+ years of experience with them, so it’s not that I started playing with networking just some days ago, but I have zero experience with Mikrotiks.
I would really appreciate your help on this as probably I’m missing something very obvious related to the Mikrotik world but I really cannot find it even going through Mikrotik’s wiki.
Consider this scenario:
VLAN900 10.1.1.1 [rtr1] <----- sfp-sfpplus4 -----> [rtr2] VLAN900 10.1.1.2
Embarrassingly simple right? No, rtr1 cannot ping rtr2 and rtr2 cannot ping rtr1. Both of them can ping self.
[exion@rtr2] > ping 10.1.1.1
SEQ HOST SIZE TTL TIME STATUS
0 10.1.1.1 timeout
1 10.1.1.1 timeout
2 10.1.1.1 timeout
3 10.1.1.2 84 64 101ms570us host unreachable
sent=4 received=0 packet-loss=100%
[exion@rtr1] > ping 10.1.1.2
SEQ HOST SIZE TTL TIME STATUS
0 10.1.1.2 timeout
1 10.1.1.2 timeout
2 10.1.1.2 timeout
3 10.1.1.1 84 64 125ms320us host unreachable
sent=4 received=0 packet-loss=100%
Here below is the relevant configuration:
rtr1:
/interface vlan
add interface=bridge1 name=vlan900 vlan-id=900
/interface bridge
add fast-forward=no name=bridge1 vlan-filtering=yes
/interface bridge port
add bridge=bridge1 hw=no interface=sfp-sfpplus4 pvid=99
/interface bridge vlan
add bridge=bridge1 tagged=sfp-sfpplus4 untagged=vlan900 vlan-ids=900
/ip address
add address=10.1.1.1/24 interface=vlan900 network=10.1.1.0
rtr2:
/interface vlan
add interface=bridge1 name=vlan900 vlan-id=900
/interface bridge
add fast-forward=no name=bridge1 vlan-filtering=yes
/interface bridge port
add bridge=bridge1 hw=no interface=sfp-sfpplus4 pvid=99
/interface bridge vlan
add bridge=bridge1 tagged=sfp-sfpplus4 untagged=vlan900 vlan-ids=900
/ip address
add address=10.1.1.2/24 interface=vlan900 network=10.1.1.0