Hi there,
I’ve got the following problem:
We have an optic fibre connection to connect to the internet, which worked untill now. Now we need to interlink two other sites in the country via the same optic fibre link. Our provider wants us to use vlan’s to differenciate traffic streams on the link. All local traffic should have access to all vlans. At this moment I’m just trying to send the internet traffic on this link over vlan, I kind of want this to work first before I add the other vlans.
So this is my config (I took out non-relevant info):
/interface bridge
add name=bridge1
/interface ethernet
set [ find default-name=ether1 ] l2mtu=1590
set [ find default-name=ether2 ] l2mtu=1590
(…)
set [ find default-name=sfp-sfpplus1 ] auto-negotiation=no l2mtu=1590 name=sfp-plus1 speed=1Gbps
/interface vlan
add interface=sfp-plus1 l2mtu=1586 name=vlan-DSNIS use-service-tag=yes vlan-id=637
/interface bridge port
add bridge=bridge1 interface=ether1
add bridge=bridge1 interface=ether2
add bridge=bridge1 interface=ether3
add bridge=bridge1 interface=ether4
add bridge=bridge1 interface=ether5
add bridge=bridge1 interface=ether6
add bridge=bridge1 interface=ether7
add bridge=bridge1 interface=ether8
/ip address
add address=41.79.225.30/30 comment=WAN interface=sfp-plus1 network=41.79.225.28
add address=192.168.1.1/22 comment=LAN interface=bridge1 network=192.168.0.0
add address=41.79.225.30/30 disabled=yes interface=vlan-DSNIS network=41.79.225.28
I would think that just disabling the adress on the sfp1 interface and enabling the one at the vlan-interface would be sufficient, but it is not. No connectivity at all if I do that.
Any thoughts?