Re: [LARTC] >10Mbit on HTB

2003-10-15 Thread Stef Coene
On Wednesday 15 October 2003 05:42, Rio Martin wrote: > On Wednesday 15 October 2003 01:25, Stef Coene wrote: > > On Tuesday 14 October 2003 05:59, Rio Martin wrote: > > > > None. Htb is an egress qdisc so it shapes outgoing traffic. An > > > > ingress qdisc handles the incoming packets. And the

Re: [LARTC] >10Mbit on HTB

2003-10-14 Thread Rio Martin
On Wednesday 15 October 2003 01:25, Stef Coene wrote: > On Tuesday 14 October 2003 05:59, Rio Martin wrote: > > > None. Htb is an egress qdisc so it shapes outgoing traffic. An > > > ingress qdisc handles the incoming packets. And there is no queue for > > > the incoming packets, so you can't us

Re: [LARTC] >10Mbit on HTB

2003-10-14 Thread Stef Coene
On Tuesday 14 October 2003 05:59, Rio Martin wrote: > > None. Htb is an egress qdisc so it shapes outgoing traffic. An ingress > > qdisc handles the incoming packets. And there is no queue for the > > incoming packets, so you can't use htb. You can use filteres + policers > > to rate limit traf

Re: [LARTC] >10Mbit on HTB

2003-10-13 Thread Rio Martin
On Tuesday 14 October 2003 01:51, Stef Coene wrote: > On Monday 13 October 2003 16:17, Kristiadi Himawan wrote: > > Oh ok, it's working now. The script is fine. > > My test tool isn't accurate. > > Now i have test with iperf and get accurate result. > > Other question ...:) > > which ingress qdisc

Re: [LARTC] >10Mbit on HTB

2003-10-13 Thread Stef Coene
On Monday 13 October 2003 16:17, Kristiadi Himawan wrote: > Oh ok, it's working now. The script is fine. > My test tool isn't accurate. > Now i have test with iperf and get accurate result. > > Other question ...:) > which ingress qdisc that accurate like htb? None. Htb is an egress qdisc so it sh

Re: [LARTC] >10Mbit on HTB

2003-10-13 Thread Kristiadi Himawan
: <[EMAIL PROTECTED]> Sent: Monday, October 13, 2003 1:07 PM Subject: Re: [LARTC] >10Mbit on HTB > On Monday 13 October 2003 12:16, Catalin BOIE wrote: > > On Sat, 11 Oct 2003, Kristiadi Himawan wrote: > > > I want to try to shape 20-30Mbps traffic using HTB. > &

Re: [LARTC] >10Mbit on HTB

2003-10-12 Thread Rio Martin
On Monday 13 October 2003 12:16, Catalin BOIE wrote: > On Sat, 11 Oct 2003, Kristiadi Himawan wrote: > > I want to try to shape 20-30Mbps traffic using HTB. > > It's possible? Anyone already try this? > Yes. It's working very good. > You may want to use hashes if you have a lot of filters. > > Than

Re: [LARTC] >10Mbit on HTB

2003-10-12 Thread Catalin BOIE
On Sat, 11 Oct 2003, Kristiadi Himawan wrote: > I want to try to shape 20-30Mbps traffic using HTB. > It's possible? Anyone already try this? Yes. It's working very good. You may want to use hashes if you have a lot of filters. > > Thanks. > --- Catalin(ux) BOIE [EMAIL PROTECTED] __

Re: [LARTC] >10Mbit on HTB

2003-10-11 Thread Jose Luis Domingo Lopez
On Saturday, 11 October 2003, at 21:28:10 +0700, Kristiadi Himawan wrote: > Below is the script: > [snipped] > The script seems correct, and very similar to what I use, except I don't even need to set up a "filter" to direct traffic, because in my tests I just need to limit the output to some spe

Re: [LARTC] >10Mbit on HTB

2003-10-11 Thread Jose Luis Domingo Lopez
On Saturday, 11 October 2003, at 20:01:04 +0700, Kristiadi Himawan wrote: > I want to try to shape 20-30Mbps traffic using HTB. > It's possible? Anyone already try this? > Very well possible, and you don't need great hardware for this, if you don't have a rather complex classification scenario.

[LARTC] >10Mbit on HTB

2003-10-11 Thread Kristiadi Himawan
Below is the script:   tc qdisc del dev eth2 roottc qdisc add dev eth2 root handle 1 htb default 10 r2q 100   tc class add dev eth2 parent 1: classid 1:2 htb rate 100Mbit   tc class add dev eth2 parent 1:2 classid 1:10 htb rate 20Mbit ceil 20Mbittc filter add dev eth2 parent 1:0 protocol ip p

[LARTC] >10Mbit on HTB

2003-10-11 Thread Kristiadi Himawan
I want to try to shape 20-30Mbps traffic using HTB. It's possible? Anyone already try this?   Thanks.