On Thu, Nov 11, 2010 at 12:20, Cameron Crum <[email protected]> wrote:
> On Windows I do not add routes. It seems to handle it for me. I'll try > adding the routes on linux and see what happens. The main problem with that > is I never know exactly which private subnets I'll need. I guess I can add > routes for al the private ranges, but that is kind of a hassle. > I think a Windows server (configured with the routes you need), talking to a Windows client, handles setting that up on its own. For Linux, it should be easy enough to create a shell script that creates the routes you need. Something like: #!/bin/bash route add 10.10.10.0/24 via $1 route add 10.20.30.0/24 via $1 ... and so on Then, once you're logged in, just run "myroutes.sh 10.50.13.41". Depending on your PPTP client setup, you probably can even get this script to run automatically as part of setting up the session. You'll probably also want a similar script to run after you log out, with a bunch of 'route del' commands. David Smith MVN.net
-------------------------------------------------------------------------------- WISPA Wants You! Join today! http://signup.wispa.org/ -------------------------------------------------------------------------------- WISPA Wireless List: [email protected] Subscribe/Unsubscribe: http://lists.wispa.org/mailman/listinfo/wireless Archives: http://lists.wispa.org/pipermail/wireless/
