[squid-users] Replicate web object in peer cache server

2006-06-21 Thread Eswari Pd. Sharma
Hi squid users,

We are running peer transparent cache servers . In peer cache server, the
web objects are store identical in each peer server and when request comes
it look on its own and if doesnt get it look from the siblings , eventually
it takes time and degrades the performance of cache server.

 I want to replicate web objects in peer cache server also and see the
performance of cache server.

Do anyone have idea how to replicate web objects in peer server ?

looking forward for your help and new ideas,

Thank you in advance,

Kind regards,
eswari



Re: [squid-users] Re: AW: Pipe log output to program

2006-06-21 Thread Kinkie
On Tue, 2006-06-13 at 12:24 +0100, Robin Bowes wrote:
> [EMAIL PROTECTED] wrote:
> > Use the linux command
> > 
> > tail -f access.log | 
> 
> Werner,
> 
> Thanks for the suggestion, but that's not quite what I'm looking for.
> 
> I'd like to do something like:
> 
>  CacheAccessLog "|/path/to/logprocessor"
> 
> where logprocessor is some program that processes the log at is is
> written, line-by-line, and does something like update a database.

This has been asked so many times that I've added a FAQ entry for it.
Please see 
http://wiki.squid-cache.org/SquidFaq/SquidLogs#head-594c53a118469e9a7e921b751e0b733602632e66

Kinkie


Re: [squid-users] can use include syntax in the squid.conf

2006-06-21 Thread Kinkie
On Tue, 2006-06-13 at 09:27 +0800, huang mingyou wrote:
> hello,list
> I have manage a  Hierarchical squid group.and change the
> squid.conf sometimes.But them squid.conf only have little different.so
> I want lead the changed command in another file ,like squid.conf.local
> ,and I include this file in squid.conf.
> But the squid.conf con't do this, have another good solution .

Squid itself cannot do that, except for specific ACL lists

i.e:
acl foo dstdomain "/path/to/file.acl"

You can resort to a text processor, like cpp (the C language
preprocessor) or m4 (macro interpreter).

I've used both interpreters successfully in time in order to generate
the configs for a series of load-balanced squid servers from a single
master file.

Kinkie


[squid-users] GET format question

2006-06-21 Thread Mike Sullivan
I have a default install of squid working fine when I set a browser to use the 
squid proxy. What I am wondering, is can I configure squid to also (or only) 
accept GET requests in the normal browser format? By this I mean have squid 
accept a GET / instead of GET http://domain.com/? 

A transparent proxy will not work because the destination IP address will be 
the squid proxy's IP and not the actual site IP because of some DNS issues (dns 
will point to the proxy for all requests), and I would think a transparent 
proxy will need the destination IP in the packet (or can squid perform a dns 
lookup on the HOST parameter while in transparent mode?).

I've read about the  httpd_accel_uses_host_header parameter, but don't know if 
changing that will allow me to do what I'm after - have squid act like a proxy 
but accept a GET in standard browser format.

Any pointers/suggestions appreciated.

Thanks

[squid-users] accelerating with 2.6RC1

2006-06-21 Thread Bryan Richter
Hi everyone, 

We just recently decided to use Squid to accelerate virtual servers hosted
on multiple real servers. Since it sounds like version 2.6 has made
improvements regarding acceleration, I downloaded and installed it and I've
been trying to make it work. 

