send certain IP's to two seperate internet pipes

Not bonding … not load balancing … I want to send .50-.100 addresses through one internet connection on eth1 and send .101 thru .150 addresses through another internet connection ALSO on eth1.

One eth1 connection is a static public
The other eth1 connection is a DHCP private IP.

A little help please. New Mikrotiker here!

Use /ip firewall mangle;

  • add two rules with routing-mark.
  • one rule for 50-100. src-addresses;
  • second rule for 101-150 addresses;

Configure /ip route.

  • add one route over ISP1 with routing-mark 1;
  • add second route over ISP2 with routing-mark 2;

Thank you!!! It’s working like a charm!!!