Good day:
On page 20 of this pdf https://mum.mikrotik.com/presentations/PL12/Load_Balancing_workshop.pdf
They say:
Traffic to Connected Networks
- As connected routes are available only in “main” routing table, it is necessary that traffic to connected networks stay in “main” routing table
- This will also allow proper communication between locally and remotely connected clients
11.11.11.0 wan1 network
12.12.12.0 wan2 network
192.168.88.0 lan network
/ip firewall mangle add chain=prerouting src-address=192.168.88.0/24 dst-address=11.11.11.0/24 action=accept
/ip firewall mangle add chain=prerouting src-address=192.168.88.0/24 dst-address=12.12.12.0/24 action=accept
/ip firewall mangle add chain=prerouting src-address=192.168.88.0/24 dst-address=192.168.88.0/24 action=accept
how can I achieve the first two rules with dhcp wan clients?
Thanks in advance