
Goal : forward tagged Vlan99 across switched and use Vlan99 itself to manage both CRS112 , also tag Vlan20 across switches to let few PC to use a different subnet (untagged traffic) coming from a different switch.
I made this configuration in both CRS112 :
/interface bridge
add name=bridge1
/interface vlan
add interface=bridge1 name=vlan99 vlan-id=99
/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
add bridge=bridge1 interface=sfp9
add bridge=bridge1 interface=sfp10
add bridge=bridge1 interface=sfp11
add bridge=bridge1 interface=sfp12
/interface ethernet switch egress-vlan-tag
add tagged-ports=ether1,vlan-id=20
add tagged-ports=switch1-cpu,ether1 vlan-id=99
/interface ethernet switch ingress-vlan-translation
add customer-vid=0 new-customer-vid=20 ports=ether7,ether8
/interface ethernet switch vlan
add ports=ether1,ether7,ether8 vlan-id=20
add ports=switch1-cpu,ether1,sfp9 vlan-id=99
/interface ethernet switch
set drop-if-invalid-or-src-port-not-member-of-vlan-on-ports=ether1,ether7,ether8,sfp9
Is it a correct way to config ?
Issue:
Vlan20 traffic itself is OK on both machines
Both CRS are reachable from Vlan99 and the Vlan traffic flows across tagged ports.
When I connect the Vlan20 untagged port to its dedicated untagged switch, connectivity on Vlan99 (both forwarded traffic and switch1-cpu acces) is lost, it comes back exactly whan I unplug the Vlan20 from switch (it has a completely separated phisical layer and ip subnet).
What happen ?