PC Review


Reply
Thread Tools Rate Thread

Dialup and Wifi at same time

 
 
Chris Hagwood
Guest
Posts: n/a
 
      9th Sep 2004
We have mobile users on a dial-up connection via CDPD. I would like
them to be able to get to the network via WiFi cards when the drive up
to hotspots.

How do I get the mobile apps to use the dial-up, while allowing other
apps to use the WiFi when they are in range?
 
Reply With Quote
 
 
 
 
Jeroen van Bemmel
Guest
Posts: n/a
 
      9th Sep 2004
If 'the mobile apps' use fixed servers in your backend, you can add a static
route to your server IP range for the CDPD adapter
(on each laptop)

Depending on the Windows version you use client side, Windows will be smart
enough to route over WiFi when available, and dial-up otherwise

What's the problem with having the mobile apps use WiFi?

"Chris Hagwood" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> We have mobile users on a dial-up connection via CDPD. I would like
> them to be able to get to the network via WiFi cards when the drive up
> to hotspots.
>
> How do I get the mobile apps to use the dial-up, while allowing other
> apps to use the WiFi when they are in range?



 
Reply With Quote
 
Chris Hagwood
Guest
Posts: n/a
 
      10th Sep 2004
"Jeroen van Bemmel" <(E-Mail Removed)> wrote in message news:<a32b$4140bd2d$513bab05$(E-Mail Removed)>...
> If 'the mobile apps' use fixed servers in your backend, you can add a static
> route to your server IP range for the CDPD adapter
> (on each laptop)
>
> Depending on the Windows version you use client side, Windows will be smart
> enough to route over WiFi when available, and dial-up otherwise
>
> What's the problem with having the mobile apps use WiFi?


The backend servers for the mobile apps validate and let the users in
through the firewall based on their static IP's. So, that traffic has
to go through the CDPD network.

When they're in a wifi hotspot, I want everything else to go through
the wifi.

Is there an easy way to tell it the two or three IP servers to use
CDPD exclusively, and then try WiFi for everything else first? They
are on WinXPpro.
 
Reply With Quote
 
Jeroen van Bemmel
Guest
Posts: n/a
 
      10th Sep 2004
Use 'route add <server ip> mask 255.255.255.255 <gateway ip> -p'

Either once for each server, or for a range of IP addresses

You can add 'if <number>' to force it to use a specific adapter, else
Windows will find one for you
The -p is to make the route permanent, i.e. reboot won't destroy it
You may need a boot script in case there are multiple gateways (if these
clients are managed by some domain controller, you can probably come up with
some group policy that does that. I'm no expert on that though)

JvB

"Chris Hagwood" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> "Jeroen van Bemmel" <(E-Mail Removed)> wrote in message
> news:<a32b$4140bd2d$513bab05$(E-Mail Removed)>...
>> If 'the mobile apps' use fixed servers in your backend, you can add a
>> static
>> route to your server IP range for the CDPD adapter
>> (on each laptop)
>>
>> Depending on the Windows version you use client side, Windows will be
>> smart
>> enough to route over WiFi when available, and dial-up otherwise
>>
>> What's the problem with having the mobile apps use WiFi?

>
> The backend servers for the mobile apps validate and let the users in
> through the firewall based on their static IP's. So, that traffic has
> to go through the CDPD network.
>
> When they're in a wifi hotspot, I want everything else to go through
> the wifi.
>
> Is there an easy way to tell it the two or three IP servers to use
> CDPD exclusively, and then try WiFi for everything else first? They
> are on WinXPpro.



 
Reply With Quote
 
Chris Hagwood
Guest
Posts: n/a
 
      15th Sep 2004
"Jeroen van Bemmel" <(E-Mail Removed)> wrote in message news:<cb12b$4141d9cd$513bab05$(E-Mail Removed)>...
> Use 'route add <server ip> mask 255.255.255.255 <gateway ip> -p'
>
> Either once for each server, or for a range of IP addresses
>
> You can add 'if <number>' to force it to use a specific adapter, else
> Windows will find one for you
> The -p is to make the route permanent, i.e. reboot won't destroy it
> You may need a boot script in case there are multiple gateways (if these
> clients are managed by some domain controller, you can probably come up with
> some group policy that does that. I'm no expert on that though)



Thanks Jeroen for your help so far, here is where I'm at now:

It seems that the computers in the field function exactly the opposite
as I had expected. When they are connected to the dial-up connection,
they send all network traffic through that connection. Even if it
fails, it doesn't seem to try to send it through the WiFi. If I add a
route using your instructions, that works.

Is there a network setting somewhere that I can change to tell it to
try the WiFi first, then try dial-up? (except for the servers I spoke
about previously)
 
Reply With Quote
 
Jeroen van Bemmel
Guest
Posts: n/a
 
      26th Sep 2004
Hi Chris,

The behavior you describe is windows' default behavior. You can override
this in several ways, but a detailed discussion will take many lines

When the dial-up connection is made, the default route appears to be
modified to point to this adapter.
http://www.microsoft.com/technet/com...uy/cg0903.mspx says
that in theory the fastest network adapter should be elected (WiFi?), but
that does not seem to happen in your case

One thing you might try, is to set
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\<GUID>\DontAddDefaultGateway
for the dial-up connection. However, this may result in the dial-up not
being used at all...

The 'Dead gateway detection' mechanism (see above link) may help you for TCP
applications. You may need to tweak it (timing etc). However I have no
experience with this.

Another option would be a connection manager type of application to be
installed on each laptop

Regards,

Jeroen

"Chris Hagwood" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> "Jeroen van Bemmel" <(E-Mail Removed)> wrote in message
> news:<cb12b$4141d9cd$513bab05$(E-Mail Removed)>...
>> Use 'route add <server ip> mask 255.255.255.255 <gateway ip> -p'
>>
>> Either once for each server, or for a range of IP addresses
>>
>> You can add 'if <number>' to force it to use a specific adapter, else
>> Windows will find one for you
>> The -p is to make the route permanent, i.e. reboot won't destroy it
>> You may need a boot script in case there are multiple gateways (if these
>> clients are managed by some domain controller, you can probably come up
>> with
>> some group policy that does that. I'm no expert on that though)

>
>
> Thanks Jeroen for your help so far, here is where I'm at now:
>
> It seems that the computers in the field function exactly the opposite
> as I had expected. When they are connected to the dial-up connection,
> they send all network traffic through that connection. Even if it
> fails, it doesn't seem to try to send it through the WiFi. If I add a
> route using your instructions, that works.
>
> Is there a network setting somewhere that I can change to tell it to
> try the WiFi first, then try dial-up? (except for the servers I spoke
> about previously)



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Wifi and Dialup together 'Captain' Kirk DeHaan Windows XP General 0 16th Feb 2007 08:51 PM
Connect wifi while using modem dialup =?Utf-8?B?U3BpZGVyV2Vi?= Security Networking 0 16th Oct 2006 10:37 AM
Dialup & WiFi in Venice =?Utf-8?B?Q2hyaXN0b3BoZXIgSXNoZXJ3b29k?= Windows XP Networking 1 18th Mar 2006 07:28 PM
Dialup wifi (again) Skip Gundlach Computer Hardware 3 31st Jan 2006 05:43 AM
WiFi + Dialup Bennett Price Computer Hardware 6 31st Jan 2005 03:14 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:02 AM.