Hi, I’m new to mikrotik hardware i’m wondering how to assign a specific list of IP’s from Address List to a WAN 2. Currently its kinda working. Here’s my current setup.
In short, if it shouldn’t go to internet, don’t mark it. Simplest way would be to add another condition to mangle rule, dst-address=!192.168.0.0/16 (“!” means “not”; and use whatever subnet you have in LAN). But it’s not very efficient, because it’s done (conditions are checked) for every packet, so it’s better to first mark connection, and then work with that, e.g:
Nice!!
To the OP how many people (users) are you talking about?
Can you put them all on one subnet?
@Sob to keep using fastrack for the rest of the traffic in the forward chain is this correct/recommended? - putting these two rules before fastrack rule… /ip firewall filter
add action=accept chain=forward connection-state=established,related src-address-list=RoutesISP2
add action=accept chain=forward connection-state=established,related dst-address-list=RoutesISP2
{default fastrack rule}