Start by creatings a new pppd file:
% su % cd /usr/sbin/ % mv pppd pppd.orig % vi pppdPut in the following text:
#!/usr/bin/perl my @args = @ARGV; s/^defaultroute/nodefaultroute/ for @args; exec "/usr/sbin/pppd.orig", @args;Save the file and quit, then make the new file executable with chmod +x pppd, and you're done. Now every session that is started with PPPD will not create a default route. This includes dialup, PPTP, and I would think pppoe for ADSL. Once up, it's just a matter of routing the networks you want over the network. I've configured my PPTP server to assign me the routes, it seems to work fine.
Enjoy!