I was able to accelerate a single host using 2.5 (which came with Debian
stable, the OS running the machine I've put Squid on). But I can't seem to
replicate my success with 2.6. 

The simplest test case I could think of is accelerating a single virtual
server. To do that, I tried this config (diffed against config.default and
anonymized):

66c66
< http_port 3128
---
> #http_port 3128
156a157,160
> https_port 1.1.1.1:443 \
> cert=/etc/ssl/certs/cert.pem \
> key=/etc/ssl/private/key.pem \
> defaultsite=accelerated.host protocol=http
1366a1371
> url_rewrite_program /tmp/squid-rewriter.sh
2461c2466,2467
< http_access deny all
---
> #http_access deny all
> http_access allow all

The rewriter program is just 2 lines,

#!/bin/sh
tee /tmp/redirects

In this configuration, Squid segfaults on the first request. Here is the bt
(anonymized):

#0  0x4023de09 in strcasecmp () from /lib/tls/libc.so.6
#1  0x08071310 in clientGetPinnedConnection (conn=0x84bf5b0, request=0x849ab00)
at client_side.c:5022
#2  0x0807f70a in getPinnedFD (request=0x849ab00) at forward.c:464
#3  0x0807fb08 in fwdConnectStart (data=0x84d5018) at forward.c:515
#4  0x080ac66d in peerSelectCallback (psstate=0x84d5068) at peer_select.c:200
#5  0x0808033d in fwdStart (fd=18, e=0x84d4db0, r=0x849ab00) at forward.c:888
#6  0x0806d8e6 in clientProcessMiss (http=0x84d46f0) at client_side.c:3497
#7  0x0806d58b in clientProcessRequest (http=0x84d46f0) at client_side.c:3420
#8  0x08051e73 in aclCheckCallback (checklist=0x84d4538, answer=ACCESS_ALLOWED) 
at acl.c:2267
#9  0x08051acb in aclCheck (checklist=0x84d4538) at acl.c:2236
#10 0x08066d76 in clientCheckNoCache (http=0x84d46f0) at client_side.c:657
#11 0x08066a42 in clientRedirectDone (data=0x84d46f0, 
result=0x82c5b10 "http://accelerated.host/";) at client_side.c:649
#12 0x080ae032 in redirectHandleReply (data=0x84d46b0, 
reply=0x82c5b10 "http://accelerated.host/";) at redirect.c:70
#13 0x0808bf08 in helperHandleRead (fd=0, data=0x82c5ab8) at helper.c:711
#14 0x080747d2 in comm_select (msec=901) at comm_poll.c:471
#15 0x080a11fa in main (argc=1076861356, argv=0x1) at main.c:840


I have to assume I'm missing something important, since as far as I can
tell I'm trying to do the simplest possible acceleration. Plus, I've only
been learning Squid for a week, so my stupid-error factor is probably very
high. :)

Even discounting that factor, though, I think there is room for confusion
with the https_port option. Do the vport and vhost options apply as they do
for http_port? (I assume so, but they aren't listed twice like e.g.
protocol is.) Is accelerated an option, as it states in RELEASENOTES.html,
or isn't it, as its absence in the config file implies? 

For the record, I have tried quite a few variations on the https_port
option, to no avail. Some variations don't cause segfaults. But, I thought
I'd start with just one and see what you guys think. :)


TIA,

-Bryan

-- 
Bryan Richter
Systems Administrator
-
iRadeon



[squid-users] I.E. Exceptions

2006-06-21 Thread Lance Pehrson
 

 

I am trying to have two applications bypass the proxy by adding
exception in IE. One address is subdomain.domain.com the other is
subdomain.domain.com/somesuffix. You would think that *.domain.com would
do it but it only allows the exception with out the suffix through. The
app that uses the url with a suffix still hits the proxy. Why is this?
What can I do to get the same domain with a suffix and without to bypass
the proxy? If I add them both to the exceptions in IE I get which ever
one I list first bypassing the proxy and the other does not. 



RE: [squid-users] Pb ldap with SquidNT

2006-06-21 Thread Guido Serassio

Hi Jerome,

At 18.06 21/06/2006, Jerome wrote:


Sorry, but I use the windows Authenticator ?
I create a local group security (not global) on my AD (win server 2003)
I add my name to the member of the group.
When I browse my AD with adsiedit.msc on my name I have : memberof :
CN=leweb,OU=USERS,DC=domaine,DC=fr
Next I try this command line :
win32_auth.exe -A leweb -O domaine, but I have a error : ERR User not
allowed to use this cache
If I try win32_auth.exe -D leweb -O domaine, I have OK ! Strange...
Could you help me ?
Thanks


