Multiple WANs connection

hi everybody
i have a mikrotik cloud CCR1036-12G-4S
also 2 ISP on 2 SFP ports
one LAN different subnets on one Ethernet
No NAT only Real IPS

i need to know how can i make the default gateway for different subnets to be redirected throught which interface
i.e 214.22.22.33/24 to have its gateway used on SFP1 to ISP1
and 250.22.33.44 /24 to have its gateway used on SFP2 to ISP2

also i was requesting for BGP but it still ripe for registration
i need to make a config that i can easily upgrade to BGP without any impact
Thanks

  1. Add two default routes - one for each ISP. The default route that is listed on position numer 1 should have routing-mark=ISP2 configured.
    1 In IP Firewall Mangle you should add a rule in chain prerouting, for the 2nd ISP’s subnet as src-address to apply the routing-mark ISP2 to the connections.
    Should work.

don’t use mangle use
use route rule it will use less processor especially if you use or plan to use any QOS rules. If you use mangle to push a route rule it will complicate or even possibly break your QOS rules

heres an example

/ip route rule
add comment="Travis Laptop" src-address=172.20.x.y/32 table=\
    ISP2

table in route rule is the same thing as routing mark in /ip firewall mangle