[Solved] CRS: How to remove VLAN-tag on egress for specific port?

Edit: Seems as the problem was solved by a reboot. Perhaps some meantime learings with a wrong config were in cache.

Hi,

I have a Cloud Router Switch (CRS212-1G-10S-1S+) where I have some VLAN problems. Perhaps someone could help.

SFP1 is inbound connection without VLAN. SFP9 should be VLAN Trunk Port. SFP1->VLAN101
Tagging of packets that come from SFP1 are correctly tagged with 101.
But packets leaving on SFP1 still have the VLAN 101 tag and I am not able to remove it.

/interface ethernet
set [ find default-name=sfp1 ] master-port=sfpplus1
set [ find default-name=sfp9 ] master-port=sfpplus1
/interface ethernet switch
set drop-if-invalid-or-src-port-not-member-of-vlan-on-ports=sfp1
/interface ethernet switch egress-vlan-tag
add tagged-ports=sfp9 vlan-id=101
/interface ethernet switch ingress-vlan-translation
add customer-vid=0 new-customer-vid=101 ports=sfp1 sa-learning=yes
/interface ethernet switch vlan
add ports=sfp9,sfp1 vlan-id=101

I guess use of switch1-cpu means that I loose wirespeed and the 400mhz cpu is used. So I want to prevent this. And because I can tag without use of the CPU I think it should be also possible to strip tag without the CPU. Am I right?

I tried things like

/interface ethernet switch egress-vlan-tag
add tagged-ports=sfp1 vlan-id=0
/interface ethernet switch egress-vlan-translation
new-customer-vid=0 ports=sfp1
/interface ethernet switch port
set sfp1 egress-vlan-mode=untagged

but had no success (still seeing VLAN ID in Wireshark. With new-customer-vid=0 I saw VLAN ID 0 and VLAN ID 101)

Thank you very much
Martin