From: Corey Hickey <bugfood-ml@fatooh.org>
To: lartc@vger.kernel.org
Subject: Re: [LARTC] Setting up htb on 2.6.3
Date: Sun, 14 Mar 2004 08:35:23 +0000 [thread overview]
Message-ID: <4054194B.50207@fatooh.org> (raw)
In-Reply-To: <AC21CF284D68894694B7264C6B94B61B497EAE@chlorine.ilb.com.au>
Kevin Withnall wrote:
> I think the kernel is fine. I received some patches and re-compiled
> iproute2 on 2.4.20, moved the binaries to 2.6.3 and it works more..
>
> Heres what happens now.
>
> #./qd
> + tc qdisc del dev eth0 root
> + tc qdisc del dev eth0 ingress
> + tc qdisc add dev eth0 root handle 1: htb
> + tc class add dev eth1 parent 1: classid 1:1 htb rate 6mbit burst 15k
> RTNETLINK answers: No such file or directory
>
> The qdisc command works but the class one doesn't. Any ideas ?
>
> Thanks
>
That's because you switched from eth0 to eth1, in your last command. If
you want to assign an htb class to eth1, you have to first assign it an
htb qdisc:
tc qdisc add dev eth1 root handle 1: htb
tc class add dev eth1 parent 1: classid 1:1 htb rate 6mbit burst 15k
-Corey
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
next prev parent reply other threads:[~2004-03-14 8:35 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-03-13 1:17 [LARTC] Setting up htb on 2.6.3 Kevin Withnall
2004-03-13 2:33 ` Corey Hickey
2004-03-13 23:06 ` Corey Hickey
2004-03-13 23:39 ` Kevin Withnall
2004-03-14 8:35 ` Corey Hickey [this message]
2004-03-14 21:10 ` Kevin Withnall
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=4054194B.50207@fatooh.org \
--to=bugfood-ml@fatooh.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 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.