Using 2 fones 2 surf

4-quad

Well-Known Member
Joined
Aug 31, 2006
Messages
187
Reaction score
1
Hi,

Anyone know if it is possible to do this and if so how.

Tx
 
Wow, what a thought, I don't know if it's possible, since windows can basically only have one internet connection at a time, you'd need some sort of software to be able to do it ;)
 
I have managed to connect both my fnes to the net, that is not a problem but it seems that only one fone is used at a time, I am also hoping some kind soul knows of sware that one can use.
 
Connecting both fones can be done, but using both for a faster connection is the problem. Both fones (motorola) are connected via a standard usb cable.
 
Nope, can you explain?

Well in XP you can define users. They seem to be independent of each other.

I do not know if they carry on working if you log in as another user, on your system. It would be worth a try.

Then you could start a download under one user and then switch to another user to do another download.

I do not know if this will work.

Sean
 
Create an internet connection while both phones are plugged in. then go to the connection properties and in Connect Using select both phones. Tick All Devices Use the Same number
 
Your service provider has to be able to support this.

.... and there are a few other issues as well......
 
What about bridging the connections? have not tried it but maybe give it a try??
 
I was going to say what adsl3g said. Try bridging them. Not sure if it will work with phones but hey me and my brother do it with our network cards. Both of us have got a 100Mbit and 1Gbit LAN ports and then we bridge it to speed it up :sick:
 
Just an idea. Can't you selelct both phones under windows for the connection and set it up like you would for a isdn running 2 or more data channels?
 
I remember the 2 lines idea from the days of diap-up. People used two modems and two phone lines not isdn lines either. I don't know if there is any special software, but it was the days of Win95 and Win98 so there is likely built in support in XP. Unless the support for two isdn connections is built into the modem and not the drivers you should be able to just select the two phone connections instead of the isdn connections you normally have like Repitah said.

Just a note though. Because of the way the protocol works you won't be able to download a file using two connections unless you use segmented downloading. A connection is first established to the server starting at a specific point in the file if resume is supported. The data is then requested sequencially and you can't skip a fragment or request a prior fragment without a new connection to the server. With web pages the elements will be downloaded equally on the available connections. With single segment downloads it will only download the file using one connection.
 
I remember the 2 lines idea from the days of diap-up. People used two modems and two phone lines not isdn lines either. I don't know if there is any special software, but it was the days of Win95 and Win98 so there is likely built in support in XP.
Its called Multilink and it is built in to XP.
Just a note though. Because of the way the protocol works you won't be able to download a file using two connections unless you use segmented downloading.
That's not entirely true, Multilink aggregates the two connections, so you see them as one and you only get one IP address. All traffic is split across the two connections, effectively you get a single connection with double the bandwidth. The downside is the server you are dialling into needs to support Multilink and as far as I know, only Windows servers supports this.
 
Its called Multilink and it is built in to XP.

That's not entirely true, Multilink aggregates the two connections, so you see them as one and you only get one IP address. All traffic is split across the two connections, effectively you get a single connection with double the bandwidth. The downside is the server you are dialling into needs to support Multilink and as far as I know, only Windows servers supports this.
Don't know about the multilink, but it is not what I am talking about. Yes the connection still appears as one. Applications generally don't work with ips. They send a network request to the windows api which formats the request into a packet with a header that contains your ip and the destination ip. The application then receives the incoming data stripped of it's header and return ip. When a browser for instance wants to download an image it sends a request to the api to make a connection to the server and then asks for the data in a stream format similar to a file stream. If the browser sends another request to the api it will use the connection with the least amount of load at that time.

This means that multiple files may be downloaded at the same time over one connection, but a file will only be downloaded over one connection. This is the standard way it works over http. There are protocols that allow true byte serving where you can download the bytes as you wish using any number of connections, but http by itself is generally not one of them and most servers won't allow this and some of the older ones or a few new ones won't even allow you to resume a disconnected download. One connection will always end up using more bandwidth than the other so your airtime won't be in sync either. It is entirely possible that one connection will always be chosen over the other if it is available.
 
Applications generally don't work with ips. They send a network request to the windows api which formats the request into a packet with a header that contains your ip and the destination ip. The application then receives the incoming data stripped of it's header and return ip.
I beg to differ, you need to specify the destination IP and port when opening a socket, how else will Windows know where to send the data? You can also specify the source IP and port, but you can leave it up to Windows to choose the appropriate IP and find an open port.

I know you weren't referring to Multilink, but just to clarify, the reason I mentioned that you only get one IP address with Multilink is that TCP/IP components don't need to know that the physical connection is made over two or more lines. This is handled by RAS at a lower level, and it ensures that data is split over both connections equally.

There's more information here:
http://support.microsoft.com/kb/307849
 
I beg to differ, you need to specify the destination IP and port when opening a socket, how else will Windows know where to send the data? You can also specify the source IP and port, but you can leave it up to Windows to choose the appropriate IP and find an open port.
You can specify the destination ip and port if you have it, but since you generally don't you would use the domain name instead. Don't know if windows has the ability to bypass requesting the ip first, java has. There is two ways to request information. One is to download the object as a stream and the other is to open a socket. A socket is used to establish a permanent connection where information is sent and received. Anything that gets downloaded in a browser or with a download manager will generally be opened as a stream. The main difference is that with a stream you only receive information when it is requested and with a socket you can receive information without requesting it. Browsers and download managers are unlikely to work with sockets which are used for instant messaging, p2p, and things like that. You also don't have to specify the port as the default one for the protocol will then automatically be used.
I know you weren't referring to Multilink, but just to clarify, the reason I mentioned that you only get one IP address with Multilink is that TCP/IP components don't need to know that the physical connection is made over two or more lines. This is handled by RAS at a lower level, and it ensures that data is split over both connections equally.

There's more information here:
http://support.microsoft.com/kb/307849
Still a bit confused by the multi-link thing. Saw an option in my PPP settings which says "Negotiate multi-link for single link connections". Now this sounds to me like making a single connection look like two or more which is exactly the opposite of what we are talking about, but maybe Microsloth is just confused with the wording as usual. What multi-link sounds like to me is that when you dial-up and login to the server you get assigned one ip for both connections and can use both interchangeably. In this case it would be possible to download a file over multiple connections.

Btw. I would think that multi-link should also be possible if the server is running on Linux like a lot of them are as it is open source. ;) If not I am sure a network engineer can easily write some code to handle it.
 
Top
Sign up to the MyBroadband newsletter
X