I’ve a DSL connection at home. When I connect to the corporate VPN I’m unable to access any web page. I don’t know what info is needed so please ask. I’ll reply promptly.
![]() |
Patch reliability is unclear, but widespread attacks make patching prudent. Go ahead and patch, but watch out for potential problems. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Web with VPN
Home » Forums » Networking – routers, firewalls, network configuration » Web with VPN
- This topic has 9 replies, 4 voices, and was last updated 20 years ago.
Viewing 2 reply threadsAuthorReplies-
DaveA
AskWoody_MVPMarch 28, 2005 at 5:40 pm #937638The proxy server at work is most likely blocking your access to the web page. And ONLY the IT support will be able to remove the block.
Can you access the web page FROM work, but may be going through a different server?
DaveA I am so far behind, I think I am First
Genealogy....confusing the dead and annoying the living -
WSStuartR
AskWoody LoungerMarch 28, 2005 at 8:22 pm #937680Is your web browser configured to use a Proxy Server? If not then your employer’s firewall will almost certainly be blocking your traffic.
If there is a proxy server on the work network then you should configure your browser to use it. If there isn’t then you or may not be able to work around the problem, depending on the VPN software in use. It may be possible to manually configure routes so that work related traffic is directed through the VPN and other stuff goes directly. This may very well be prohibited by your employer’s security policy – so the proxy server is a better option.
StuartR
-
WSkc0dxh
AskWoody LoungerMarch 28, 2005 at 8:59 pm #937695Yes, corporate does use proxy for all outgoing traffic. I would like to direct only corporate traffic across the VPN while all undesignated traffic uses my default gateway (dsl modem/router). Can this be done in Win2k? I don’t have a need for my web traffic to pass through the corporate LAN, just Terminal Services, Citrix and the like.
-
WSStuartR
AskWoody LoungerMarch 29, 2005 at 3:58 am #937746It is possible to use the ROUTE command to specify which traffic should use which network interface.
Your VPN connection acts like a second network interface, and when the connection is set up it adds a set of routes so that all traffic will “prefer” to go through the tunnel.
A suitable incantantation of ROUTE ADD commands will tell TCP/IP to send all traffic through your normal network interface, except for stuff to particular subnets (such as your employer’s network). The exact commands you need to do this will depend on confidential information that you should probably not post here, such as the range of network addresses on your employers network. But the starting point will be to get the IP addresses of all the resources that you need to access on their network, and to use ROUTE PRINT to establish all your current routes. This is not for the faint hearted – and please remember what I said about possible conflict with your employer’s security policy.
StuartR
-
WSkc0dxh
AskWoody LoungerMarch 29, 2005 at 12:22 pm #937810I’ve checked with work and they don’t have a problem with this. I was hoping this wouldn’t come to manipulating routes manually. I’ve also verified that there is nothing in these routes that cannot be shared. It’s all a DMZ. So, here’s the output of route print when I am not connected to the VPN…
===========================================================================
Interface List
0x1 ……………………… MS TCP Loopback interface
0x1000003 …00 a0 cc e5 d6 72 …… PCI Bus Master Adapter
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.0.1 192.168.0.2 1
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
192.168.0.0 255.255.255.0 192.168.0.2 192.168.0.2 1
192.168.0.2 255.255.255.255 127.0.0.1 127.0.0.1 1
192.168.0.255 255.255.255.255 192.168.0.2 192.168.0.2 1
224.0.0.0 224.0.0.0 192.168.0.2 192.168.0.2 1
255.255.255.255 255.255.255.255 192.168.0.2 192.168.0.2 1
Default Gateway: 192.168.0.1
===========================================================================
Persistent Routes:
NoneNow here’s the output when I am connected…
===========================================================================
Interface List
0x1 ……………………… MS TCP Loopback interface
0x1000003 …00 a0 cc e5 d6 72 …… PCI Bus Master Adapter
0x6000004 …00 53 45 00 00 00 …… WAN (PPP/SLIP) Interface
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 172.16.1.82 172.16.1.82 1
0.0.0.0 0.0.0.0 192.168.0.1 192.168.0.2 2
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
172.16.1.82 255.255.255.255 127.0.0.1 127.0.0.1 1
172.16.255.255 255.255.255.255 172.16.1.82 172.16.1.82 1
192.168.0.0 255.255.255.0 192.168.0.2 192.168.0.2 1
192.168.0.2 255.255.255.255 127.0.0.1 127.0.0.1 1
192.168.0.255 255.255.255.255 192.168.0.2 192.168.0.2 1
216.136.89.196 255.255.255.255 192.168.0.1 192.168.0.2 1
224.0.0.0 224.0.0.0 172.16.1.82 172.16.1.82 1
224.0.0.0 224.0.0.0 192.168.0.2 192.168.0.2 1
255.255.255.255 255.255.255.255 192.168.0.2 192.168.0.2 1
Default Gateway: 172.16.1.82
===========================================================================
Persistent Routes:
NoneWhat should I do? I see the possibility of persistent routes. Is this worth while?
-
WSStuartR
AskWoody Lounger -
WSkc0dxh
AskWoody Lounger -
WSStuartR
AskWoody LoungerMarch 30, 2005 at 6:23 pm #938109Try changing the Metric associated with the default route that goes via your employers network., using the syntax
ROUTE CHANGE 0.0.0.0 MASK 0.0.0.0 172.16.1.82 METRIC 10
This should increase the metric for this default route, so the other default route (with a metric of 2) should get used instead. If this totally screws up your network then restore the original route with
ROUTE CHANGE 0.0.0.0 MASK 0.0.0.0 172.16.1.82 METRIC 1
You will need to do this manually after establishing the VPN, unless the address of 172.16.1.82 is always the same.
Let us know if it works
StuartR
-
-
-
-
-
WSmwolfman
AskWoody Lounger
Viewing 2 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
Mudança Interestadual: Dicas Essenciais para Clientes Satisfeitos (Awaiting moderation)
by
evdisaac133
2 hours, 32 minutes ago -
Why It’s Time to Upgrade from Windows 7 to Windows 10 (Awaiting moderation)
by
kasfiya
4 hours, 45 minutes ago -
We live in a simulation
by
Alex5723
5 hours, 5 minutes ago -
Netplwiz not working
by
RetiredGeek
4 hours, 27 minutes ago -
Windows 11 24H2 is broadly available
by
Alex5723
17 hours, 33 minutes ago -
Microsoft is killing Authenticator
by
Alex5723
1 hour, 3 minutes ago -
Downloads folder location
by
CWBillow
1 day ago -
Remove a User from Login screen
by
CWBillow
3 hours, 11 minutes ago -
TikTok fined €530 million for sending European user data to China
by
Nibbled To Death By Ducks
15 hours, 5 minutes ago -
Microsoft Speech Recognition Service Error Code 1002
by
stanhutchings
15 hours, 8 minutes ago -
Is it a bug or is it expected?
by
Susan Bradley
19 hours, 46 minutes ago -
Image for Windows TBwinRE image not enough space on target location
by
bobolink
14 hours, 16 minutes ago -
Start menu jump lists for some apps might not work as expected on Windows 10
by
Susan Bradley
1 day, 14 hours ago -
Malicious Go Modules disk-wiping malware
by
Alex5723
1 day, 3 hours ago -
Multiple Partitions?
by
CWBillow
1 day, 4 hours ago -
World Passkey Day 2025
by
Alex5723
1 day, 21 hours ago -
Add serial device in Windows 11
by
Theodore Dawson
2 days, 13 hours ago -
Windows 11 users reportedly losing data due forced BitLocker encryption
by
Alex5723
13 hours, 58 minutes ago -
Cached credentials is not a new bug
by
Susan Bradley
2 days, 17 hours ago -
Win11 24H4 Slow!
by
Bob Bible
2 days, 17 hours ago -
Microsoft hiking XBox prices starting today due to Trump’s tariffs
by
Alex5723
2 days, 15 hours ago -
Asus adds “movement sensor” to their Graphics cards
by
n0ads
2 days, 20 hours ago -
‘Minority Report’ coming to NYC
by
Alex5723
2 days, 16 hours ago -
Apple notifies new victims of spyware attacks across the world
by
Alex5723
3 days, 4 hours ago -
Tracking content block list GONE in Firefox 138
by
Bob99
3 days, 4 hours ago -
How do I migrate Password Managers
by
Rush2112
2 days, 11 hours ago -
Orb : how fast is my Internet connection
by
Alex5723
2 days, 13 hours ago -
Solid color background slows Windows 7 login
by
Alex5723
3 days, 16 hours ago -
Windows 11, version 24H2 might not download via Windows Server Updates Services
by
Alex5723
3 days, 14 hours ago -
Security fixes for Firefox
by
Susan Bradley
16 hours, 8 minutes ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.