I have an interesting one. Recently I changed my service provider for two satellite links. I have 3 satellite links all connected together using PCC load balancing. Last week I updated my software to 6.15 on my routers which is around the same time that the new link were installed. The load balancing seems to work well the only problem we have is when a user opens a site that is https. The browser seems to hang on establishing a secure link and often the page times out. If you refresh generally on the second or third time it loads. If you disable the links at test each individually there does not seem to be an issue. This tends to happen after some time. does anyone have any ideas on what could be going wrong. Below is my mangle rules and nat
IP Mangle
0 chain=input action=mark-connection new-connection-mark=WAN1_CONN
passthrough=yes in-interface=WAN1
1 chain=input action=mark-connection new-connection-mark=WAN2_CONN
passthrough=yes in-interface=WAN2
2 chain=input action=mark-connection new-connection-mark=WAN3_CONN
passthrough=yes in-interface=WAN3
3 chain=output action=mark-routing new-routing-mark=TO_WAN1 passthrough=yes
connection-mark=WAN1_CONN
4 chain=output action=mark-routing new-routing-mark=TO_WAN2 passthrough=yes
connection-mark=WAN2_CONN
5 chain=output action=mark-routing new-routing-mark=TO_WAN3 passthrough=yes
connection-mark=WAN3_CONN
6 chain=prerouting action=accept dst-address=192.168.2.0/24
in-interface=BACKBONE
7 chain=prerouting action=accept dst-address=192.168.3.0/24
in-interface=BACKBONE
8 chain=prerouting action=accept dst-address=192.168.4.0/24
in-interface=BACKBONE
9 chain=prerouting action=mark-connection new-connection-mark=WAN1_CONN
passthrough=yes dst-address-type=!local in-interface=BACKBONE
per-connection-classifier=src-address:3/0
10 chain=prerouting action=mark-connection new-connection-mark=WAN2_CONN
passthrough=yes dst-address-type=!local in-interface=BACKBONE
per-connection-classifier=src-address:3/1
11 chain=prerouting action=mark-connection new-connection-mark=WAN3_CONN
passthrough=yes dst-address-type=!local in-interface=BACKBONE
per-connection-classifier=src-address:3/2
12 chain=prerouting action=mark-routing new-routing-mark=TO_WAN1
passthrough=yes in-interface=BACKBONE connection-mark=WAN1_CONN
13 chain=prerouting action=mark-routing new-routing-mark=TO_WAN3
passthrough=yes in-interface=BACKBONE connection-mark=WAN3_CONN
14 chain=prerouting action=mark-routing new-routing-mark=TO_WAN2
passthrough=yes in-interface=BACKBONE connection-mark=WAN2_CONN
IP Nat
1 chain=srcnat action=masquerade out-interface=WAN1
2 chain=srcnat action=masquerade out-interface=WAN2
3 chain=srcnat action=masquerade out-interface=WAN3