Displaying 20 results from an estimated 2000 matches similar to: "SQUID zero penalty for HIT trraffic patch"
2004 Apr 08
3
Squid + shaping question
Hi folks,
So, I have a pretty simple setup - a linux router machine running as a
firewall/router for a small neighborhood LAN (approx 20 machines). I also
have squid running on the box in non-transparent mode, and also I have set
up NAT for TCP/UDP ports above 1024 for all clients and SSH/POP/SMTP/CVS
NAT''d for selected ones based on MAC filtering. No hosts whatsoever can
access ports 80
2004 Jun 28
0
fairnat with squid + Squid with ZPH
Hi,
I''m trying to share internet on a LAN
I''ve a linux router with SQUID (with ZPH support) + FAIRNAT
The idea is:
- fairness sharing internet
- priorize interactive traffic
- if a web object is on squid-cache (HIT), user
can download it, with a rate = LAN rate
I''ve:
- Last Fairnat Script: www.metamorpher.de/fairnat/
- SQUID 2.5STABLE5 with ZPH patch
2004 Apr 14
2
zph / squid syntaxis ?
Hi,
I''ve used old ZPH patch under squid 2.4 Stable4
and it works great !
Now I want to patch squid 2.4 stable 5,
with new patch, on http://www.it-academy.bg/zph/
I''ve patched and installed squid 2.5 stable 5
succefully, but I can''t get ZPH works.
I''m trying with
...
$TC class add dev $LANDEV parent 1: classid 1:7 htb rate 1Mbit
$TC filter add dev $LANDEV
2007 Apr 18
1
[Bridge] bridge at start up
hi i have gone through the achieves but still could not get my bridge to suvive a reboot .
please can anyone help me am using fedora core 2
-----Original message-----
From: bridge-request@lists.osdl.org
Date: Fri, 28 Jan 2005 03:08:06 +0100
To: bridge@lists.osdl.org
Subject: Bridge Digest, Vol 17, Issue 25
> Send Bridge mailing list submissions to
> bridge@lists.osdl.org
>
>
2006 Dec 21
1
zph patch website broken ?
Hi,
I used to patch my squid with ZPH patch on
http://www.it-academy.bg/zph/
> The idea behind this patch is to allow classification
> of packets generated from the squid cache engine towards
> clients.
> The classification is based on whether the content is
> being served from cache (a cache HIT), or
> is being retrieved from a remote server (a cache MISS).
Very useful
2002 May 14
1
what''s the meaning of xchg()?
lartc-request,hello!
I find a line in tbf_change() in sch_tbf.c: ptab = xchg(&q->P_tab, ptab);
Can I consider that the pointers are exchanged between q->P_tab and ptab? as following:
prev=q->R_tab;
q->R_tab = rtab;
rtab = prev;
Is my understanding righ?
======= 2002-03-23 12:01:00 you wrote:=======
>Send LARTC mailing list
2008 Dec 28
1
cox regression warning/error messages
Hello,
I am hoping for some advice regarding warning/error messages I
received when running a Cox regression
# message 1 - obtained while creating a plot of residuals
> plot (NV.zph, main = "groupNUSM - UNFIT", var= 'groupNUSM')
Warning messages:
1: In approx(xx, xtime, seq(min(xx), max(xx), length.out = 17)[2 * :
collapsing to unique 'x' values
2: In
2004 Nov 10
0
RE: [S] worked in R, but not in S-Plus
The following works, you need to include x=TRUE in the call to coxph.
Passing the time and status variables as additional arguments is a matter of
personal preference.
f.coxph.zph<-function(x, timeVar, statusVar)
{
cox.fit <- coxph(Surv(timeVar, statusVar) ~ x, na.action =
na.exclude, method = "breslow", x=TRUE)
fit.zph<-cox.zph(cox.fit)
fit.zph$table[,3]
}
time.cox <-
2005 Mar 21
0
SAMBA3+LDAP PDC - Cannot join the domain
Okay, so I've RAZ my ldap-database since last week, I've check all my
config from samba.
Now I have another error :(
When I try to join the domain in Administrator; (samba create the
computer but ...) :
Administrator:x:998:512:Netbios Domain
Administrator:/home/data1/samba/Administrator:/sbin/nologin
Here's the log of Samba log.poil-barebone
2004 Nov 10
1
worked in R, but not in S-Plus
Hi,
I wrote a function that worked well in R, but not in
S-Plus, can anyone suggest a solution?
> f.coxph.zph<-function(x)
{
cox.fit <- coxph(Surv(time.cox, status.cox) ~ x,
na.action = na.exclude, method = "breslow")
fit.zph<-cox.zph(cox.fit,transform='log')
fit.zph$table[,3]
}
yyy is my data frame that contains survial time,
censor status and predictor
2007 Jan 25
0
cox.zph vs log-log survival plot
Hello,
Excuse me for a more methodological than technical question. I'm developing a Cox model with 10 covariates. One of them is age (named "eta"). I've checked proportionality with cox.zph with age continuous:
> cox.zph(coxph(Surv(TTP,CENSOTTP)~eta))
rho chisq p
eta -0.0154 0.0225 0.88
and categorical (eta<60):
>
2004 Mar 16
0
SQUID + tc problems
I''m trying to limit bandwidth consumption of sites hosted behind a squid
working as a reverse transparent proxy (squid 2.5.3 with Patrick McHardy
tcp_outgoing_priority patch) but with traffic levels for a given site of
1Mbps, only about 1% of the traffic shows up in a tc -s -d.
Anyone has experience working with this setup ? is there any alternative
or special consideration when
2004 Mar 05
0
Squid-qos Patch Trouble
Hiya, i have a squid-2.5.4 transparent proxy working in http accelerator
mode (i.e. web servers are behind the squid, and all www records point to
the squid IP) and i want to implement some sort of bandwidth management
so, for example, any given hosted website/server won''t eat more than let''s
say 1Mbit of upstream bandwidth, i have recompiled squid using Patrick
Mchardy
2008 Nov 10
1
coxph diagnostics plot for shape of hazard function?
Hi,
I've been banging my head against the following problem for a while
and thought the fine people on r-help might be able to help. I'm
using the survival package.
I'm studying the survival rate of a population with a preexisting
linear-like event rate (there are theoretical reasons to believe
it's linear, but of course it's subject to the usual sampling noise)
Some of the
2005 Jan 26
0
Changing axis labels in plots of zph objects (survival analysis)
Hi,
I am using the Survival package, more precisely the cox.zph function, to plot log(Hazard rate) over time.
if I type
plot(temp.zph[2])
then I get the plot I want. However, I want to change the label of the y axis that cox.zph prints.
plot(temp.zph[2],xlab='Days', ylab='log hazard for Fast recovery cluster')
then I get
Error in plot.default(range(xx), yr, type =
2005 Mar 21
2
SAMBA3 + LDAP = PDC => ROUND 4 ;o)
Okay
I try this thing :
mastok:/etc/samba # smbldap-useradd root
mastok:/etc/samba # smbldap-usermod -u 0 -g 0 root
mastok:/etc/samba # smbldap-usermod -a root
mastok:/etc/samba # smbldap-passwd root
#####
Administrator:x:998:512:Netbios Domain
Administrator:/home/data1/samba/Administrator:/sbin/nologin
nobody:x:999:514:nobody:/dev/null:/sbin/nologin
root:x:0:0:System
2006 Feb 21
0
Best internet traffic shaping for small lan
I''m admin of 50 clients. Sometimes I upgrading my internet traffic
shaping script. I think rules of inetrnet traffic
shaping is very important thing! I would like to ask some help from
people, who understand something about
SQUID ZPH and TC, to aim beter internet traffic shaping scripts.
Squid has ZPH suport, becouse its responds to such commands as:
zph_tos_local 8
zph_tos_peer 0
2007 Sep 27
1
plot(cox.zph())
Hello,
I got error message when applying the plot function to the cox.zph
object to create the Schoenfeld residual plots.
> plot(zph.revasFit[1])
Error in plot.window(xlim, ylim, log, asp, ...) :
need finite 'ylim' values
In addition: Warning messages:
1: NaNs produced in: sqrt(x$var[i, i] * seval)
2: no non-missing arguments to min; returning Inf in: min(x)
3: no
2009 Apr 29
1
Newbie R question PART2
Hi Tena,
I recommend rapache for building websites with R. See
http://biostat.mc.vanderbilt.edu/rapache/
-Ista
> ---------- Forwarded message ----------
> From: "Tena Sakai" <tsakai at gallo.ucsf.edu>
> To: <ted.harding at manchester.ac.uk>, <r-help at r-project.org>
> Date: Tue, 28 Apr 2009 15:04:53 -0700
> Subject: Re: [R] Newbie R question PART2
>
2005 Mar 22
3
SAMBA3 + LDAP = Round 5 :(((
Okay, if anyone can help me, I put all my config and log on
http://www.arzurproduction.com/temp/
I cannot join the domain on my Windows XP (Access Deny)
So I try :
1- An Administrator user create by smbldap-populate, I have root =
Administrator on my /etc/samba/smbusers
Error :
[2005/03/21 10:09:03, 2] auth/auth.c:check_ntlm_password(312)
check_ntlm_password: Authentication for user