I am trying to setup the router so that ether3 routes out the t1 and ether4 to go out the cable. On top of this if either connection fails it falls over.
Code: Select all
#wan
/ip address add address=10.0.1.2/24 interface=ether1
/ip address add address=10.0.2.2/24 interface=ether2
#lan
/ip address add address=192.168.1.1/24 interface=ether3
/ip address add address=192.168.2.1/24 interface=ether4
/ip route add gateway=10.0.1.2
/ip route add gateway=10.0.2.2 distance=10
/ip firewall nat add action=masquerade chain=srcnat comment="" disabled=no
Thanks