2 internet connections on a single PC

5,925

Solution 1

You can, if is what you want, use 2 connections as one. E.g.:

Connection 1: 100Kb/s
Connection 2: 350Kb/s
Resulting connection: 450Kb/s

This is achieved using the technique Bonding.

How many bonding devices can I have? There is no limit.

It's a bit complicated to configure it properly, so I recommend you read this article completely, and take away all doubts before starting. And in this page you will see FAQs, advanced options and all the information in one single page.

Solution 2

you can use ifup and ifdown to enable and disable the connections without unplugging them . thats the easy way i know to switch between connections . open a terminal a type as

sudo ifdown eth0

to disable a connection with name eth0 and

sudo ifup eth0

to enable the connection & this way also applicable to wireless connections also . just replace the connection name with your wireless connection name .

you can list all your connections with ifconfig -a

hope that helps .

Share:
5,925

Related videos on Youtube

oshirowanen
Author by

oshirowanen

Updated on September 18, 2022

Comments

  • oshirowanen
    oshirowanen over 1 year

    If I have a wireless and a usb internet connection on my Ubuntu 12.04 as in:

    enter image description here

    At the moment, Ubuntu seems to only make use of the Wired connection which is the usb connection. Is it possible to get ubuntu to use the wireless connection without unplugging the wired connection?

    So basically, as will, I would like to switch between the connections without unplugging any of them while leaving them both enabled.

    Is this possible?