Displaying 20 results from an estimated 7000 matches similar to: "Detect and mark ''bulk'' http traffic"
2006 May 07
5
Detecting p2p traffic
After varying degrees of success with p2p detection modules, I would like to
write the following rules using iptables to reliably identify p2p traffic:
1. If a host on the network has 5 or more simutaneous tcp connections to ports
above 1024, mark all connections to ports 1024 and above as 60.
2. If a host has received (or sent) UDP packets from 5 different hosts'' ports
above 1024 in a
2007 Feb 05
16
Problems with HTB. Help!
Hello list.
I''ve configured a very simple script to slow down packets coming from a
particular IP Address. I''ve used IPTABLES to mark traffic coming from this
IP Address, but it does not appear to be working as expected. Let me first
describe my system as maybe what I''m doing is beyond what NETFILTER can do.
I have one machine that runs all my servers as
2006 Nov 04
8
Strategy for penalising IPs with too many simultaneous sessions
Hi all,
I have been trying to investigate traffic shaping in an effort to solve
the "unfriendly network apps" problem on a test network.
I have a basis by which I''d like to shape traffic, but studying the
howto doesn''t uncover and existing qdisc that seems to fit what I would
like to do.
The problem I would like to address is to prevent an IP address opening
10
2005 Oct 22
4
Differentiating between http downloads and interactive traffic
Hi,
I''ve been wondering if anyone has thought of a way to differentiate
between an established http download and interactive http traffic? I
would like to give interactive http traffic priority over someone
downloading large files.
Has anyone any ideas how to detect packets that are part of a download
like this?
Thanks.
_______________________________________________
2007 Nov 12
18
How to fight with encrypted p2p
Hi
I believe that whole question is in topic.
Is there any way to recognize ( and then shape ) p2p traffic which is encrypted?
Modern p2p clients have this ability moreover some of them have this enabled by default.
Now I''m using ipp2p for iptables but as I know this doesn''t recognize encrypted traffic.
Thanks in advance.
Pozdrawiam
Szymon Turkiewicz
2004 Sep 23
5
Prioritizing forwarded traffic over locally generated traffic
Hi,
I''m a complete newbie at this traffic shaping / QoS stuff so please excuse
me if this is a silly question. I''ve searched and searched on Google and I
just end up confusing myself even more, so I thought I''d post my question to
this list and see whether someone can help me!
Basically, I am running a Linux box as a NAT router on my home network
(machine name marvin).
2007 Feb 18
3
Modifying traffic shaping rates according to the amount of active users
Hi,
I''m trying to divide my bandwidth between different services, but I''d like
to take into account the number of active users.
For example, l want divide my bandwidth between HTTP and SMTP and guarantee
HTTP 80% of the bandwidth.
However, I have many users on my system (tens of thousands) and if only 1%
of my active users are using HTTP (and the other 99% SMTP), I''d
2007 Feb 08
5
GPL Software for Small ISP
Sir,
I have one 2 MB link which I have to distribute to 200 people.
Caching may enchance performance. Kindly suggest packages for this purpose
under GPL.
Regards,
Rayudu.
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
2013 Oct 28
2
[LLVMdev] Loop vectorizer dosen't find loop bounds
I am trying to vectorize the function
void bar(float *c, float *a, float *b)
{
const int width = 256;
for (int i = 0 ; i < 256 ; ++i ) {
c[ i ] = a[ i ] + b[ i ];
c[ width + i ] = a[ width + i ] + b[ width + i ];
}
}
using the following commands
clang -emit-llvm -S loop.c
opt loop.ll -O3 -debug-only=loop-vectorize -S -o -
LV: Checking a loop in
2006 Aug 22
1
htb prioritise trafic
I have a router with about 300 clients connecting to it. It has htb with
a class per client.
I wnat to create a script to prioritise www trafic and ssh trafic over
p2p trafic....
this is a sample of what i have now:
/sbin/tc class add dev eth0 parent 1:5 classid 1:8012 htb rate 35Kbit
ceil 281Kbit prio 6
/sbin/tc qdisc add dev eth0 parent 1:8012 handle 8012 sfq perturb 8
/sbin/tc filter add
2007 Jan 23
6
LARTC Wiki
Hi all,
Since the mail list receives a lot of repeated subjects (for example: "i
have two adsl lines..."), maybe these specific issues should be treated on
the LARTC Guide, or maybe if we had an wiki?
Is there a LARTC Wiki?
If not, what do you think about creating one?
Thanks
--
Marco
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
2004 Oct 25
6
Limit traffic that use to download a file
Dear All,
I want to limit traffic that use by my client to download files
directly from browser, I have already limit the traffic for the same
purpose to ftp connection. But I don''t want to limit traffic that using for
browsing the web. Can I do this with IMQ/HTB or any other method to
make this happen.
Thank You.
Sorry my English is bad.
RInto Exandi
2013 Oct 28
0
[LLVMdev] Loop vectorizer dosen't find loop bounds
----- Original Message -----
> I am trying to vectorize the function
>
> void bar(float *c, float *a, float *b)
> {
> const int width = 256;
> for (int i = 0 ; i < 256 ; ++i ) {
> c[ i ] = a[ i ] + b[ i ];
> c[ width + i ] = a[ width + i ] + b[ width + i ];
> }
> }
>
> using the following commands
>
> clang
2004 Sep 08
3
Traffic Priority by IP address..
Hi,
I have a PC that acts as a VoIP gateway using an internet telephony
provider to make phone calls.. Data between me and the provider will
always be from one IP address on my internal network to the provider..
I have a 1Mbps/256Kbps ADSL line and the voice stream is highly
compressed requireing only 30Kbps of bandwidth..
The problem is that when my Mozilla Mail client polls for mail or
2013 Oct 28
2
[LLVMdev] Loop vectorizer dosen't find loop bounds
Bingo! That works (when coming from C source)
Now, I have a serious problem. I am not coming from C but I build the
function with the builder. I am also forced to change the signature and
load the pointers a,b,c afterwards:
define void @bar([8 x i8]* nocapture readonly %arg_ptr) #0 {
entrypoint:
%0 = bitcast [8 x i8]* %arg_ptr to i32*
%1 = load i32* %0, align 4
%2 = getelementptr [8 x
2013 Oct 28
0
[LLVMdev] Loop vectorizer dosen't find loop bounds
----- Original Message -----
> Bingo! That works (when coming from C source)
>
> Now, I have a serious problem. I am not coming from C but I build the
> function with the builder. I am also forced to change the signature
> and
> load the pointers a,b,c afterwards:
>
> define void @bar([8 x i8]* nocapture readonly %arg_ptr) #0 {
> entrypoint:
> %0 = bitcast [8 x
2013 Oct 21
5
[LLVMdev] First attempt at recognizing pointer reduction
Hi Nadav, Arnold,
I managed to find some time to work on the pointer reduction, and I got a
patch that can make "canVectorize()" pass.
Basically what I do is to teach AddReductionVar() about pointers, saying
they don't really have an exit instructions, and that (maybe) the final
store is a good candidate (is it?).
This makes it recognize the writes and reads, but then
2013 Oct 29
2
[LLVMdev] Loop vectorizer dosen't find loop bounds
Thanks for the alternatives!
I am trying the 'extracting sub-function' approach. However, it seems I
can't get the 'subfunction' to pass the verifier. This is my subfunction:
define void @main_extern([8 x i8]* %arg_ptr) {
entrypoint:
%0 = getelementptr [8 x i8]* %arg_ptr, i32 0
%1 = bitcast [8 x i8]* %0 to i64*
%2 = load i64* %1
%3 = getelementptr [8 x i8]*
2015 Jun 26
2
"Sensible" location for Sieve scripts
On Fri, 2015-06-26 at 09:40 -0600, Shawn Heisey wrote:
> On 6/26/2015 5:48 AM, Andrew Beverley wrote:
> > I'm configuring some Sieve scripts for virtual users. I'd like to keep
> > the Sieve scripts somewhere "sensible".
> >
> > Currently, all the mail goes into /var/mail/vhosts/<domain>/<mailbox>
> >
> > So I thought a good
2013 Oct 29
0
[LLVMdev] Loop vectorizer dosen't find loop bounds
----- Original Message -----
> Thanks for the alternatives!
>
> I am trying the 'extracting sub-function' approach. However, it seems
> I
> can't get the 'subfunction' to pass the verifier. This is my
> subfunction:
>
> define void @main_extern([8 x i8]* %arg_ptr) {
> entrypoint:
> %0 = getelementptr [8 x i8]* %arg_ptr, i32 0
> %1 =