Jan Engelhardt wrote:
> I'm doing simple load balancing with two cheap adsl lines using > nth to SNAT packets: > > -m nth -every 2 -packet 1 -SNAT adslA > -m nth -every 2 -packet 2 -SNAT adslB > > This is working quite good, but I would like to do an intelligent > load bal. try lartc/tc. > As you can see adslB line is full and adslA line is empty. > Is there anyway to optimize this? Use tc, a per-packet load balancing; -m nth is just a per-connection balancing.
this would be useful for 'upload' packets not for download. Right? The main problem are 'download' packets which can be per-connection balanced only. Thanks for the reply.