I have a fairly simple config which works great on RouterOS 6.
Upgrading to RouterOS 7, breaks this config, no IP address is obtained through the trunk VLAN port, no communication (also access-port connected devices cannot communicate).
What might be wrong, needs to be changed?
# feb/24/2022 00:00:00 by RouterOS 6.49.2
# software id = 84GZ-779U
#
# model = RB760iGS
# serial number = E1F10EB756FC
/interface bridge
add comment="VLAN filtered Bridge" name=bridge pvid=10 vlan-filtering=yes
/interface ethernet
set [ find default-name=ether1 ] comment=Uplink
set [ find default-name=ether2 ] comment="Guest VLAN"
set [ find default-name=ether3 ] comment="IoT VLAN"
set [ find default-name=ether4 ] comment="MacBook - Private VLAN"
set [ find default-name=ether5 ] comment="COMP1 - Private VLAN"
set [ find default-name=sfp1 ] disabled=yes
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/interface bridge port
add bridge=bridge interface=ether1
add bridge=bridge interface=ether2 pvid=20
add bridge=bridge interface=ether3 pvid=30
add bridge=bridge interface=ether4 pvid=10
add bridge=bridge interface=ether5 pvid=10
/interface bridge vlan
add bridge=bridge tagged=ether1 untagged=ether4,ether5 vlan-ids=10
add bridge=bridge tagged=ether1 untagged=ether2 vlan-ids=20
add bridge=bridge tagged=ether1 untagged=ether3 vlan-ids=30
/ip dhcp-client
add disabled=no interface=bridge
/system clock
set time-zone-name=Europe/Budapest
/system identity
set name=hexS
/system package update
set channel=upgrade
/system routerboard settings
set auto-upgrade=yes
Thanks!