join multiple connections on one computer...
do you know how to join multiple connections on one computer... i have 2 wireless internet connections plugged into my computer, and i was wondering how i can join then together so my speen increases? is it even possable without a router/hub?
thanks
-ALL
Re: join multiple connections on one computer...
Without using a router then you'd need to write a software proxy and dynamically use the bandwidth available...
Re: join multiple connections on one computer...
sounds like somthing that i should work on for a project in C++, i gotta start somewhere, even thought this is probable EXTREMELY complicated ;)
Re: join multiple connections on one computer...
Not really. If you just put a 2nd NIC into your computer, both on different subnets, and have both wireless gateways on separate subnets, you could route dynamically through code :)
Re: join multiple connections on one computer...
In XP, you can bridge two connections together. Is that what you mean?
Re: join multiple connections on one computer...
Quote:
Originally Posted by dglienna
In XP, you can bridge two connections together. Is that what you mean?
No, a Bridge is a way to connect two or more network segments that are configured with different protocols. Basically a translator, so to speak.
ALL is talking about running the connections in parallel to increase the bandwidth.
Re: join multiple connections on one computer...
I thought it would increase the speed if you bridged a wireless and wired connection together. When would you use a bridge, then?
Re: join multiple connections on one computer...
Quote:
Originally Posted by dglienna
I thought it would increase the speed if you bridged a wireless and wired connection together. When would you use a bridge, then?
you use a bridge when you have Computer A connected to the net and Computer B plugged into Computer A to get to the net.
does that help?
Re: join multiple connections on one computer...
Without using Internet Connection Sharing? OK, I guess.
Re: join multiple connections on one computer...
A bridge connects two different networks together. A typical example of this is a wireless router, it is a bridge between wired, wireless and the internet. If you bridge in Windows XP, you do not share the bandwidth, rather your computer acts like a router between the two networks. Useful if you want to bridge wireless and wired w/o a wireless access point.
It also allows you to bridge two different networks on different subnets.
Re: join multiple connections on one computer...
Oh. Different subnets. That I understood. Thanks.