WAN Failover and Fail-back with VOIP Connections
I have a 60E with 2 WAN connections: a coax cable broadband connection on WAN1 and a LTE connection on WAN2. I have fail-over configured and all traffic properly fails over to WAN2 when WAN1 goes offline. The issue is that some of the traffic is VOIP and when WAN1 comes back online, those VOIP connections don't drop and retain their connections through WAN2. How can I force all connections to drop from WAN2 so they are forced to fail back to WAN1?
Here is what my config code looks like:
conf sys link-monitor  edit wan1failover  set srcintf wan1  set server "8.8.8.8" "1.1.1.1"  set gateway-ip "<WAN1-GW>"  set interval 20  set failtime 7  set recoverytime 5  set update-cascade-interface enable  set update-static-route enable  set status enable  next  edit wan2failover  set srcintf wan2  set server "8.8.8.8" "1.1.1.1"  set gateway-ip "<WAN2-GW>"  set interval 20  set failtime 7  set recoverytime 5  set update-cascade-interface enable  set update-static-route enable  set status enable  end
