Hello everybody. There are many articles on the Internet on how to configure MultiWAN on Router OS. I have a similar task, but there is one fundamental difference - I need to configure 3 WAN networks and 3 LAN networks on one router, which will work according to the scheme:
Each WAN-LAN pair should be independent from the others, and LAN users should not see users from other LANs. Each LAN has different users and different services (web servers, mail, network controllers, ERP, and so on).
I don’t need redundancy - if one WAN falls, then falls the corresponding internet connection and corresponding LAN loose internet access.
What is the best and more correct way to implement this? Mangle, VLAN? Advise …
THREE ROUTE RULES
Where you have three corresponding Route Rules (that are constructed thusly)
Source address=subnet of LAN (like 10.1.0.0/24)
Action: Lookup-only-in-table
Table: LANX-Traffic
Done! (no mangling required)
As for source nat you could do it with one rule
add chain=srcnat action=masquerade out-interface-list=WAN
Or three separate rules (which I tend to do)
add chain=srcnat action=masquerade out-interface=pppoe1-out
add chain=srcnat action=masquerade out-interface=pppoe2-out
add chain=srcnat action=masquerade out-interface=pppoe3-out