This correct:

As you can read in win32_auth.txt, win32_auth.exe can check only for 
MACHINE LOCAL GROUPS.


Yuo must use win32_check_group.exe for domains groups.

Regards

Guido



-

Guido Serassio
Acme Consulting S.r.l. - Microsoft Certified Partner
Via Lucia Savarino, 1   10098 - Rivoli (TO) - ITALY
Tel. : +39.011.9530135  Fax. : +39.011.9781115
Email: [EMAIL PROTECTED]
WWW: http://www.acmeconsulting.it/



[squid-users] Date and Expires headers not updating?

2006-06-21 Thread lawrence wang

Squid seems to have a bug with Expires and Date headers:

It fetches an object and caches the headers.
The object expires, and Squid fetches it again.
The object is unmodified, so Squid continues to use the cached object.
However, it appears that it also continues to return the old Expires
and Date headers, even though it seems to be using new values "under
the hood".

This will confuse downstream caches, won't it?


[squid-users] Help. SQUID very very slow.

2006-06-21 Thread Sergey Bondar

Hi all.
I am using squid for 7 year. No complains, but two week ago
I installed new squid on brand new Dell Server to replace old machine.
So Squid on new computer working much slower then on old one.
If I go through NAT on new server it is fast.
Over 50 people going through squid.
Here is the specs:

OLD Computer:
FreeBSD 4.5-RELEASE #0: Tue Apr 30 18:25:23 EDT 2002  i386
CPU: Pentium III (501.14-MHz 686-class CPU)
512 Mb RAM
squid-2.4.STABLE4
cache_dir 700 24 256
cache_mem 256 M
Internet line: DSL 700 kb

NEW Computer:
FreeBSD 6.1-RELEASE #0: Fri Jun 16 13:10:14 EDT 2006  i386
DELL Server PE1420
ACPI APIC Table: 
Timecounter "i8254" frequency 1193182 Hz quality 0
CPU: Intel(R) Xeon(TM) CPU 3.00GHz (2992.52-MHz 686-class CPU)
1 Gb RAM
squid-2.5.STABLE12
cache_dir 3000 128 512
cache_mem 500 M
Internet line: T1

I tried GENERIC kernel and My own with out all not needed drivers same
results

Please help!!!

Sergey Bondar
Concord Limousine Inc
700 3rd Avenue
Brooklyn NY 11232




Re: [squid-users] peer weight is not working please help

2006-06-21 Thread Chris Robertson

squid learner wrote:

 


I don't see a single successful request made through
a parent cache.  
You need to figure out why the parent caches are not
passing you any 
data.  Round robin will bounce every request to a
different parent, 
true, but it will not cause a request to canceled

before it is serviced.

Chris

   


Thanks Chris
I am not very much familer with all so i need help 


all my parent are work fine if i use them direct in my
client browser
 

Is this client browser on the Squid machine?  If not, then its very 
likely a routing problem on the Squid machine.  What is the full output 
of "squidclient -h proxy.jeel.com -p 8080 -v 
http://www.newscientist.com/";?  Let the command run to completion no 
matter how long it takes..  Try the same with the other three, and post 
your results.  For what it's worth, I can pass traffic through 
proxy.jeel.com (slowly), my connection to proxy.cyberia.net.sa is 
refused, my connection to proxy.awalnet.net.sa eventually times out.



and about bug as explain by "Sir Henric

I dont no what to do do ire install squid or change
the version go back to STABLE6-6 or 7

 


Stick with 2.5STABLE14.  The logging is not the cause of your trouble.

Chris


RE: [squid-users] Pb ldap with SquidNT

2006-06-21 Thread Jerome
Thanks Guido !
Tomorrow I test the cachemgr.cgi
Thans

Jérôme

