Cloud Router Switch Voice Vlan

I’m trying to setup a CRS-125-24-15-2HnD-IN with all the routing and the switching in the same box. I’m new to routerOS, I’m wondering if it’s possible to tagged one vlan (Voice VLAN) and untagged the data vlan on the same physical interface like on all others switches out there (Cisco, Adtran, HP, 3COM,etc.).

In this config I’m trying to tagged VLAN80 and untagged VLAN1 on port ether3:

jan/02/1970 00:50:57 by RouterOS 6.17

software id = 5TRG-22XN

/interface bridge
add l2mtu=1588 name=br_voip
/interface wireless
set [ find default-name=wlan1 ] l2mtu=2290
/interface ethernet
set [ find default-name=ether3 ] master-port=ether2
set [ find default-name=ether4 ] master-port=ether2
set [ find default-name=ether5 ] master-port=ether2
/interface vlan
add interface=ether2 l2mtu=1584 name=VOIP vlan-id=80
add interface=ether2 l2mtu=1584 name=default vlan-id=1
/interface ethernet switch
set forward-unknown-vlan=no
/ip hotspot user profile
set [ find default=yes ] idle-timeout=none keepalive-timeout=2m
mac-cookie-timeout=3d
/ip pool
add name=PC_Pool ranges=192.168.1.100-192.168.1.254
add name=Phones_Pool ranges=192.168.80.100-192.168.80.254
add name=dhcp_pool1 ranges=192.168.1.100-192.168.1.254
add name=dhcp_pool2 ranges=192.168.80.100-192.168.80.254
/ip dhcp-server
add address-pool=dhcp_pool1 disabled=no interface=default name=dhcp_default
add address-pool=dhcp_pool2 disabled=no interface=VOIP name=dhcp_voip
/port
set 0 name=serial0
/interface bridge port
add bridge=br_voip interface=ether2
/interface ethernet switch egress-vlan-tag
add tagged-ports=switch1-cpu vlan-id=1
add tagged-ports=switch1-cpu vlan-id=80
/interface ethernet switch ingress-vlan-translation
add customer-vid=0 new-customer-vid=1 ports=ether3 sa-learning=yes
add customer-vid=0 new-customer-vid=80 ports=ether4 sa-learning=yes
/interface ethernet switch vlan
add ports=ether3,switch1-cpu vlan-id=1
/ip address
add address=192.168.1.1/24 interface=default network=192.168.1.0
add address=192.168.80.1/24 interface=VOIP network=192.168.80.0
/ip dhcp-server network
add address=192.168.1.0/24 dns-server=8.8.8.8 gateway=192.168.1.1
add address=192.168.80.0/24 dns-server=8.8.8.8 gateway=192.168.80.1
/ip ipsec policy
add template=yes
/ip upnp
set allow-disable-external-interface=no
/system leds
set 0 interface=wlan1
/system ntp client
set primary-ntp=132.246.11.229

did you found a solution for this, I am looking for something similar?