Hi everyone, I am having a little bit of a problem trying to configure a router with two isp conneted to it. The problem is this: I have ISP1 and ISP2, each one with their particular gateway. After I configured everything (dyn nat, static nat, vpn, etc) everything works fine, except for the routing. I want to use ISP1 for vpn routing (which I do with static routes) and ISP2 for every other traffic (so i just create a last resort gw 0.0.0.0 0.0.0.0 ISP2) but I will also would like to access the other interface from the open internet which I can't do it now because the router doesn't know how to route packet and instead it tries to send it trought the Last resort gw (LSG) . I've try to put two LSG but it seems to be picking the ISP1 probably because in the routing table I have 4 routes with ISP1 and only 1 with the other one so probably it believes that it can "save" more routes using this one. The problem is that, this way all the dynamic nat map is build upon the inteface that I don't want to use. Is there a way to tell the router that if it receives a packet in interface 2 it replys trought that one? Should I use route maps? and if I do, how? Altought the best thing to accomplish is forcing the router to pick as LSG the interface that I want, cause now this is the case ip route 0.0.0.0 0.0.0.0 ISP 1 ip route 0.0.0.0 0.0.0.0 ISP 2 ip route X.X.X.X 255.255.255.255 ISP 1 ip route 172.16.0.0 255.255.240.0 ISP 1 ip route 192.168.0.0 255.255.128.0 ISP 1 ip route X.X.X.X 255.255.255.224 ISP 1 Having those routes in my config it picks the LSP with the ISP 1 as the default one, but I want it to be the other way around. How should I do? Thank everyone in advance.