Linux Advanced Routing and Traffic Control list
 help / color / mirror / Atom feed
From: Stef Coene <stef.coene@docum.org>
To: lartc@vger.kernel.org
Subject: Re: [LARTC] u32 filter won't match
Date: Sun, 23 Nov 2003 10:16:26 +0000	[thread overview]
Message-ID: <marc-lartc-106958467622902@msgid-missing> (raw)
In-Reply-To: <marc-lartc-106956238912741@msgid-missing>

On Sunday 23 November 2003 05:03, Fredrik Tolf wrote:
> Hi!
>
> I really need help with a u32 filter that won't match what I think I'm
> telling it to. The situation is that I have set up an internal
> computer to change the TOS value of packets sent by certain processes
> to 0x1E (If anyone known of a better way to mark packets, please tell
> me. I would love to find some module that adds an IP option with UIDs
> and GIDs to the packets - does anyone know if such a module already
> exists?), and I want my router to deprioritize them. I also want to
> limit my outbound bandwidth to 750kbit overall. So anyway, this is my
> qdisc setup:
>
> tc qdisc add dev eth1 root handle 1: cbq bandwidth 10mbit \
>     avpkt 1000 rate 750kbit cell 8
> tc qdisc add dev eth1 parent 1: handle 2: prio bands 4
> tc qdisc add dev eth1 parent 2:1 handle 3: sfq perturb 10
> tc qdisc add dev eth1 parent 2:2 handle 4: sfq perturb 10
> tc qdisc add dev eth1 parent 2:3 handle 5: sfq perturb 10
> tc qdisc add dev eth1 parent 2:4 handle 6: sfq perturb 5
>
> So far so good. All packets go to the right qdisc among 3: - 5: (As
> seen with "tc -s qdisc ls"). However, when I add the filter to make
> packets with TOS 0x1E go to 6:, I set it up like this:
>
> tc filter add dev eth1 parent 1: protocol ip prio 1 \
>     u32 match ip tos 0x1e 0xff flowid 6:
You are making a lot of errors.  You add a root cbq qdisc, that's fine, but 
you need to add a class if you want to bound it to a rate.  
If you add a filter to a qdisc, it has to point to a class of that qdisc.  Not 
to an other class.

> I am under the impression that it should be done like that. However,
> that filter simply doesn't match the packets. I have tried some
> combinations, like setting the flowid to 2:4 instead or using parent
> 2:. (The strange thing is that when I used "parent 2:", no filter was
> added at all... What's up with that?) 
Try 
tc -s -d filter show dev eth1 parent 2:

Stef

-- 
stef.coene@docum.org
 "Using Linux as bandwidth manager"
     http://www.docum.org/
     #lartc @ irc.openprojects.net

_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

  reply	other threads:[~2003-11-23 10:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-23  4:03 [LARTC] u32 filter won't match Fredrik Tolf
2003-11-23 10:16 ` Stef Coene [this message]
2003-11-23 13:44 ` Fredrik Tolf
2003-11-23 14:08 ` Stef Coene
2003-11-23 18:46 ` Fredrik Tolf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=marc-lartc-106958467622902@msgid-missing \
    --to=stef.coene@docum.org \
    --cc=lartc@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox