Hello,
I have the below wan load balance configuration
set load-balancing wan interface-health eth0 failure-count ‘3’
set load-balancing wan interface-health eth0 nexthop dhcp
set load-balancing wan interface-health eth0 success-count ‘1’
set load-balancing wan interface-health eth0 test 1 target ‘8.8.8.8’
set load-balancing wan interface-health eth0 test 1 type ‘ping’
set load-balancing wan interface-health eth1 failure-count ‘3’
set load-balancing wan interface-health eth1 nexthop dhcp
set load-balancing wan interface-health eth1 success-count ‘1’
set load-balancing wan interface-health eth1 test 1 target ‘8.8.8.8’
set load-balancing wan interface-health eth1 test 1 type ‘ping’
set load-balancing wan rule 10 failover
set load-balancing wan rule 10 inbound-interface ‘any’
set load-balancing wan rule 10 interface eth1
set load-balancing wan rule 20 failover
set load-balancing wan rule 20 inbound-interface ‘any’
set load-balancing wan rule 20 interface eth0
set load-balancing wan sticky-connections inbound
and my goal is to route all the traffic towards eth1, but if eth1 is down then route towards eth0.
But with my current config I see the traffic balances between eth1 and eth0 which is not what I want.
Any idea why?