I want to redirect wlan1 to isp2 wlan1 has separate ip pool with own dhcp-server
How should I set that?
tnx for reply



Hello
if ether2 is not member of bridge then use
/ip firewall mangle add chain=prerouting src-address=192.168.101.0/24 action=mark-routing new-routing-mark=wlanUsers
/ip route add routing-mark=wlanUsers gateway=ether2-isp2
/ip firewall nat add chain=srcnat src-address=192.168.101.0/24 out-interface=ether2-isp2 action=masquerade
if it is member of a bridge replace ether2 with your bridge name in commands
be careful if ether2 is a member of a bridge set ip address to bridge and if not set ip address to ether2
Good luck