mistaken "all" to "0.0.0.0" that use "ip rule add". correct "all" is "0.0.0.0/0". example: # ip rule add from all table 1 # ip rule list 0: from all lookup local 32765: from 0.0.0.0 lookup 1 32766: from all lookup main 32767: from all lookup default # ip rule add from 0.0.0.0/0 table 2 # ip rule list 0: from all lookup local 32764: from all lookup 2 ;<- set "0.0.0.0/0" 32765: from 0.0.0.0 lookup 1 ;<- set "all" 32766: from all lookup main 32767: from all lookup default
Created attachment 91 [details] Patch Please confirm that this patch helps
fixed in revision 25508, thanks.