-Message d'origine-
De : Guido Serassio [mailto:[EMAIL PROTECTED] 
Envoyé : mardi 20 juin 2006 22:22
À : Jerome; squid-users@squid-cache.org
Objet : Re: [squid-users] Pb ldap with SquidNT

Hi Jerome,

At 14.39 20/06/2006, Jerome wrote:

>Hi !
>
>I use SquidNT on a Windows 2000 Server and I have a problem with Active 
>Directory authentification.
>Could you help me ?
>There's my problem :
>I use the auth_param basic program for authenticate my user, like this :
>auth_param basic program c:/squid/libexec/squid_ldap_auth.exe -R -b 
>"dc=domaine,dc=fr" -f "(&(objectclass=person) (sAMAccountName=%s) 
>(memberof=CN=leweb,OU=USERS,DC=domaine,DC=fr))" -D 
>"cn=Administrateur,cn=Users,dc=domaine,dc=fr" -w "passAdmin" -h 
>server_ip When I test this code in command line, I have an "OK".
>But when I try to connect with Squid, I have an error in the cache.log
file.
>The error is : squid_ldap_auth: WARNING, LDAP search error 'Erreur de 
>filtre' in French : "filter error"
>Could you help me ?
>Thanks.

Running as a user or as service should don't care, so may be a parsing
problem.

Do you have configured cachemgr.cgi on your machine ?
http://wiki.squid-cache.org/SquidFaq/CacheManager

If yes, check in "Current Squid Configuration" if the in-memory
configuration is as expected.

If cachemgr .cgi is not configured, you can use squidclient.exe to query
directly Squid Cache manager after configuring Cache manager ACLs in
squid.conf (see the previous link):

squidclient -U manager -W yourpassword mgr:config

Regards

Guido



-

Guido Serassio
Acme Consulting S.r.l. - Microsoft Certified Partner
Via Lucia Savarino, 1   10098 - Rivoli (TO) - ITALY
Tel. : +39.011.9530135  Fax. : +39.011.9781115
Email: [EMAIL PROTECTED]
WWW: http://www.acmeconsulting.it/



RE: [squid-users] Pb ldap with SquidNT

2006-06-21 Thread Jerome
Sorry, but I use the windows Authenticator ?
I create a local group security (not global) on my AD (win server 2003)
I add my name to the member of the group.
When I browse my AD with adsiedit.msc on my name I have : memberof :
CN=leweb,OU=USERS,DC=domaine,DC=fr
Next I try this command line : 
win32_auth.exe -A leweb -O domaine, but I have a error : ERR User not
allowed to use this cache 
If I try win32_auth.exe -D leweb -O domaine, I have OK ! Strange...
Could you help me ?
Thanks 

Jérôme

-Message d'origine-
De : Henrik Nordstrom [mailto:[EMAIL PROTECTED] 
Envoyé : mardi 20 juin 2006 21:53
À : Jerome
Cc : squid-users@squid-cache.org
Objet : Re: [squid-users] Pb ldap with SquidNT

tis 2006-06-20 klockan 14:39 +0200 skrev Jerome:
> Hi !
> 
> I use SquidNT on a Windows 2000 Server and I have a problem with 
> Active Directory authentification.
> Could you help me ?
> There’s my problem :
> I use the auth_param basic program for authenticate my user, like this :
> auth_param basic program c:/squid/libexec/squid_ldap_auth.exe -R -b 
> "dc=domaine,dc=fr" -f "(&(objectclass=person) (sAMAccountName=%s) 
> (memberof=CN=leweb,OU=USERS,DC=domaine,DC=fr))" -D 
> "cn=Administrateur,cn=Users,dc=domaine,dc=fr" -w "passAdmin" -h 
> server_ip When I test this code in command line, I have an “OK”.


Why don't you use the native Windows authenticator? Should be more reliable
and a lot easier to configure (assuming the server is a member server of the
AD).

> But when I try to connect with Squid, I have an error in the cache.log
file.
> The error is : squid_ldap_auth: WARNING, LDAP search error 'Erreur de 
> filtre' in French : “filter error”

I am not sure squid.conf supports quoted arguments. Try removing the quotes
and all spaces between them..

Regards
Henrik



