search for: ifin

Displaying 7 results from an estimated 7 matches for "ifin".

Did you mean: fin
2004 Nov 29
2
Interesting oopses...
...- this is starting to get frustrating... Are there any known issues with 2.6.9 and traffic shaping? I am using 2.6.9 with geoip 20041115, and get odd oopses. The following script oopses my box: ----------------------------------------------------- #!/bin/sh -x IFOUT=''eth1'' IFIN=''eth0'' TC=''/sbin/tc'' IPT=''/usr/local/sbin/iptables'' # BW definitions: # units of kbit/s NETBW=10000 OUTBW=116 INBW=116 # Clear old shapers... echo "Clearing old shapers..." $TC qdisc del dev $IFIN root 2> /dev/null > /dev/nul...
2020 Oct 09
1
Aide pour finaliser ce code
...#calcul des Lamda J Lamda=matrix(0,p,p) for (i in 1:q){ to=TO.jh[[i]] w=matrix(0,p,p) for (j in 1:R[i]){ w=w+(P11[[i]][j]*(to[j,]%*%t(to[j,]))) } Lamda=Lamda+w } tr1=n*sum(diag(Lamda)) # Calcul de Gamma GGamma=matrix(0,p*sum(R),p*sum(R)) PGamma=kronecker(diag(P11[[1]]),diag(p)) Ifin=p*R[1] GGamma[1:Ifin,1:Ifin]=PGamma for (i in 2:q){ PGamma=kronecker(diag(P11[[i]]),diag(p)) Idebut=((p*sum(R[1:(i-1)]))+1) Ifin=(p*sum(R[1:i])) GGamma[Idebut:Ifin,Idebut:Ifin]=PGamma } #Calcul de Sigma # Calcul de Vn X1=CentrageV(X,Xbar,n) Vn=t(X1)%*%X1/n ## Construction de Sigma...
2020 Oct 10
3
Please need help to finalize my code
...,p,p) 98 for (i in 1:q){ 99 to=TO.jh[[i]] 100 w=matrix(0,p,p) 101 for (j in 1:R[i]){ 102 w=w+(P11[[i]][j]*(to[j,]%*%t(to[j,]))) 103 } 104 Lamda=Lamda+w 105 } 106 tr1=n*sum(diag(Lamda)) 107 # Gamma Calculation 108 GGamma=matrix(0,p*sum(R),p*sum(R)) 109 PGamma=kronecker(diag(P12[[1]]),diag(p)) 110 Ifin=p*R [1] 111 GGamma[1:Ifin,1:Ifin]=PGamma 112 for (i in 2:q){ 113 PGamma=kronecker(diag(P12[[i]]),diag(p)) 114 Idebut=((p*sum(R[1:(i-1)]))+1) 115 Ifin=(p*sum(R[1:i])) 116 GGamma [Idebut:Ifin,Idebut:Ifin]=PGamma 117 } 118 #Sigma calculation 119 # Calculation of Vn 120 X1=CenteringV(X,Xbar,n) 121 Vn...
2020 Oct 13
1
Please need help to finalize my code
...; 101 for (j in 1:R[i]){ > 102 w=w+(P11[[i]][j]*(to[j,]%*%t(to[j,]))) > 103 } > 104 Lamda=Lamda+w > 105 } > > 106 tr1=n*sum(diag(Lamda)) > > 107 # Gamma Calculation > > 108 GGamma=matrix(0,p*sum(R),p*sum(R)) > 109 PGamma=kronecker(diag(P12[[1]]),diag(p)) > 110 Ifin=p*R [1] > 111 GGamma[1:Ifin,1:Ifin]=PGamma > 112 for (i in 2:q){ > 113 PGamma=kronecker(diag(P12[[i]]),diag(p)) > 114 Idebut=((p*sum(R[1:(i-1)]))+1) > 115 Ifin=(p*sum(R[1:i])) > 116 GGamma [Idebut:Ifin,Idebut:Ifin]=PGamma > 117 } > > 118 #Sigma calculation > > 119...
2020 Oct 13
0
Please need help to finalize my code
...to[j,]%*%t(to[j,]))) > > 103 } > > 104 Lamda=Lamda+w > > 105 } > > > > 106 tr1=n*sum(diag(Lamda)) > > > > 107 # Gamma Calculation > > > > 108 GGamma=matrix(0,p*sum(R),p*sum(R)) > > 109 PGamma=kronecker(diag(P12[[1]]),diag(p)) > > 110 Ifin=p*R [1] > > 111 GGamma[1:Ifin,1:Ifin]=PGamma > > 112 for (i in 2:q){ > > 113 PGamma=kronecker(diag(P12[[i]]),diag(p)) > > 114 Idebut=((p*sum(R[1:(i-1)]))+1) > > 115 Ifin=(p*sum(R[1:i])) > > 116 GGamma [Idebut:Ifin,Idebut:Ifin]=PGamma > > 117 } > > &gt...
2003 Nov 18
4
logwatch
Hi All, I need to be able to make sense from my shorewall logs. I have installed logwatch and it is mailing me reports but the level of detail is just not there. I have set the detail variable to High=10 but I get entries only from the DNS service about denied updates. What am I getting wrong? Tom, will you be kind enough to send me your logwatch config files? Thanks in advance. Ama
2004 Nov 15
5
Packet loss with htb+sfq+l7filter
...outer is a p4xeon running linux 2.6.9 with the qnet patches (http://kem.p.lodz.pl/~peter/qnet/). When I activate ip_forward I get >20% packet loss and a lot of duplicates. Any ideas? I attach my shaping script. Thank you very much in advance, Eduardo router:~# cat htb.new #!/bin/sh IFOUT=eth0 IFIN=eth2 # cleaning tc qdisc del dev $IFOUT root &>/dev/null tc qdisc del dev $IFOUT ingress &>/dev/null # link''s capacity CEIL=500 # 1:10 interactive traffic with the highest prio (dns, ssh...) # 1:20 interactive traffic with lower prio (radios, vcn, x11...) # 1:30 bulk (ht...