How can I do a simulation of two WANs with different GWs if I have a single ISP in order to be able to practice load balancing?
Thank you.
##Gateway1
/ip address
add address=192.168.100.1/24 interface=ether2 network=192.168.100.0
/ip dhcp-client
add disabled=no interface=ether1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
##Gateway2
/ip address
add address=192.168.200.1/24 interface=ether2 network=192.168.200.0
/ip dhcp-client
add disabled=no interface=ether1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=ether1
/ip address
add address=192.168.100.2/24 interface=bridge1 network=192.168.100.0
add address=192.168.200.2/24 interface=bridge1 network=192.168.200.0
/ip route
add check-gateway=ping distance=1 gateway=192.168.100.1 routing-mark=GW1
add check-gateway=ping distance=1 gateway=192.168.200.1 routing-mark=GW2