Re: [squid-users] YaST FTP through Squid

2006-06-21 Thread Henrik Nordstrom
ons 2006-06-21 klockan 00:49 -0400 skrev Michael Carpenter:
> List,
> 
> We have a group of SLES systems in a private, non-routable subnet that 
> we provide Internet/intranet access to via a Squid proxy. This works 
> great for proxying normal HTTP traffic through, but we are having 
> problems getting non-anonymous FTP through the proxy. The YaST client 
> does not allow you to specify an FTP username in the form 
> ftp://[EMAIL PROTECTED] , but rather sends both a 
> Proxy-authorization and an Authorization entity in the HTTP header.

Ouch...

> My question: Is there any way to instruct Squid to use these credentials 
> for FTP login? I read somewhere that Squid is not permitted to forward 
> authorizations in which it "consumes", but is there a way to prevent 
> Squid from consuming these credentials? I would prefer to avoid using a 
> transparent proxy if possible...do I have any other options?

You need to modify Squid to do this. See the ftpCheckAuth() function.
It's somewhat outside the standards to not send the login & password in
the URL, but not a bad idea as such..

Regards
Henrik


signature.asc
Description: Detta är en digitalt signerad	meddelandedel


Re: [squid-users] Passthrough authentication

2006-06-21 Thread Henrik Nordstrom
ons 2006-06-21 klockan 15:53 +1000 skrev Tim Bates:
> We are about to be moved to using a parent proxy that authenticates 
> users. Is it possible to pass the required user names/passwords through 
> squid?

Yes, assuming we are talking about basic authentication. But due to
security implications when peering with proxies maybe not under your
control you must explicitly allow it per peer. See the cache_peer
directive.

The host & port will be that of your proxy as that is what the client is
talking to, but the realm should be what is presented by the upstream
proxy.

Regards
Henrik


signature.asc
Description: Detta är en digitalt signerad	meddelandedel


Re: [squid-users] the dreaded 'zero sized reply' on RHEL3

2006-06-21 Thread Henrik Nordstrom
ons 2006-06-21 klockan 11:12 +0200 skrev [EMAIL PROTECTED]:
> Hi,
> 
> I have an upto date Redhet enterprise linux 3 running the most current 
> version of squid available (squid-2.5.STABLE3-6.3E.16)

Current is a matter of definition. 2.5.STABLE3 is a rather old Squid (3+
years)... current version is 2.5.STABLE14.

Support for this patched binary distribution is provided by RedHat.

> There is one website that will not work with squid, we always get a "zero 
> sized reply". I had the same problem with older squid versions, and 
> decided an upgrade might solve the problem, but it did not.
>
> the site is: www.systemat.be and when you surf  to this site, the url 
> changes to:
> 
> http://212.190.223.210/is-bin/INTERSHOP.enfinity/eTS/Store/en_BE/-/EUR/Storefront-Systemat
> 
> Can someone else check please if their squid works with this site ?

That URL works here.. Squid-2.6.RC1 on Fedora Core 5. No special sysctls
set, no special squid.conf settings either..

Regards
Henrik


signature.asc
Description: Detta är en digitalt signerad	meddelandedel


Re: [squid-users] ignoring If-Modified-Since: from browsers, but still generating If-Modified-Since: requests

2006-06-21 Thread Chris Lightfoot
On Wed, Jun 21, 2006 at 03:32:52AM +0200, Henrik Nordstrom wrote:
> fre 2006-06-16 klockan 18:35 +0100 skrev Chris Lightfoot:
> 
> > client. Therefore (and while we'd like to save the
> > bandwidth...) we need to have squid treat conditional GETs
> > as non-conditional; but obviously we still need to use
> > conditional GETs internally (otherwise we'd lose the
> > performance gain of using squid in the first place). Is
> > there a simple way to do this, or do I need to patch
> > squid?
> 
> You need to patch Squid unfortunately, but isn't a very hard thing to
> do. Look for HDR_IF_MODIFIED_SINCE in client_side.c.

