Loadbalincing with PCC: how to set rules to force ip addresses to a specific connection

Hi guys, reading the Wiki and thanks to the forum support I’ve correctly configured a loadbalincing using PCC.
Now I need to force the traffic of some specific addresses to a specific channell.
In example: traffic to and from 192.168.1.5 to WAN1 only.

Can someone guide me to the correct configuration?

In this post you can see my current consiguration.

Thanks in advance!

something like this:

/ip firewall address-list
add list=ip_wan1 address=192.168.1.5

/ip firewall mangle
add action=mark-routing chain=prerouting new-routing-mark=static-wan1 src-address-list=ip_wan1 passthrough=no

/ip route
add distance=1 dst-address=0.0.0.0/0 gateway=pppoe-out1 routing-mark=static-wan1 scope=255 target-scope=10

thanks Bingo. I’ll test it and I let you know in the next days!

Something is going wrong..
The rules seem to not affect the routes and both addresses pass to both wans…

did you moved mangle rule to top. if not move mangle rule to top and you will see affection.

Ehmm.. honestly speaking I’m using Winbox and the rule has been created automatically at the 10th position. There is no way to move/drag the rule up..
Where am I wrong?

Select (highlight) the mangle rule, then click over it again and drag it…

This system works on the Firewall rules, but not for the prerouting lines in the mangle section..

Works fine for me, just checked…

I’ve update the Winbox and now I’m able to move mangle..

Now I’ve to test it, if the rule works.

It works!
Thanks to all, guys!