* [LARTC] prio qdisc problem
@ 2003-02-13 15:43 Esteban
2003-02-13 18:33 ` Stef Coene
0 siblings, 1 reply; 2+ messages in thread
From: Esteban @ 2003-02-13 15:43 UTC (permalink / raw)
To: lartc
Hello there,
I'm trying to do some prio qdisc, but it doesn't seem to work.
Can anybody tell me why ???
here is my simple prio qdisc script:
OPTIONS="bandwidth 100mbit allot 1514 maxburst 20 prio 3 avpkt 1000"
IPTABLES="/usr/local/bin/iptables.static"
INTERNAL=eth0
EXTERNAL=eth1
tc qdisc del dev eth0 root 2>/dev/null
tc qdisc add dev eth0 root handle 10: cbq bandwidth 100mbit avpkt 1000
tc class add dev eth0 parent 10: classid 10:1 cbq rate 512kbit bounded $OPTIONS
tc qdisc add dev eth0 parent 10:1 handle 20: prio
tc filter add dev eth0 parent 10: protocol ip prio 100 u32 \
match ip protocol 0x01 0xff \
flowid 20:1
tc filter add dev eth0 parent 10: protocol ip prio 100 u32 \
match ip dport 110 0xffff \
flowid 20:2
tc filter add dev eth0 parent 10: protocol ip prio 100 u32 \
match ip src 0.0.0.0/0 \
flowid 20:3
Is it the correct way to do that ?
thx a lot.
--
Esteban
Stephane DESMET
esteban@alstec.fr
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [LARTC] prio qdisc problem
2003-02-13 15:43 [LARTC] prio qdisc problem Esteban
@ 2003-02-13 18:33 ` Stef Coene
0 siblings, 0 replies; 2+ messages in thread
From: Stef Coene @ 2003-02-13 18:33 UTC (permalink / raw)
To: lartc
On Thursday 13 February 2003 17:53, Esteban wrote:
> Hello there,
> I'm trying to do some prio qdisc, but it doesn't seem to work.
> Can anybody tell me why ???
> here is my simple prio qdisc script:
>
>
>
> OPTIONS="bandwidth 100mbit allot 1514 maxburst 20 prio 3 avpkt 1000"
> IPTABLES="/usr/local/bin/iptables.static"
> INTERNAL=eth0
> EXTERNAL=eth1
>
>
> tc qdisc del dev eth0 root 2>/dev/null
> tc qdisc add dev eth0 root handle 10: cbq bandwidth 100mbit avpkt 1000
> tc class add dev eth0 parent 10: classid 10:1 cbq rate 512kbit bounded
> $OPTIONS
>
> tc qdisc add dev eth0 parent 10:1 handle 20: prio
>
>
> tc filter add dev eth0 parent 10: protocol ip prio 100 u32 \
> match ip protocol 0x01 0xff \
> flowid 20:1
> tc filter add dev eth0 parent 10: protocol ip prio 100 u32 \
> match ip dport 110 0xffff \
> flowid 20:2
> tc filter add dev eth0 parent 10: protocol ip prio 100 u32 \
> match ip src 0.0.0.0/0 \
> flowid 20:3
>
>
> Is it the correct way to do that ?
No.
Create a catch all filter that redirect all traffic to 10:1 (tc filter add u32
src 0.0.0.0/0 flowid 10:1 or something like that). And add your 3 filters to
the 20: class.
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] 2+ messages in thread
end of thread, other threads:[~2003-02-13 18:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-02-13 15:43 [LARTC] prio qdisc problem Esteban
2003-02-13 18:33 ` 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.