I don’t know how VyOS translates the set interfaces ethernet eth3 policy route
, but I bet it uses iptables
. Therefore I doubt those rules would come before the WAN load-balancing policy ones.
(Could you paste the iptables -t nat -S
and iptables -t mangle -S
for reference?)
Moreover please note that the WAN load-balancing feature uses the tables starting from 1
, thus including the one you have configured. Try to use another number, say 512 or above.
In order to see how the rules are applied use ip rule show
and ip route show table X
, where X
is either default
(should be empty), main
or the number you have chosen.