Re: [Rabbit-proxy-users] RE: RabbIT as a transparent proxy?
Brought to you by:
ernimril
From: Holger K. <hol...@gm...> - 2006-01-30 13:06:03
|
4.9 How do I configure Squid forward all requests to another proxy? Note: The information here is current for version 2.2. First, you need to give Squid a parent cache. Second, you need to tell Squid it can not connect directly to origin servers. This is done with three configuration file lines: cache_peer parentcache.foo.com parent 3128 0 no-query default acl all src 0.0.0.0/0.0.0.0 never_direct allow all Note, with this configuration, if the parent cache fails or becomes unreachable, then every request will result in an error message. In case you want to be able to use direct connections when all the parents go down you should use a different approach: cache_peer parentcache.foo.com parent 3128 0 no-query prefer_direct off The default behaviour of Squid in the absence of positive ICP, HTCP, etc replies is to connect to the origin server instead of using parents. The prefer_direct off directive tells Squid to try parents first. > 1 - user, squid, rabbit, Internet - Squid is only there to add transparent > proxying to Rabbit - it's not for anything else. > > -----Original Message----- > From: Holger Krull [mailto:hol...@gm...] > Sent: 30 January 2006 12:56 > To: rab...@li... > Subject: Re: [Rabbit-proxy-users] RE: RabbIT as a transparent proxy? > > Depends on what you mean by front > > 1. User Squid Rabbit Internet > 2. User Rabbit Squid Internet > > > > Cooper, Steve schrieb: >> Can anyone give any pointers on using Squid infront of RabbIT? I have them >> both working independently of each other. >> >> Cheers >> Steve >> >> -----Original Message----- >> From: Cooper, Steve >> Sent: 11 January 2006 19:38 >> To: 'rab...@li...' >> Subject: RabbIT as a transparent proxy? >> >> Hi, >> >> Is it possible to use RabbIT to transparently proxy (e.g. redirecting >> traffic towards it using WCCP), rather than needing to change settings in >> the browser? >> >> Steve >> >> >> ------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. Do you grep through log > files >> for problems? Stop! Download the new AJAX search engine that makes >> searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 >> _______________________________________________ >> Rabbit-proxy-users mailing list >> Rab...@li... >> https://lists.sourceforge.net/lists/listinfo/rabbit-proxy-users >> > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > Rabbit-proxy-users mailing list > Rab...@li... > https://lists.sourceforge.net/lists/listinfo/rabbit-proxy-users > |