Thank you both for your answer.
What you wrote bpwl does make a lot of sense to me. Thank you very much.
In the meantime I fiddled around myself a bit with some success. I basically added a new bridge between eth4 and 5 and connected the 2 LANs there, setting the correct ip networks for both. This gave me a connection from one network to the other and I thought everything is fine. But today I noticed that the IP address of my computer changed, since the DHCP server on my LAN and the one on the smart home network were both reachable from my computer… So i scrapped this one and went through your steps, bpwl:
I got this working as well, and my computer “stayed” in my network. So this already looks better than my approach.
I started from the default config and followed the mentioned steps and had only minor questions:
SRCnat (masquerade): what do you mean with that? Where do I need to set this?
Make sure this IP address on the bridge is static as needed for point 3.: Kinda clear, but isnt DHCP client and static IP a contradiction?
Set a route entry in the WAN/wifi/LAN router for the IP-range of the Smart Home LAN: I didnt do that and its working. Maybe just from inside the LAN and not from the internet side or whats the reason to do that?
EDIT its kinda strange, since some apps are working with that setup and some dont. I notices that i couldnt ping the smart home devices from my LAN. So i added the static route on my wifi router and pinging those devices work fine now.
Heres my config:
# oct/01/2023 14:28:19 by RouterOS 6.48.6
# software id = Y4Y7-6PSX
#
# model = RB750r2
# serial number = HE908Z1S5M8
/interface bridge
add admin-mac=48:A9:8A:93:96:F7 auto-mac=no comment=defconf name=bridge
/interface list
add comment=defconf name=WAN
add comment=defconf name=LAN
/interface wireless security-profiles
set [ find default=yes ] supplicant-identity=MikroTik
/ip hotspot profile
set [ find default=yes ] html-directory=hotspot
/ip pool
add name=default-dhcp ranges=192.168.88.10-192.168.88.254
/interface bridge port
add bridge=bridge comment=defconf interface=ether2
add bridge=bridge comment=defconf interface=ether3
add bridge=bridge comment=defconf interface=ether4
add bridge=bridge comment=defconf interface=ether5
/ip neighbor discovery-settings
set discover-interface-list=LAN
/interface list member
add comment=defconf interface=bridge list=LAN
add comment=defconf interface=ether1 list=WAN
/ip address
add address=192.168.0.254/24 interface=bridge network=192.168.0.0
/ip dhcp-client
add add-default-route=no comment=defconf disabled=no interface=ether1
add disabled=no interface=bridge
/ip dhcp-server network
add address=192.168.88.0/24 comment=defconf gateway=192.168.88.1
/ip dns
set allow-remote-requests=yes
/ip dns static
add address=192.168.88.1 comment=defconf name=router.lan
/ip firewall filter
add action=accept chain=input comment=\
"defconf: accept established,related,untracked" connection-state=\
established,related,untracked
add action=drop chain=input comment="defconf: drop invalid" connection-state=\
invalid
add action=accept chain=input comment="defconf: accept ICMP" protocol=icmp
add action=accept chain=input comment=\
"defconf: accept to local loopback (for CAPsMAN)" dst-address=127.0.0.1
add action=drop chain=input comment="defconf: drop all not coming from LAN" \
in-interface-list=!LAN
add action=accept chain=forward comment="defconf: accept in ipsec policy" \
ipsec-policy=in,ipsec
add action=accept chain=forward comment="defconf: accept out ipsec policy" \
ipsec-policy=out,ipsec
add action=fasttrack-connection chain=forward comment="defconf: fasttrack" \
connection-state=established,related
add action=accept chain=forward comment=\
"defconf: accept established,related, untracked" connection-state=\
established,related,untracked
add action=drop chain=forward comment="defconf: drop invalid" \
connection-state=invalid
add action=drop chain=forward comment=\
"defconf: drop all from WAN not DSTNATed" connection-nat-state=!dstnat \
connection-state=new in-interface-list=WAN
/ip firewall nat
add action=masquerade chain=srcnat comment="defconf: masquerade" \
ipsec-policy=out,none out-interface-list=WAN
/system clock
set time-zone-name=Europe/Berlin
/system identity
set name="MikroTik Router"
/tool mac-server
set allowed-interface-list=LAN
/tool mac-server mac-winbox
set allowed-interface-list=LAN