like you I get busy, but was playing around this morning. This, even if incorrect made .24 use wan1Changing from Failover Mode to Load Balance Mode does require a reboot unfortunately. If you switch back to Failover Mode you could add your rules like this via CLI. *** I realized I mistyped my example to you in my prior post as well. ***
Test using this example:
Code:ip rule add from 192.168.50.137 to all table 200 priority 150
Once you have tested that you could add something like this firewall-start script to make sure it stays added and as well doesn't create duplicates, add each IP to the IPS array, one IP per line between the quotes.
Code:# Redirect IPs to WAN1 IPS=' 192.168.50.137 ' TABLE="200" for IP in ${IPS}; do if [ -z "$(ip rule list from ${IP} to all lookup ${TABLE} priority 150)" ] >/dev/null;then ip rule add from ${IP} to all table ${TABLE} priority 150 fi done IPS="" TABLE=""
ip rule add from 192.168.50.24 to all table 200 lookup wan1
Fyi, i struggle with this stuff