the patch is indeed simple -- for anyone in the same
situation, here's a patch for 2.5.9:

--- squid-2.5.9/src/client_side.c.orig  2006-06-21 12:49:20.0 +0100
+++ squid-2.5.9/src/client_side.c   2006-06-21 12:52:00.0 +0100
@@ -3104,6 +3104,12 @@
safe_free(prefix);
break;
}
+
+   /* Many modern browsers do not correctly support If-Modified-Since:
+* conditional GETs, so suppress that header in incoming requests.
+* See https://bugzilla.mozilla.org/show_bug.cgi?id=269303 */
+   httpHeaderDelByName(&request->header, "If-Modified-Since");
+
request->flags.accelerated = http->flags.accel;
if (!http->flags.internal) {
if (internalCheck(strBuf(request->urlpath))) {

-- 
``Press button for a 60-second speech from Cecil Parkinson.''
  (graffito, on electric hand drier in loo)


Re: [squid-users] peer weight is not working please help

2006-06-21 Thread Henrik Nordstrom
ons 2006-06-21 klockan 00:50 -0700 skrev squid learner:
> 

> > Note: there is a bug in current Squid versions not
> > always logging the
> > hierarchy field correct... Squid Bug #1605.

> Sir 
> what i have to do now did i go back to test old
> versions what is best as your advice 
> some told the STABLE7 is best 
> please advice 

2.5.STABLE14 is better.. if the logging troubles you then apply the
patch from Bug report #1605.

In a week or so there will be a 2.5.STABLE15 release including this
patch and a few other.

Regards
Henrik


signature.asc
Description: Detta är en digitalt signerad	meddelandedel


Re: [squid-users] Best non-graphical Squid log analysis tool for Linux shell?

2006-06-21 Thread Mehdi Sarmadi

Have you tried Calamaris? it would also email each analysis result in
plain text.

On 6/21/06, Strandell, Ralf <[EMAIL PROTECTED]> wrote:

Hi

What Squid logfile analysis tool would you recommend that
1) runs from Linux command line
2) produces clear human readable text format reports (no html, no
graphics)
3) is capable of listing most used domains (causing most traffic
measured in MB/day)
4) is capable of listing most used single objects (causing most traffic
measured in MB/day)
5) is capable of producing traffic statistics (history)(MB by hour or MB
by weekday)

Recommendations for cache optimization tools and helpers would be
welcome, too.

Thanks





--
Mehdi Sarmadi
http://msarmadi.googlepages.com


[squid-users] Best non-graphical Squid log analysis tool for Linux shell?

2006-06-21 Thread Strandell, Ralf
Hi

What Squid logfile analysis tool would you recommend that
1) runs from Linux command line
2) produces clear human readable text format reports (no html, no
graphics)
3) is capable of listing most used domains (causing most traffic
measured in MB/day)
4) is capable of listing most used single objects (causing most traffic
measured in MB/day)
5) is capable of producing traffic statistics (history)(MB by hour or MB
by weekday)

Recommendations for cache optimization tools and helpers would be
welcome, too.

Thanks



Re: [squid-users] scripts to caculate Kb transfered from access.log

2006-06-21 Thread ankush grover

hey,

There are softwares which can give you daily,weekly and monthly
reports on the usage of the internet by each ip. One of the best
softwares for this purpose is "sarg"

http://sarg.sourceforge.net/

Regards

Ankush Grover


Re: [squid-users] SQUINT

2006-06-21 Thread Dmitry Melekhov

nonama wrote:


Hi All,


Has anyone got any experience with configuring SQUINT
? 


I manage to get it up and out on the browser.It
creates directories and html files but all empty and I
cannot see any report. Where should I configure for it
to grab data from the access log. 


Kindly help.
 


you have to start it with parameter :-)

/usr/local/bin/squint.cron.sh weekly
/usr/local/bin/squint.cron.sh daily
...

And as I see in squint.cron.sh it looks for logs in:

