All of lore.kernel.org
 help / color / mirror / Atom feed
* [LARTC] iptables marked packets want's to be queued.
@ 2002-04-15  8:43 Christian Parpart
  2002-04-15  9:02 ` Stef Coene
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Christian Parpart @ 2002-04-15  8:43 UTC (permalink / raw)
  To: lartc

Hi all,

that is yet another problem I can't solve.
I want to use the iptables to match the packets to be queued but do not know 
how to tell my tc queues wich marked packages to use.

EXAMPLE: 

ppp0 with (768Kbit downstream and 128Kbit upstream)
the privileges local port 27005 should get 512/96

# the marked packets below shall be privileged.
$IPTABLES -t mangle -A PREROUTING -o ppp0 -p udp --sport 27005 \
          -j MARK --set-mark 21
$IPTABLES -t mangle -A POSTROUTING -i ppp0 -p udp --dport 27005 \
          -j MARK --set-mark 22
# the other packets may get the remaining bandwidth

# attach cbq to device ppp0 with handle 1: (1:0 ?)
$TC qdisc add dev ppp0 root handle 1: cbq bandwidth 768Kbit avpkt mpu 64

# create the root class (1:1)
$TC class add dev ppp0 parent 1:0 classid :1 est 1sec 4sec cbq \
    bandwidth 768Kbit rate 768Kbit

# create class A (privileged 1:10)
$TC class add dev ppp0 parent 1:1 classid 1:10 est 1sec 4sec cbq \
    bandwidth 768Kbit rate 512Kbit allot 1514 maxburst 50 avpkt 1000

$TC qdisc add dev ppp0 parent 1:10 sfq quantum 1514b perturb 15

# create class B (the remaining 1:20)
$TC class add dev ppp0 parent 1:1 class 1:20 est 1sec 4sec cbq \
    bandwidth 768Kbit rate 256Kbit allot 1514 maxburst 50 avpkt 1000

$TC qdisc add dev ppp0 parent 1:20 sfq quantum 1514b perturb 15

END EXAMPLE.

So. But how do I tell TC to use the iptables marked packets to queue?

Many many thanks,
Christian.
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [LARTC] iptables marked packets want's to be queued.
  2002-04-15  8:43 [LARTC] iptables marked packets want's to be queued Christian Parpart
@ 2002-04-15  9:02 ` Stef Coene
  2002-04-15  9:03 ` Stef Coene
  2002-04-15 10:27 ` Christian Parpart
  2 siblings, 0 replies; 4+ messages in thread
From: Stef Coene @ 2002-04-15  9:02 UTC (permalink / raw)
  To: lartc

tc filter add dev eth0 parent 1: protocol ip prio 3 handle 2 fw classid 10:11
Will put all packets marked with 21 in the class 10:11

Stef

On Monday 15 April 2002 10:43, Christian Parpart wrote:
> Hi all,
>
> that is yet another problem I can't solve.
> I want to use the iptables to match the packets to be queued but do not
> know how to tell my tc queues wich marked packages to use.
>
> EXAMPLE:
>
> ppp0 with (768Kbit downstream and 128Kbit upstream)
> the privileges local port 27005 should get 512/96
>
> # the marked packets below shall be privileged.
> $IPTABLES -t mangle -A PREROUTING -o ppp0 -p udp --sport 27005 \
>           -j MARK --set-mark 21
> $IPTABLES -t mangle -A POSTROUTING -i ppp0 -p udp --dport 27005 \
>           -j MARK --set-mark 22
> # the other packets may get the remaining bandwidth
>
> # attach cbq to device ppp0 with handle 1: (1:0 ?)
> $TC qdisc add dev ppp0 root handle 1: cbq bandwidth 768Kbit avpkt mpu 64
>
> # create the root class (1:1)
> $TC class add dev ppp0 parent 1:0 classid :1 est 1sec 4sec cbq \
>     bandwidth 768Kbit rate 768Kbit
>
> # create class A (privileged 1:10)
> $TC class add dev ppp0 parent 1:1 classid 1:10 est 1sec 4sec cbq \
>     bandwidth 768Kbit rate 512Kbit allot 1514 maxburst 50 avpkt 1000
>
> $TC qdisc add dev ppp0 parent 1:10 sfq quantum 1514b perturb 15
>
> # create class B (the remaining 1:20)
> $TC class add dev ppp0 parent 1:1 class 1:20 est 1sec 4sec cbq \
>     bandwidth 768Kbit rate 256Kbit allot 1514 maxburst 50 avpkt 1000
>
> $TC qdisc add dev ppp0 parent 1:20 sfq quantum 1514b perturb 15
>
> END EXAMPLE.
>
> So. But how do I tell TC to use the iptables marked packets to queue?
>
> Many many thanks,
> Christian.
> _______________________________________________
> LARTC mailing list / LARTC@mailman.ds9a.nl
> http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

-- 

stef.coene@docum.org
 "Using Linux as bandwidth manager"
     http://www.docum.org/
     #lartc @ irc.openprojects.net
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [LARTC] iptables marked packets want's to be queued.
  2002-04-15  8:43 [LARTC] iptables marked packets want's to be queued Christian Parpart
  2002-04-15  9:02 ` Stef Coene
@ 2002-04-15  9:03 ` Stef Coene
  2002-04-15 10:27 ` Christian Parpart
  2 siblings, 0 replies; 4+ messages in thread
From: Stef Coene @ 2002-04-15  9:03 UTC (permalink / raw)
  To: lartc

On Monday 15 April 2002 11:02, Stef Coene wrote:
> tc filter add dev eth0 parent 1: protocol ip prio 3 handle 2 fw classid
> 10:11 Will put all packets marked with 21 in the class 10:11
Oops :)  (still party time in my head)

tc filter add dev eth0 parent 1: protocol ip prio 3 handle 21 fw classid
10:11 

Will put all packets marked with 21 in the class 10:11

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [LARTC] iptables marked packets want's to be queued.
  2002-04-15  8:43 [LARTC] iptables marked packets want's to be queued Christian Parpart
  2002-04-15  9:02 ` Stef Coene
  2002-04-15  9:03 ` Stef Coene
@ 2002-04-15 10:27 ` Christian Parpart
  2 siblings, 0 replies; 4+ messages in thread
From: Christian Parpart @ 2002-04-15 10:27 UTC (permalink / raw)
  To: lartc

Stef Coene inspired the electrons to say:

> On Monday 15 April 2002 11:02, Stef Coene wrote:
>
> > tc filter add dev eth0 parent 1: protocol ip prio 3 handle 2 fw classid
> > 10:11 Will put all packets marked with 21 in the class 10:11
>
> Oops :)  (still party time in my head)
>
> tc filter add dev eth0 parent 1: protocol ip prio 3 handle 21 fw classid
> 10:11
>
> Will put all packets marked with 21 in the class 10:11
>
> Stef

Ah. So the handle parameter gets the marked value. 

Have many thanks,
Christian.

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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-04-15 10:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-04-15  8:43 [LARTC] iptables marked packets want's to be queued Christian Parpart
2002-04-15  9:02 ` Stef Coene
2002-04-15  9:03 ` Stef Coene
2002-04-15 10:27 ` Christian Parpart

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.