Hi  again Tobias,<br><br>After reading your post once more I suspect we are talking about different things. I see you qouted my question why the last multipath is being chosen by Strongswan when configuring left=%any and initiating the connection, however Im talking about the route Strongswan chooses to forward remote clients out on the Internet. Do you think the problem is the same? My remote clients are connecting to Public IP on vlsn847, and when accessing the internet (leftsubnet=0.0.0.0/0) they are being always routed out the same interface, that is vlsn847. What I expect is that Strongswan will hand over the vpn clients traffic to the Linux kernel, which will do a normal route lookup and route the clients out on interface ppp0. Isnt this possible? Is it maybe something in Strongswan that makes it forward incoming traffic out on the Internet through the same interface?<br><br>---- Tobias Brunner skrev ----<br><br>Hi Dusan,<br><br>> default<br>>          nexthop via <a href="tel:90.225">90.225</a>.x.x  dev vlan845 weight 1<br>>          nexthop via <a href="tel:10.248">10.248</a>.x.x  dev ppp0 weight 256<br>>          nexthop via <a href="tel:85.24">85.24</a>.x.x  dev vlan847 weight 1<br>>          nexthop via <a href="tel:46.195">46.195</a>.x.x  dev ppp1 weight 1<br>><br>> My gateway is configured to use <a href="tel:10.248.0">10.248.0</a>.x as "default route" (highest <br>> weight/priority), but when Strongswan tried to initiate the tunnel it <br>> seems to always default too the last route, <a href="tel:46.195">46.195</a>.x.x, and this wont <br>> work as the remote peer is expecting <a href="tel:85.24">85.24</a>.x.x.<br><br>These kinds of multipath routes (via RTA_MULTIPATH) are currently not<br>supported by strongSwan when looking up source addresses/nexthops.  The<br>kernel-netlink plugin only sees one of these via RTA_GATEWAY and<br>RTA_OIF.  You could try to switch to the kernel's default route lookup<br>by setting either charon.install_routes=no (disables route installation<br>by strongSwan altogether, only works with <a href="tel:5.5.2">5.5.2</a>), or by setting<br><a href="http://charon.plugins.kernel-netlink.fwmark">charon.plugins.kernel-netlink.fwmark</a> to an arbitrary number not used yet<br>as firewall mark (this works since <a href="tel:5.3.3">5.3.3</a>).  However, I'm not sure if<br>that will return different values in RTA_GATEWAY/RTA_OIF or if it would<br>still be necessary to parse RTA_MULTIPATH.  How exactly do these kind of<br>kind of multipath routes compare to multiple routes with different<br>priorities/metrics?  In your case you have multiple paths with the same<br>weight, how is the actual nexthop/interface chosen by the kernel?<br>Round-robin?  Random?<br><br>Regards,<br>Tobias<br><br>