Morning all.
I have a x86 powered Mikrotik router in house and i enabled the proxy server on it. I also set it to transparently send all port 80 traffic to the proxy server… the problem is, it does not seem to be load balancing the connections…
I have 3 WAN connections, 2 @ 200mb/s each and one at 70. I have split them up into 7 connections, using the following:
18 ;;; 7/0 goes to WAN1
chain=prerouting action=mark-connection new-connection-mark=WAN1_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/0
19 ;;; 7/1 goes to WAN2
chain=prerouting action=mark-connection new-connection-mark=WAN2_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/1
20 ;;; 7/2 goes to WAN1
chain=prerouting action=mark-connection new-connection-mark=WAN3_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/2
21 ;;; 7/3 goes to WAN3
chain=prerouting action=mark-connection new-connection-mark=WAN3_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/3
22 ;;; 7/4 goes to WAN2
chain=prerouting action=mark-connection new-connection-mark=WAN2_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/4
23 ;;; 7/5 goes to WAN1
chain=prerouting action=mark-connection new-connection-mark=WAN1_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/5
24 ;;; 7/6 goes to WAN2
chain=prerouting action=mark-connection new-connection-mark=WAN2_conn
passthrough=yes dst-address-type=!local in-interface=LAN1
connection-mark=no-mark
per-connection-classifier=both-addresses-and-ports:7/6
So, basically each connection from the LAN port gets marked and is switched between each WAN port somewhat balanced… But, how do i add the mikrotik proxy to this? It seems that it is just fails half the time and works the rest… I would like it to use the same rules as the rest of my internal network (i also have rules to use different WAN ports for different addresses, eg UK VPN for BBC iPlayer, work vpn for work stuff, us vpn for US sites, etc).
Thanks.