All of lore.kernel.org
 help / color / mirror / Atom feed
From: Clement MOREAU <clement.moreau@inventel.fr>
To: lartc@vger.kernel.org
Subject: [LARTC] Simple HTB setup with tcng
Date: Wed, 05 May 2004 06:46:50 +0000	[thread overview]
Message-ID: <1083739609.7835.12.camel@cmo> (raw)

Hello all, 

I am trying to set up a simple htb based system, where packets with
source ip 10.0.0.1 should have their own class. 
I plan to use tcng to set it up easier. 

Is there something wrong in my tcng file ? 

~/tcng$ cat htb
/*
 */

#include "fields.tc"
#include "ports.tc"

dev eth0 {
        htb ( ) { 
            class ( rate 600kbps, ceil 600kbps ) 
            { 
                class () if ip_src = 10.0.0.1 ; 
                class (default) ;
            } 
        }
}


When I compile it, I get : 

~/tcng$ tcc htb

# ================ Device eth0 

tc qdisc add dev eth0 handle 1:0 root htb default 3
tc class add dev eth0 parent 1:0 classid 1:1 htb rate 75000bps ceil
75000bps
tc class add dev eth0 parent 1:1 classid 1:2 htb rate 75000bps ceil
75000bps
tc class add dev eth0 parent 1:1 classid 1:3 htb rate 75000bps ceil
75000bps
tc filter add dev eth0 parent 1:1 protocol all prio 1 u32 match u32
0xa000001 0xffffffff at 12 classid 1:2


which is not working as expected. 
Packets never get matched. From what I understand of tc (not too much),
the filter should have been : 
tc filter add dev eth0 parent 1:0 protocol all prio 1 u32 match u32
0xa000001 0xffffffff at 12 classid 1:2

(I replaced parent 1:1 by parent 1:0). 

I tried this setup and it works as expected (at least : packets from the
server gets matched, other don't. I have used tc -s class show dev eth0
to see it).

Do I miss something ? 

Thank you.

-- 
Clement MOREAU <clement.moreau@inventel.fr>


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

             reply	other threads:[~2004-05-05  6:46 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-05-05  6:46 Clement MOREAU [this message]
2004-05-05  7:59 ` [LARTC] Simple HTB setup with tcng lartc
2004-05-05  8:15 ` Clement MOREAU
2004-05-05 11:44 ` lartc

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=1083739609.7835.12.camel@cmo \
    --to=clement.moreau@inventel.fr \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.