Displaying 17 results from an estimated 17 matches for "ematches".
Did you mean:
matches
2012 Jun 12
6
[RFC] net/sched/em_canid: Ematch rule to match CAN frames according to their CAN IDs
...o
their CAN IDs.
This RFC/Patch contains a reworked classifier initially posted in
http://www.spinics.net/lists/netdev/msg200114.html
The functionality is the same however there is almost 50% reduction
in the source code length.
There is a slight difference between this ematch and other available
ematches. Other ematches implement only a simple match operation and
are meant to be combined with logic conjunctions (e.g. AND, OR).
Our ematch makes it possible to use up to 32 rules in single
''configuration statement'' (with OR semantics). This allows us to take
the advantage of the bit...
2005 Jun 04
6
New HTB-derived qdisc for accounting?
Hi,
at my local university network, I have to make sure no student
uploads more than x GB/day. So far, I give them unlimited bandwidth
until they have more than y GB (y<x) upload. After that, I use the
u32 filter to associate the affected IP address with a HTB class
limited to the rate (remainingtraffic/remainingtime).
Since the accounting is done with ipt_ACCOUNT right now and the
netfilter
2005 Nov 08
6
[ANNOUNCE] iproute2 2.6.14-051107
Update to iproute2 is available. Most of the changes were to repair the
things that broke with the introduction of the batch mode to the ip command.
http://developer.osdl.org/dev/iproute2/download/iproute2-2.6.14-051107.tar.gz
For info on CVS ans other info see:
http://linux-net.osdl.org/index.php/Iproute2
Masahide NAKAMURA
* Updating for 2.6.14
- Show UPD{SA,POLICY} message
2005 Aug 16
0
[ANNOUNCE] iproute2 util update
http://developer.osdl.org/dev/iproute2/download/iproute2-050816.tar.gz
Update to iproute2 to include:
* Limit ip neigh flush to 10 rounds
* tc ematch support (thomas)
* build cleanups (thomas, et al)
* Fix for options process with ipt (jamal)
* Fix array overflow in paretonormal distribution build
* Update include files to 2.6.13
* Decnet doc update (Steven Whithouse)
Note: the ematch
2005 Oct 04
4
iproute2-050929 ERORR compiling
Dzien Dobry
Is there some error witch iproute2-050929.tar.gz becouse when i compile I don''t get tc
I have kernel 2.6.12.3
this is my log with compile
# make
make[1]: Entering directory `/home/src/a/04102005/iproute2-050929/lib''
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -I../include -DRESOLVE_HOSTNAMES -c -o ll_map.o ll_map.c
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes
2006 Mar 30
5
packet marking: only a ratio, not all
Hi all!
In short:
Anybody wrote a patch for DSMARK to make it capable of marking
only a ratio (a given arg to the tc command) of the packets it gets?
Say, 20%? Or, do I have to hack into the source? Alternatives,
like a filter spitting packets to 2 different DSMARK based on this ratio?
In long:
I''m a hungarian univ student involved in a project (RMD-QoS stuff)
which needs
2006 Mar 06
1
complex; ifb, masq et omnia
Hi all.
I''m using Jamal''s ifb virtual interface from new kernel. Redirecting incoming
traffic from external interface like that:
# tc [blahbla] match u32 0 0 flowid 1:0 action mirred egress redirect dev ifb0
to ifb to shape it.
The problem is that I''m using MASQUERADE by netfilter also. That redirected
traffic coming from internet gets to ifb _before_ DNAT is done.
2005 Mar 11
1
tc filter rules matching source IP and route?
Hi,
I''m trying to set up a tc filter rule matching the following conditons:
source ip is 192.168.0.68 and only packets shall be matched going out on
the internet connection.
My first try was
"protocol ip u32 match ip src 192.168.0.68 ! match ip dst 192.168.0.0/24"
but obviously tc doesn''t like the NOT ... ;-)
I also tried the route classifier, but it cannot be
2005 Dec 17
0
Fw: tc filter match u8 problem??
On Sat, 17 Dec 2005, Andy Furniss wrote:
> The u8 test works OK for me as does the one below.
My mistake. I cleaned the rules and removed the ones that collided with
the u8 one.
There is no error on this. (see explanation bellow).
>
> When playing with tc filters I always tc qdisc del dev eth0 root and enter
> the whole lot again between tests.
I always took that as mandatory.
2006 Apr 09
10
Trying to do some very simple ingress limiting, no success
Hi,
I am trying to do some simple ingress limiting based on fwmark. I know
the ability and sense to do INGRESS limiting is ehm... limited ;-) but
still I want to try it.
I tried several things.
=== 1 ===
tcq ingress handle ffff:
tcf parent ffff: protocol ip prio 1 handle 1 fw police rate 12mbit burst 10k drop
tcf parent ffff: protocol ip prio 1 handle 2 fw police rate 10mbit burst 10k drop
2005 Dec 16
2
tc filter match u8 problem??
Hi All
Can someone tell me what am I doing wrong?
These was suposed to catch icmp type 8. Why ''match u8'' does not work?
# tc filter add dev eth0 protocol ip parent 1: prio 2 \
u32 \
match u16 0x0800 0xffff at -2 \
match u8 8 0xff at 20 \
flowid 1:5
Illegal "match"
#
# tc filter add dev eth0 protocol ip parent 1: prio 2 \
u32 \
match
2007 Mar 21
7
how can i compile tc
Hi, i''m just new here,
i''m searching for how to compile tc (if i''ve understood correctly, i
must compile the whole iproute2 thing).
So i did like the read me file said:
------
1. Look at start of Makefile and set correct values for:
KERNEL_INCLUDE
-----
i did that, and then i doesn''t understand a damn thing about the
reste of the the 1st step about ADDLIB
2007 Sep 19
7
ifb and ppp
Hello!
My goal is to setup an ingress traffic shaping on my PPPOE DSL line with ifb.
My old imq stuff used iptables marks (like ''iptables -t mangle -A
PREROUTING -p tcp --sport 22 -m length --length :500 -j MARK --set-mark 31'')
to classify the traffic and since i am lazy, i tried to to reuse them with
ifb. But no luck: iptables marks the packets well, but tc
2007 Apr 04
4
Some advanced filtering questions
Hi All,
I need to do some tricky filtering stuff. Can anyone tell me if any of
the following are possible?
* match on a combination of firewall mark AND u32 criteria. ie. handle
6 fw AND u32 match ip src 1.2.3.4/32 - to match packets from 1.2.3.4
which have been marked elsewhere
OR
* to OR the values of u32 matches. Something like u32 match ip src
1.2.3.4/32 OR match ip dst 1.2.3.4/32 - to
2005 Apr 04
8
Help please with tc and iptables mark
Hello list members,
Finaly I''m here after a week of trying to subscribe to this list... pfew...
Anyway... I have a rather strange problem with tc. I am trying to police the
ingress traffic into my network using the iptables MARK feature (in mangle
table, PREROUTING) but it seems that tc filters ignore this marks and they
don''t work at all for me. Let me explain a bit more in
2005 Jan 04
11
ESFQ?
Hi again,
I was just looking around for ESFQ sources, and I see that the main site
is down, and only has kernel 2.6.4 patches.
Is ESFQ maintained? If so, where can I find patches for 2.6.10?
Thanks,
-justin
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2005 May 12
9
IPTables script
Hi All,
I''ve been playing with QOS for a short while now and have worked out how to do
what I want using HTB. Great queuing discipline btw.
My problem is the tc filters I want to setup aren''t working because
iptables is getting to the packets first and mangling the src address.
The iptables script I am using is MonMotha''s Firewall 2.3.8 and it includes
lots of nice