Mwan IP Address Change Issue

I am new to openwrt and just setup a load balancer using mwan, everything is working great but I am facing issue on some websites, for example on cPanel whenever I try to login it logs me out automatically saying that IP Address has changed.

I have 3 ISPs connected with the below LAN IPs:
192.168.0.1
192.168.1.1
192.168.2.1

I am a beginner, so any support on how to fix this would be really helpful.

Thanks a lot!

Try creating a rule like the existing default one with the sticky option enabled:

config rule 'https'
        option sticky '1'
        option dest_port '443'
        option proto 'tcp'
        option use_policy 'balanced'

From the guide:

2 Likes

Unfortunately, the issue is still there. I believe I misconfigured something in the rules, please find attached a screenshot of the rules that I have.

Worked now, below are the changes that I made:

Thanks a lot for your support, pavelgl :slight_smile:

You needed to enable sticky in the https rule at the top of the list.
The last rule https_sticky will not be matched, as it has the same matching conditions as the first.

1 Like

Thanks for letting me know, will remove the last rule.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.