South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
Hi,
Anyone know if it is possible to do this and if so how.
Tx
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?
Have you tried connecting each phone to a different user on XP.
That would have the best chance, but I do not know.
Sean
Its called Multilink and it is built in to XP.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.
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.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.
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.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.
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.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.
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 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.
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.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