I need to subnet the network to have the following networks:
192.168.150.x
192.168.151.x
192.168.152.x
192.168.153.x
The problem I am having is that the only easy way I can get to the 151-153
subnets remotely is by enabling the default gateway option on the VPN
connection which then causes the user to not be able to browse while they
are connected to work.
For myself I usually just use a batch file with the "Route Add" command to
set the routes to my IP Address on my VPN connection like so
AddRoute.bat (Last digits of IP)
=============================
route add 192.168.151.0 mask 255.255.255.0 192.168.150.%1
route add 192.168.152.0 mask 255.255.255.0 192.168.150.%1
route add 192.168.153.0 mask 255.255.255.0 192.168.150.%1
=============================
Is there an easier way to get this routes down to VPN clients automatically?
"Jordan" <no...@here.com> wrote in message
news:um16alDi...@TK2MSFTNGP04.phx.gbl...
You could use one bundled route rather than a lot of individual ones.
eg
route add 192.168.0.0 mask 255.255.0.0 192.168.150.%1
I want it so the user still uses their own route to the Internet for all
addresses other that the 192.168.15y.x when they VPN in.
"Bill Grant" <not.available@online> wrote in message
news:ObT$zdFiKH...@TK2MSFTNGP06.phx.gbl...
"Jordan" <no...@here.com> wrote in message
news:uIxfS2ti...@TK2MSFTNGP02.phx.gbl...