From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Thu, 2 Sep 2004 09:38:49 +0400 From: Alex To: community@altlinux.ru Subject: Re: [Comm] =?KOI8-R?Q?=F7=CF=D0=D2=CF=D3_=CB?= squid-team Message-ID: <20040902093849.55e3aa7a@bortnikov> In-Reply-To: <4135EAAB.4010803@tut.by> References: <4135EAAB.4010803@tut.by> X-Mailer: Sylpheed-Claws 0.9.12cvs40.2 (GTK+ 2.4.4; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-new at pr.spetsremont.ru X-BeenThere: community@altlinux.ru X-Mailman-Version: 2.1.5 Precedence: list Reply-To: community@altlinux.ru List-Id: Mailing list for ALT Linux users List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 05:38:53 -0000 Archived-At: List-Archive: List-Post: > Существуют ли способы балансировать http трафик при помощи сквида? > В продолжение к первому вопросу, можно ли сквид заставить работать от > двух адресов (tcp_outgoing_address)? позволю себе ответить хоть никакого касательства к squid-team не имею Как то нашел на опеннете следующее: Пример равномерной балансировки по 3 каналам: # acl rand1 dst 0.0.0.0/0.0.0.192 acl rand2 dst 0.0.0.64/0.0.0.192 acl rand3 dst 0.0.0.128/0.0.0.192 acl rand4 dst 0.0.0.192/0.0.0.192 acl rand5 dst 0.0.0.192/0.0.0.224 # acl rand6 dst 0.0.0.224/0.0.0.224 tcp_outgoing_address 10.1.1.1 rand2 tcp_outgoing_address 10.1.1.1 rand3 tcp_outgoing_address 10.1.1.2 rand4 tcp_outgoing_address 10.1.1.2 rand5 tcp_outgoing_address 10.1.1.3