Link to home
Start Free TrialLog in
Avatar of attitudevijay
attitudevijay

asked on

How do I stay connected to my Wireless and Dial up at the sametime.

My computer is connected to to the Internet thru my wireless LAN . I need to dial in to my office network to access certain computers in the office. Dial Up is the only way I can connected to my office (VLAN or VPN not possible). When I connect to my office thru the Dial up I don't have access to the internet anymore.   Can I bridge my dial up connection and the Wireless LAN so i have access to the internet when Im connected to the Dial up ? If Yes how ?

Im running Windows XP Pro
ASKER CERTIFIED SOLUTION
Avatar of Alan Huseyin Kayahan
Alan Huseyin Kayahan
Flag of Sweden image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of attitudevijay
attitudevijay

ASKER

Lets say Im talking about computer A.

I have a remote access client  of logmein dot com running on computer A . So I remote access A from computer B using logmein. I then connect to a dial up network from computer A. I only access a certain IP 171.16.245.15 on the network that I dialed into in IE on computer A. But my remote connection from computer B gets disconnected as soon as computer A connects to the Dial up. I would like logmein to keep working when A connects to the dial up.

Im an researching into the option that you suggested. Any advice is greatly appreciated. Thanks a Tonn.

VJ



can't you make a network using lan
or using remote desktop connection?
Thanks MrHusy

Tx Mathwiz314 for the reply. I wish I could but the office people wont do it. So I had to deal with it myway.

I wrote a script and added a macro to run the script right after the dial up connection has been established. Works as intended.

------
route delete 0.*
route add 0.0.0.0 mask 0.0.0.0 172.16.245.141 metric 20
route add 0.0.0.0 mask 0.0.0.0 192.168.1.1 metric 1

route delete 224.*
route add 224.0.0.0 mask 240.0.0.0 192.168.1.110 metric 1
route add 224.0.0.0 mask 240.0.0.0 172.16.245.141 metric 30

route delete 255.*
route add 255.255.255.255 mask 255.255.255.255 172.16.245.141 metric 30
route add 255.255.255.255 mask 255.255.255.255 192.168.1.110 metric 1
----
     
       You are welcome.
       Nice to see that your problem is resolved.