Mikrotik Load Balancing 2 WAN 2 LAN with Failover- Load balance 2 WAN on Mikrotik Router is a technique to distribute the traffic load on the two-paths connection in a balanced manner, so that traffic can run optimally, maximize throughput, minimize response time and avoid overload on one connection path. This experiment, I have 2 internet connections different ip WAN and 2 LAN. I've tried it, load balancing and failover can run normally.
You can see the mikrotik script below.
Network Topology
IP WAN 1 = 10.10.10.2/29
IP WAN 2 = 10.10.11.2/29
Block IP LAN 1 = 192.168.1.0/24 Gatheway 192.168.1.1 Mask 255.255.255.0
Block IP LAN 2 = 192.168.100.0/24 Gatheway 192.168.100.254 Mask 255.255.255.0
1. Add Ip address to interfaces mikrotik router
Mikrotik Script:
/ip addressadd address=10.10.11.2/29 interface=ether2 network=10.10.11.1add address=10.10.10.2/29 interface=ether1 network=10.10.10.1add address=192.168.1.1/24 interface=ether3 network=192.168.1.0
2. Setting IP Pool to restrict the range of IP that will distributed automatically by DHCP system that we enable.
Mikrotik Script :...
Read more ...