by
erike4 on 2017/02/18 04:48:47 AM
I would like some networking assistance.
case: my isp sells download bandwidth at 1,3,5,...Mb BUT upload is only 1Mb.
to get more upload I must buy more connections with only one network card.
I am running Kubuntu on a HP6730b.
How so I setup Tixati or the simple wireless router to access multiple connections?
Fibre modem --> Xiaomi student router --> laptop
by Guest on 2017/03/18 09:51:31 PM
If your laptop has two network interfaces, ie, WiFi and Ethernet adapters. You can use both to connect to the internet by tweaking registry entries in Windows.
First, make sure Tixati is NOT bound to either interface.
To combine multiple ISP connections for increased upload bandwidth, you can use WAN aggregation or load balancing. Here’s how you can do it:
Option 1: Using a Router with WAN Load Balancing
Get a Multi-WAN Router – Look for a router that supports WAN load balancing (e.g., TP-Link ER605, Ubiquiti EdgeRouter, MikroTik hEX).
Connect Multiple ISP Lines – Plug each ISP connection into separate WAN ports on the router.
Enable Load Balancing – Configure the router to distribute upload traffic across multiple connections.
Option 2: Using Kubuntu for Network Bonding
If you only have one network card, you can use network bonding with a USB Ethernet adapter:
Install ifenslave (if not installed):
bash
Copy
Edit
sudo apt install ifenslave
Edit Network Configuration:
Open the Netplan config file (/etc/netplan/01-netcfg.yaml) and add:
yaml
Copy
Edit
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: no
eth1:
dhcp4: no
bonds:
bond0:
interfaces:
mode: balance-rr
dhcp4: yes
Apply Changes:
bash
Copy
Edit
sudo netplan apply
This will distribute the upload load across multiple connections. However, for torrenting (Tixati), you might need policy-based routing to force traffic through multiple gateways.
If you're looking for better networking hardware, consider upgrading to an HPE Aruba JL675A 6100 switch, which offers great performance for handling multiple network interfaces!