for DIR in \
   /var/squid/logs \
   /var/log/squid ; do
   if [ -d $DIR ] ; then LOGDIR=$DIR; fi
done




[squid-users] the dreaded 'zero sized reply' on RHEL3

2006-06-21 Thread tomvo
Hi,

I have an upto date Redhet enterprise linux 3 running the most current 
version of squid available (squid-2.5.STABLE3-6.3E.16)

There is one website that will not work with squid, we always get a "zero 
sized reply". I had the same problem with older squid versions, and 
decided an upgrade might solve the problem, but it did not.

I've read the FAQ and checked all the suggestions (amongst others checking 
sysctl.conf for advanced tcp ip settings) but no luck.

The website works fine on all other proxies, such as blue coat and others.

However, there is definitely something weird about this website, it's a 
redirect to another url and this destination url is very peculiar:

the site is: www.systemat.be and when you surf  to this site, the url 
changes to:

http://212.190.223.210/is-bin/INTERSHOP.enfinity/eTS/Store/en_BE/-/EUR/Storefront-Systemat

Can someone else check please if their squid works with this site ?
we're runing linux kernel 2.4.21-40.EL


Thanks,

tom.


---
Tom Van Overbeke - ABSI Service Delivery Coordinator
email: [EMAIL PROTECTED]
Tel: +32 2 333 40 00 - Fax: +32  2 333 40 60
website: http://www.absi.be
---



[squid-users] SQUINT

2006-06-21 Thread nonama
Hi All,


Has anyone got any experience with configuring SQUINT
? 

I manage to get it up and out on the browser.It
creates directories and html files but all empty and I
cannot see any report. Where should I configure for it
to grab data from the access log. 

Kindly help.

Thank you.



__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


[squid-users] scripts to caculate Kb transfered from access.log

2006-06-21 Thread Hement Gopal
--- Begin Message ---
Hi all

Squid 2.5 Stable13 on Redhat 9

Is there a script available that I can run against my access.log to
calculate how much a particular user's or ip subnet's internet usage
amounts to?

Rgds,
Hement

<>--- End Message ---
This 
communication is intended for the addressee only. It is confidential. If you 
have received this communication in error, please notify us immediately and 
destroy the original message. You may not copy or disseminate this 
communication without the permission of the University. Only authorized 
signatories are competent to enter into agreements on behalf of the University 
and recipients are thus advised that the content of this message may not be 
legally binding on the University and may contain the personal views and 
opinions of the author, which are not necessarily the views and opinions of The 
University of the Witwatersrand, Johannesburg. All agreements between the 
University and outsiders are subject to South African Law unless the University 
agrees in writing to the contrary.

Re: [squid-users] peer weight is not working please help

2006-06-21 Thread squid learner


--- Henrik Nordstrom <[EMAIL PROTECTED]>
wrote:

> tis 2006-06-20 klockan 10:37 -0800 skrev Chris
> Robertson:
> 
> > >1150813225.947902 192.168.1.23 TCP_MISS/302
> 567
> > >GET http://www.newscientist.com/ - NONE/-
> text/html
> > >  
> > >
> > No parent was used.
> 
> Note: there is a bug in current Squid versions not
> always logging the
> hierarchy field correct... Squid Bug #1605.
> 
> Regards
> Henrik
 Thanks for information 
Sir 
what i have to do now did i go back to test old
versions what is best as your advice 
some told the STABLE7 is best 
please advice 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 


Re: [squid-users] peer weight is not working please help

2006-06-21 Thread squid learner


> 
> I don't see a single successful request made through
> a parent cache.  
> You need to figure out why the parent caches are not
> passing you any 
> data.  Round robin will bounce every request to a
> different parent, 
> true, but it will not cause a request to canceled
> before it is serviced.
> 
> Chris
> 
Thanks Chris
 I am not very much familer with all so i need help 

all my parent are work fine if i use them direct in my
client browser

and about bug as explain by "Sir Henric

I dont no what to do do ire install squid or change
the version go back to STABLE6-6 or 7


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com