* [LARTC] How to use the tc -s [statistics] option?
@ 2003-03-28 22:24 David Reoch
2003-03-29 1:11 ` Eduardo Bejar
2003-03-29 15:24 ` Stef Coene
0 siblings, 2 replies; 3+ messages in thread
From: David Reoch @ 2003-03-28 22:24 UTC (permalink / raw)
To: lartc
Hi,
I've tried every combination (except the RIGHT one, of course) to see
what the tc cbq statistics are. I really just want to see what it's
doing - I'm trying to rate limit napster/peer2peer apps, but they still
seem to be hogging up all of my T1 bandwidth.
Here's my tc config rules, minus the long list of ports in the class:
tc qdisc del dev eth0 root [eth0 is the Internet facing interface]
tc qdisc add dev eth0 root handle 1 cbq bandwidth 10Mbit avpkt 1000 cell 8
tc class change dev eth0 root cbq weight 1Mbit allot 1514
tc qdisc del dev eth1 root [eth1 is the intranet facing interface]
tc qdisc add dev eth1 root handle 1 cbq bandwidth 10Mbit avpkt 1000 cell 8
tc class change dev eth1 root cbq weight 1Mbit allot 1514
tc class add dev eth1 parent 1: classid 1:50 cbq bandwidth 10Mbit rate
35Kbit weight 3Kbit prio 5 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
tc qdisc add dev eth1 parent 1:50 handle 50 tbf rate 35Kbit buffer
10Kb/8 limit 15Kb mtu 1500
tc filter add dev eth1 parent 1:0 protocol ip prio 100 u32 match ip
sport 1755 0xffff match ip dst 0/0 classid 1:50
tc filter add [etc....]
same filter adds for eth0
Thank you for assistance,
dave@warpspeed.net
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [LARTC] How to use the tc -s [statistics] option?
2003-03-28 22:24 [LARTC] How to use the tc -s [statistics] option? David Reoch
@ 2003-03-29 1:11 ` Eduardo Bejar
2003-03-29 15:24 ` Stef Coene
1 sibling, 0 replies; 3+ messages in thread
From: Eduardo Bejar @ 2003-03-29 1:11 UTC (permalink / raw)
To: lartc
Hi David,
Try
tc -s qdisc ls dev eth0
tc -s qdisc ls dev eth1
Regards,
Edo
----- Mensaje original -----
De: "David Reoch" <dave@warpspeed.net>
Para: <lartc@mailman.ds9a.nl>
Enviado: Viernes, 28 de Marzo de 2003 17:24
Asunto: [LARTC] How to use the tc -s [statistics] option?
Hi,
I've tried every combination (except the RIGHT one, of course) to see
what the tc cbq statistics are. I really just want to see what it's
doing - I'm trying to rate limit napster/peer2peer apps, but they still
seem to be hogging up all of my T1 bandwidth.
Here's my tc config rules, minus the long list of ports in the class:
tc qdisc del dev eth0 root [eth0 is the Internet facing interface]
tc qdisc add dev eth0 root handle 1 cbq bandwidth 10Mbit avpkt 1000 cell 8
tc class change dev eth0 root cbq weight 1Mbit allot 1514
tc qdisc del dev eth1 root [eth1 is the intranet facing interface]
tc qdisc add dev eth1 root handle 1 cbq bandwidth 10Mbit avpkt 1000 cell 8
tc class change dev eth1 root cbq weight 1Mbit allot 1514
tc class add dev eth1 parent 1: classid 1:50 cbq bandwidth 10Mbit rate
35Kbit weight 3Kbit prio 5 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
tc qdisc add dev eth1 parent 1:50 handle 50 tbf rate 35Kbit buffer
10Kb/8 limit 15Kb mtu 1500
tc filter add dev eth1 parent 1:0 protocol ip prio 100 u32 match ip
sport 1755 0xffff match ip dst 0/0 classid 1:50
tc filter add [etc....]
same filter adds for eth0
Thank you for assistance,
dave@warpspeed.net
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [LARTC] How to use the tc -s [statistics] option?
2003-03-28 22:24 [LARTC] How to use the tc -s [statistics] option? David Reoch
2003-03-29 1:11 ` Eduardo Bejar
@ 2003-03-29 15:24 ` Stef Coene
1 sibling, 0 replies; 3+ messages in thread
From: Stef Coene @ 2003-03-29 15:24 UTC (permalink / raw)
To: lartc
On Friday 28 March 2003 23:24, David Reoch wrote:
> Hi,
>
> I've tried every combination (except the RIGHT one, of course) to see
> what the tc cbq statistics are. I really just want to see what it's
> doing - I'm trying to rate limit napster/peer2peer apps, but they still
> seem to be hogging up all of my T1 bandwidth.
You create bounded cbq classes and you add a tbf qdisc that bounds the traffic
in these classes again. So you don't need the tbf qdisc. I'm not sure it
will change a lot, but you can try to replace the tbf qdisc with a prio or
sfq qdisc.
> Here's my tc config rules, minus the long list of ports in the class:
>
> tc qdisc del dev eth0 root [eth0 is the Internet facing interface]
> tc qdisc add dev eth0 root handle 1 cbq bandwidth 10Mbit avpkt 1000 cell 8
> tc class change dev eth0 root cbq weight 1Mbit allot 1514
>
> tc qdisc del dev eth1 root [eth1 is the intranet facing interface]
> tc qdisc add dev eth1 root handle 1 cbq bandwidth 10Mbit avpkt 1000 cell 8
> tc class change dev eth1 root cbq weight 1Mbit allot 1514
>
> tc class add dev eth1 parent 1: classid 1:50 cbq bandwidth 10Mbit rate
> 35Kbit weight 3Kbit prio 5 allot 1514 cell 8 maxburst 20 avpkt 1000 bounded
> tc qdisc add dev eth1 parent 1:50 handle 50 tbf rate 35Kbit buffer
> 10Kb/8 limit 15Kb mtu 1500
> tc filter add dev eth1 parent 1:0 protocol ip prio 100 u32 match ip
> sport 1755 0xffff match ip dst 0/0 classid 1:50
> tc filter add [etc....]
Stef
--
stef.coene@docum.org
"Using Linux as bandwidth manager"
http://www.docum.org/
#lartc @ irc.oftc.net
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-03-29 15:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-03-28 22:24 [LARTC] How to use the tc -s [statistics] option? David Reoch
2003-03-29 1:11 ` Eduardo Bejar
2003-03-29 15:24 ` Stef Coene
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.