* help on load balancing
@ 2005-12-15 11:32 wlagmay
2005-12-15 12:52 ` Rob Sterenborg
0 siblings, 1 reply; 8+ messages in thread
From: wlagmay @ 2005-12-15 11:32 UTC (permalink / raw)
To: netfilter
Hi all,
I was able to setup a machine with 4 NICS , NICS 1 2 and 3 are connected to the
internet via dsl connection and NIC 4 is connected to LAN, I try to configure
the machine with Julian Anastasov patches and on the same machine I install
Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that before It
goes to link 2, link 1 must be saturated first or link1 will stop and the
request is only transfered to link 2. So it seems that it is not doing a load
balance, my idea of load balance is utilizing the 3 lines simultaneously.
Can you please help me on my problem, If you can provide a sample iptables load
balancing configuration and a load balance routing script will definitely helps
me a lot.
Thank you very much,
Wennie
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: help on load balancing
2005-12-15 11:32 help on load balancing wlagmay
@ 2005-12-15 12:52 ` Rob Sterenborg
2005-12-15 13:21 ` wlagmay
0 siblings, 1 reply; 8+ messages in thread
From: Rob Sterenborg @ 2005-12-15 12:52 UTC (permalink / raw)
To: netfilter
On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
...
> Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
> before It goes to link 2, link 1 must be saturated first or link1
> will stop and the request is only transfered to link 2. So it seems
> that it is not doing a load balance, my idea of load balance is
> utilizing the 3 lines simultaneously.
...
Perhaps you can use the nth patch.
http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-nth
Gr,
Rob
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: help on load balancing
2005-12-15 12:52 ` Rob Sterenborg
@ 2005-12-15 13:21 ` wlagmay
2005-12-15 13:25 ` Rob Sterenborg
0 siblings, 1 reply; 8+ messages in thread
From: wlagmay @ 2005-12-15 13:21 UTC (permalink / raw)
To: Rob Sterenborg; +Cc: netfilter
Hi Rob,
Im sorry, I forgot to inform you that the clients are not using this 3 lines to
go directly to the internet, instead the on the same machine I install Squid
proxy server, hoping that with the load balance technique, squid can take
advantage of the connection simultaneously, so my problem actualy is the squid
to use the 3 lines simutaneously.
thanks
Wennie
Quoting Rob Sterenborg <rob@sterenborg.info>:
> On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
> ...
> > Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
> > before It goes to link 2, link 1 must be saturated first or link1
> > will stop and the request is only transfered to link 2. So it seems
> > that it is not doing a load balance, my idea of load balance is
> > utilizing the 3 lines simultaneously.
> ...
>
> Perhaps you can use the nth patch.
> http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-nth
>
>
> Gr,
> Rob
>
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: help on load balancing
2005-12-15 13:21 ` wlagmay
@ 2005-12-15 13:25 ` Rob Sterenborg
2005-12-15 13:31 ` Paweł Staszewski
0 siblings, 1 reply; 8+ messages in thread
From: Rob Sterenborg @ 2005-12-15 13:25 UTC (permalink / raw)
To: netfilter
On Thu, December 15, 2005 14:21, wlagmay@yanbulink.net wrote:
> Hi Rob,
>
> Im sorry, I forgot to inform you that the clients are not using this
> 3 lines to go directly to the internet, instead the on the same
> machine I install Squid proxy server, hoping that with the load
> balance technique, squid can take advantage of the connection
> simultaneously, so my problem actualy is the squid
> to use the 3 lines simutaneously.
I haven't used it myself so I'm a bit guessing here ; you may be able
to alter locally generated packets (from Squid) using the ROUTE target
combined with the nth match in the OUTPUT chain of the mangle table so
the packets are diverted over the 3 NIC's.
Something like :
iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
--every 3 --packet 0 -j ROUTE --oif eth0
iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
--every 3 --packet 1 -j ROUTE --oif eth1
iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
--every 3 --packet 2 -j ROUTE --oif eth2
(Where eth3 is your LAN NIC.)
Gr,
Rob
> Quoting Rob Sterenborg <rob@sterenborg.info>:
>
>> On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
>> ...
>> > Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
>> > before It goes to link 2, link 1 must be saturated first or link1
>> > will stop and the request is only transfered to link 2. So it
>> seems
>> > that it is not doing a load balance, my idea of load balance is
>> > utilizing the 3 lines simultaneously.
>> ...
>>
>> Perhaps you can use the nth patch.
>> http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-nth
>>
>>
>> Gr,
>> Rob
--
"Inspraak zonder inzicht resulteert in uitspraak zonder uitzicht."
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: help on load balancing
2005-12-15 13:25 ` Rob Sterenborg
@ 2005-12-15 13:31 ` Paweł Staszewski
2005-12-15 14:12 ` wlagmay
0 siblings, 1 reply; 8+ messages in thread
From: Paweł Staszewski @ 2005-12-15 13:31 UTC (permalink / raw)
To: Rob Sterenborg, netfilter
You can't do load balance across 4 dsl link "per packet" ....
Only per session.
If your isp is doing reverse path filtering .
Try routes patch from : http://www.ssi.bg/~ja/
And it will be working fine :)
Rob Sterenborg wrote:
>On Thu, December 15, 2005 14:21, wlagmay@yanbulink.net wrote:
>
>
>>Hi Rob,
>>
>>Im sorry, I forgot to inform you that the clients are not using this
>>3 lines to go directly to the internet, instead the on the same
>>machine I install Squid proxy server, hoping that with the load
>>balance technique, squid can take advantage of the connection
>>simultaneously, so my problem actualy is the squid
>>to use the 3 lines simutaneously.
>>
>>
>
>I haven't used it myself so I'm a bit guessing here ; you may be able
>to alter locally generated packets (from Squid) using the ROUTE target
>combined with the nth match in the OUTPUT chain of the mangle table so
>the packets are diverted over the 3 NIC's.
>
>Something like :
>
>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
> --every 3 --packet 0 -j ROUTE --oif eth0
>
>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
> --every 3 --packet 1 -j ROUTE --oif eth1
>
>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
> --every 3 --packet 2 -j ROUTE --oif eth2
>
>(Where eth3 is your LAN NIC.)
>
>
>Gr,
>Rob
>
>
>
>
>>Quoting Rob Sterenborg <rob@sterenborg.info>:
>>
>>
>>
>>>On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
>>>...
>>>
>>>
>>>>Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
>>>>before It goes to link 2, link 1 must be saturated first or link1
>>>>will stop and the request is only transfered to link 2. So it
>>>>
>>>>
>>>seems
>>>
>>>
>>>>that it is not doing a load balance, my idea of load balance is
>>>>utilizing the 3 lines simultaneously.
>>>>
>>>>
>>>...
>>>
>>>Perhaps you can use the nth patch.
>>>http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-nth
>>>
>>>
>>>Gr,
>>>Rob
>>>
>>>
>
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: help on load balancing
2005-12-15 14:12 ` wlagmay
@ 2005-12-15 14:12 ` Paweł Staszewski
2005-12-15 14:20 ` Seferovic Edvin
0 siblings, 1 reply; 8+ messages in thread
From: Paweł Staszewski @ 2005-12-15 14:12 UTC (permalink / raw)
To: wlagmay, netfilter
Try do install 3 squid instances and on every squid.conf insert
different tcp_outgoind_address of your dsl links
Next try to balance per tcp(80) session to all squid instances:
$ipt -t nat -A squid -p tcp --dport 80 -m nth --counter 7 --every 3
--packet 0 -j DNAT --to 192.168.0.1:8080
$ipt -t nat -A squid -p tcp --dport 80 -m nth --counter 7 --every 3
--packet 1 -j DNAT --to 192.168.0.1:8081
$ipt -t nat -A squid -p tcp --dport 80 -m nth --counter 7 --every 3
--packet 2 -j DNAT --to 192.168.0.1:8082
$ipt -t nat -A PREROUTING -i eth4 -s 10.0.0.0/8 -p tcp --dport 80 -m
state --state NEW -j squid
the: "-m state --state NEW" param is important ... because you must
balance over "tcp session" not "per packet"
But with this configuration some sites will have problems to load like
https ... because source of your ip will be change from dsl 1 to dsl 2
and dsl 3
wlagmay@yanbulink.net wrote:
>I'm already using http://www.ssi.bg/~ja, this is from Julian Anatasov right, but
>my problem here, in most of the cases it needs to fully utilized the 1st lint
>prior to shifting to the second link.
>
>Regards,
>
>Wennie
>
>Quoting Paweł Staszewski <pstaszewski@artcom.pl>:
>
>
>
>>You can't do load balance across 4 dsl link "per packet" ....
>>Only per session.
>>
>>If your isp is doing reverse path filtering .
>>
>>
>>Try routes patch from : http://www.ssi.bg/~ja/
>>
>>And it will be working fine :)
>>
>>
>>Rob Sterenborg wrote:
>>
>>
>>
>>>On Thu, December 15, 2005 14:21, wlagmay@yanbulink.net wrote:
>>>
>>>
>>>
>>>
>>>>Hi Rob,
>>>>
>>>>Im sorry, I forgot to inform you that the clients are not using this
>>>>3 lines to go directly to the internet, instead the on the same
>>>>machine I install Squid proxy server, hoping that with the load
>>>>balance technique, squid can take advantage of the connection
>>>>simultaneously, so my problem actualy is the squid
>>>>to use the 3 lines simutaneously.
>>>>
>>>>
>>>>
>>>>
>>>I haven't used it myself so I'm a bit guessing here ; you may be able
>>>to alter locally generated packets (from Squid) using the ROUTE target
>>>combined with the nth match in the OUTPUT chain of the mangle table so
>>>the packets are diverted over the 3 NIC's.
>>>
>>>Something like :
>>>
>>>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
>>> --every 3 --packet 0 -j ROUTE --oif eth0
>>>
>>>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
>>> --every 3 --packet 1 -j ROUTE --oif eth1
>>>
>>>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
>>> --every 3 --packet 2 -j ROUTE --oif eth2
>>>
>>>(Where eth3 is your LAN NIC.)
>>>
>>>
>>>Gr,
>>>Rob
>>>
>>>
>>>
>>>
>>>
>>>
>>>>Quoting Rob Sterenborg <rob@sterenborg.info>:
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>>On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
>>>>>...
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
>>>>>>before It goes to link 2, link 1 must be saturated first or link1
>>>>>>will stop and the request is only transfered to link 2. So it
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>seems
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>that it is not doing a load balance, my idea of load balance is
>>>>>>utilizing the 3 lines simultaneously.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>...
>>>>>
>>>>>Perhaps you can use the nth patch.
>>>>>http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-nth
>>>>>
>>>>>
>>>>>Gr,
>>>>>Rob
>>>>>
>>>>>
>>>>>
>>>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>
>
>
>
>
>
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: help on load balancing
2005-12-15 13:31 ` Paweł Staszewski
@ 2005-12-15 14:12 ` wlagmay
2005-12-15 14:12 ` Paweł Staszewski
0 siblings, 1 reply; 8+ messages in thread
From: wlagmay @ 2005-12-15 14:12 UTC (permalink / raw)
To: PaweÅ Staszewski; +Cc: Rob Sterenborg, netfilter
I'm already using http://www.ssi.bg/~ja, this is from Julian Anatasov right, but
my problem here, in most of the cases it needs to fully utilized the 1st lint
prior to shifting to the second link.
Regards,
Wennie
Quoting Paweł Staszewski <pstaszewski@artcom.pl>:
>
> You can't do load balance across 4 dsl link "per packet" ....
> Only per session.
>
> If your isp is doing reverse path filtering .
>
>
> Try routes patch from : http://www.ssi.bg/~ja/
>
> And it will be working fine :)
>
>
> Rob Sterenborg wrote:
>
> >On Thu, December 15, 2005 14:21, wlagmay@yanbulink.net wrote:
> >
> >
> >>Hi Rob,
> >>
> >>Im sorry, I forgot to inform you that the clients are not using this
> >>3 lines to go directly to the internet, instead the on the same
> >>machine I install Squid proxy server, hoping that with the load
> >>balance technique, squid can take advantage of the connection
> >>simultaneously, so my problem actualy is the squid
> >>to use the 3 lines simutaneously.
> >>
> >>
> >
> >I haven't used it myself so I'm a bit guessing here ; you may be able
> >to alter locally generated packets (from Squid) using the ROUTE target
> >combined with the nth match in the OUTPUT chain of the mangle table so
> >the packets are diverted over the 3 NIC's.
> >
> >Something like :
> >
> >iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
> > --every 3 --packet 0 -j ROUTE --oif eth0
> >
> >iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
> > --every 3 --packet 1 -j ROUTE --oif eth1
> >
> >iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
> > --every 3 --packet 2 -j ROUTE --oif eth2
> >
> >(Where eth3 is your LAN NIC.)
> >
> >
> >Gr,
> >Rob
> >
> >
> >
> >
> >>Quoting Rob Sterenborg <rob@sterenborg.info>:
> >>
> >>
> >>
> >>>On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
> >>>...
> >>>
> >>>
> >>>>Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
> >>>>before It goes to link 2, link 1 must be saturated first or link1
> >>>>will stop and the request is only transfered to link 2. So it
> >>>>
> >>>>
> >>>seems
> >>>
> >>>
> >>>>that it is not doing a load balance, my idea of load balance is
> >>>>utilizing the 3 lines simultaneously.
> >>>>
> >>>>
> >>>...
> >>>
> >>>Perhaps you can use the nth patch.
> >>>http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-nth
> >>>
> >>>
> >>>Gr,
> >>>Rob
> >>>
> >>>
> >
> >
> >
> >
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: help on load balancing
2005-12-15 14:12 ` Paweł Staszewski
@ 2005-12-15 14:20 ` Seferovic Edvin
0 siblings, 0 replies; 8+ messages in thread
From: Seferovic Edvin @ 2005-12-15 14:20 UTC (permalink / raw)
To: netfilter
But with this solution it is possible to let https only through one
specially chosen squid - right?
Regards,
Edvin
-----Original Message-----
From: netfilter-bounces@lists.netfilter.org
[mailto:netfilter-bounces@lists.netfilter.org] On Behalf Of Pawel Staszewski
Sent: Donnerstag, 15. Dezember 2005 15:12
To: wlagmay@yanbulink.net; netfilter@lists.netfilter.org
Subject: Re: help on load balancing
Try do install 3 squid instances and on every squid.conf insert
different tcp_outgoind_address of your dsl links
Next try to balance per tcp(80) session to all squid instances:
$ipt -t nat -A squid -p tcp --dport 80 -m nth --counter 7 --every 3
--packet 0 -j DNAT --to 192.168.0.1:8080
$ipt -t nat -A squid -p tcp --dport 80 -m nth --counter 7 --every 3
--packet 1 -j DNAT --to 192.168.0.1:8081
$ipt -t nat -A squid -p tcp --dport 80 -m nth --counter 7 --every 3
--packet 2 -j DNAT --to 192.168.0.1:8082
$ipt -t nat -A PREROUTING -i eth4 -s 10.0.0.0/8 -p tcp --dport 80 -m
state --state NEW -j squid
the: "-m state --state NEW" param is important ... because you must
balance over "tcp session" not "per packet"
But with this configuration some sites will have problems to load like
https ... because source of your ip will be change from dsl 1 to dsl 2
and dsl 3
wlagmay@yanbulink.net wrote:
>I'm already using http://www.ssi.bg/~ja, this is from Julian Anatasov
right, but
>my problem here, in most of the cases it needs to fully utilized the 1st
lint
>prior to shifting to the second link.
>
>Regards,
>
>Wennie
>
>Quoting Paweł Staszewski <pstaszewski@artcom.pl>:
>
>
>
>>You can't do load balance across 4 dsl link "per packet" ....
>>Only per session.
>>
>>If your isp is doing reverse path filtering .
>>
>>
>>Try routes patch from : http://www.ssi.bg/~ja/
>>
>>And it will be working fine :)
>>
>>
>>Rob Sterenborg wrote:
>>
>>
>>
>>>On Thu, December 15, 2005 14:21, wlagmay@yanbulink.net wrote:
>>>
>>>
>>>
>>>
>>>>Hi Rob,
>>>>
>>>>Im sorry, I forgot to inform you that the clients are not using this
>>>>3 lines to go directly to the internet, instead the on the same
>>>>machine I install Squid proxy server, hoping that with the load
>>>>balance technique, squid can take advantage of the connection
>>>>simultaneously, so my problem actualy is the squid
>>>>to use the 3 lines simutaneously.
>>>>
>>>>
>>>>
>>>>
>>>I haven't used it myself so I'm a bit guessing here ; you may be able
>>>to alter locally generated packets (from Squid) using the ROUTE target
>>>combined with the nth match in the OUTPUT chain of the mangle table so
>>>the packets are diverted over the 3 NIC's.
>>>
>>>Something like :
>>>
>>>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
>>> --every 3 --packet 0 -j ROUTE --oif eth0
>>>
>>>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
>>> --every 3 --packet 1 -j ROUTE --oif eth1
>>>
>>>iptables -t mangle -A OUTPUT -o eth0 -m nth --counter 7 \
>>> --every 3 --packet 2 -j ROUTE --oif eth2
>>>
>>>(Where eth3 is your LAN NIC.)
>>>
>>>
>>>Gr,
>>>Rob
>>>
>>>
>>>
>>>
>>>
>>>
>>>>Quoting Rob Sterenborg <rob@sterenborg.info>:
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>>On Thu, December 15, 2005 12:32, wlagmay@yanbulink.net wrote:
>>>>>...
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>Squid proxy, Im monitoring the 4 ports via MRTG and I noticed that
>>>>>>before It goes to link 2, link 1 must be saturated first or link1
>>>>>>will stop and the request is only transfered to link 2. So it
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>seems
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>>that it is not doing a load balance, my idea of load balance is
>>>>>>utilizing the 3 lines simultaneously.
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>...
>>>>>
>>>>>Perhaps you can use the nth patch.
>>>>>http://www.netfilter.org/projects/patch-o-matic/pom-base.html#pom-base-
nth
>>>>>
>>>>>
>>>>>Gr,
>>>>>Rob
>>>>>
>>>>>
>>>>>
>>>>>
>>>
>>>
>>>
>>>
>>
>>
>>
>
>
>
>
>
>
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2005-12-15 14:20 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-15 11:32 help on load balancing wlagmay
2005-12-15 12:52 ` Rob Sterenborg
2005-12-15 13:21 ` wlagmay
2005-12-15 13:25 ` Rob Sterenborg
2005-12-15 13:31 ` Paweł Staszewski
2005-12-15 14:12 ` wlagmay
2005-12-15 14:12 ` Paweł Staszewski
2005-12-15 14:20 ` Seferovic Edvin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox