Hi everyone.
I have a question and hope you people can help me out. Through the next youtube movie I have setup 2 connections on my Mikrotik.
https://www.youtube.com/watch?v=ECqntLlhaz8
Failover works great, only the load balancing (like in the video) doesn't work.
I have used this set of terminal rules with different values of my connection and LAN port of course:
Link(1) - 192.168.3.1 = WAN1
Link(2) - 192.168.4.1= WAN2
WAN-OUT = However u wanna export traffic
/ip firewall mangle
add chain=input in-interface=WAN1 action=mark-connection new-connection-mark=WAN1_conn
add chain=input in-interface=WAN2 action=mark-connection new-connection-mark=WAN2_conn
add chain=output connection-mark=WAN1_conn action=mark-routing new-routing-mark=to_WAN1
add chain=output connection-mark=WAN2_conn action=mark-routing new-routing-mark=to_WAN2
add chain=prerouting dst-address=192.168.3.0/24 action=accept in-interface=WAN-OUT
add chain=prerouting dst-address=192.168.4.0/24 action=accept in-interface=WAN-OUT
add chain=prerouting dst-address-type=!local in-interface=WAN-OUT per-connection-classifier=both-addresses-and-ports:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local in-interface=WAN-OUT per-connection-classifier=both-addresses-and-ports:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
add chain=prerouting connection-mark=WAN1_conn in-interface=WAN-OUT action=mark-routing new-routing-mark=to_WAN1
add chain=prerouting connection-mark=WAN2_conn in-interface=WAN-OUT action=mark-routing new-routing-mark=to_WAN2
/ip route
add dst-address=0.0.0.0/0 gateway=192.168.3.1 routing-mark=to_WAN1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.4.1 routing-mark=to_WAN2 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.3.1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.4.1 distance=2 check-gateway=ping
/ip firewall nat
add chain=srcnat out-interface=WAN1 action=masquerade
add chain=srcnat out-interface=WAN2 action=masquerade
Now here is mine (I have changed the values of my WAN connections for privacy):
/ip firewall mangle
add chain=input in-interface=ether1-GW-Zantel action=mark-connection new-connection-mark=WAN1_conn
add chain=input in-interface=ether2-GW2-Maishal action=mark-connection new-connection-mark=WAN2_conn
add chain=output connection-mark=WAN1_conn action=mark-routing new-routing-mark=to_ether1-GW-Zantel
add chain=output connection-mark=WAN2_conn action=mark-routing new-routing-mark=to_ether2-GW2-Maishal
add chain=prerouting dst-address=192.168.1.0/24 action=accept in-interface=ether3-LAN
add chain=prerouting dst-address=192.168.2.0/24 action=accept in-interface=ether3-LAN
add chain=prerouting dst-address-type=!local in-interface=ether3-LAN per-connection-classifier=both-addresses-and-ports:2/0 action=mark-connection new-connection-mark=WAN1_conn passthrough=yes
add chain=prerouting dst-address-type=!local in-interface=ether3-LAN per-connection-classifier=both-addresses-and-ports:2/1 action=mark-connection new-connection-mark=WAN2_conn passthrough=yes
add chain=prerouting connection-mark=WAN1_conn in-interface=ether3-LAN action=mark-routing new-routing-mark=to_ether1-GW-Zantel
add chain=prerouting connection-mark=WAN2_conn in-interface=ether3-LAN action=mark-routing new-routing-mark=to_ether2-GW2-Maishal
/ip route
add dst-address=0.0.0.0/0 gateway=192.168.1.1 routing-mark=to_ether1-GW-Zantel check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.2.1 routing-mark=to_ether2-GW2-Maishal check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.1.1 distance=1 check-gateway=ping
add dst-address=0.0.0.0/0 gateway=192.168.2.1 distance=2 check-gateway=ping
/ip firewall nat
add chain=srcnat out-interface=ether1-GW-Zantel action=masquerade
add chain=srcnat out-interface=ether2-GW2-Maishal action=masquerade
I hope you can help out.