* [Cerowrt-users] Per flow ingress limit ?
@ 2016-01-19 9:32 Etienne Champetier
2016-01-19 17:22 ` Etienne Champetier
0 siblings, 1 reply; 2+ messages in thread
From: Etienne Champetier @ 2016-01-19 9:32 UTC (permalink / raw)
To: bloat, cerowrt-users
[-- Attachment #1: Type: text/plain, Size: 1501 bytes --]
Hi all,
(this is a bit off topic but i'm sure AQM experts here can help me)
I'm playing with jitsi meet lately, which use up to 1800 kbits/s upload
bandwidth (and auto adapt to the available bandwith).
I'm trying to limit the bandwidth of each client to a smaller value (1200
kbits), i can't do it in the client (firefox doesn't have the api right
now), so i'm trying with TC to do per flow ingress limit.
Here is my test:
modprobe ifb numifbs=1
> ip link set dev ifb0 up
> #ip link set ifb0 txqueuelen 1000
> tc qdisc add dev ifb0 root handle 1 hfsc default 1
> tc class add dev ifb0 parent 1: classid 1:1 hfsc sc rate 100mbit ul rate
> 100mbit
>
> for num in {10..1034}
> do
> tc class add dev ifb0 parent 1: classid 1:$num hfsc sc rate 1200kbit ul
> rate 1200kbit
> tc qdisc add dev ifb0 parent 1:$num handle $num: codel
> done
> tc filter add dev ifb0 parent 1: handle 5 prio 1 flow map key proto-src
> divisor 1024 baseclass 1:10
>
> tc qdisc add dev eno16780032 handle ffff: ingress
> tc filter add dev eno16780032 parent ffff: protocol ip u32 match ip dport
> 10000 0xffff action mirred egress redirect dev ifb0
>
I know it's not working properly because a lot of traffic end up in HFSC
default (1:1), but from what i understand all traffic should be caught by
the flow map filter and end up in 1:10 to 1:1034 class
I've tried with/without txqueuelen, with/without codel qdisc, with HTB
instead of HFSC, but no luck so far.
I'm on centos 7 (kernel 3.10 +)
Thanks in advance
Etienne
[-- Attachment #2: Type: text/html, Size: 1878 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [Cerowrt-users] Per flow ingress limit ?
2016-01-19 9:32 [Cerowrt-users] Per flow ingress limit ? Etienne Champetier
@ 2016-01-19 17:22 ` Etienne Champetier
0 siblings, 0 replies; 2+ messages in thread
From: Etienne Champetier @ 2016-01-19 17:22 UTC (permalink / raw)
To: bloat, cerowrt-users
[-- Attachment #1: Type: text/plain, Size: 2650 bytes --]
Hi,
found my mistake :)
classid are hex number !!!
here an exemple that work
($num -> $(printf "%x" $num))
(baseclass 1:10 -> baseclass 1:a)
modprobe ifb numifbs=1
> ip link set dev ifb0 up
> tc qdisc add dev ifb0 root handle 1 hfsc default 1
> tc class add dev ifb0 parent 1: classid 1:1 hfsc sc rate 100mbit ul rate
> 100mbit
>
> for num in {10..1034}
> do
> tc class add dev ifb0 parent 1: classid 1:$(printf "%x" $num) hfsc sc
> rate 1200kbit ul rate 1200kbit
> tc qdisc add dev ifb0 parent 1:$(printf "%x" $num) handle $(printf "%x"
> $num): codel
> done
>
> tc filter add dev ifb0 parent 1: handle 5 prio 1 flow map key proto-src
> divisor 1024 baseclass 1:a
>
> tc qdisc add dev eno16780032 handle ffff: ingress
> tc filter add dev eno16780032 parent ffff: protocol ip u32 match ip dport
> 443 0xffff action mirred egress redirect dev ifb0
> tc filter add dev eno16780032 parent ffff: protocol ip u32 match ip dport
> 10000 0xffff action mirred egress redirect dev ifb0
>
Regards
Etienne
2016-01-19 10:32 GMT+01:00 Etienne Champetier <champetier.etienne@gmail.com>
:
> Hi all,
>
> (this is a bit off topic but i'm sure AQM experts here can help me)
>
> I'm playing with jitsi meet lately, which use up to 1800 kbits/s upload
> bandwidth (and auto adapt to the available bandwith).
> I'm trying to limit the bandwidth of each client to a smaller value (1200
> kbits), i can't do it in the client (firefox doesn't have the api right
> now), so i'm trying with TC to do per flow ingress limit.
>
> Here is my test:
>
> modprobe ifb numifbs=1
>> ip link set dev ifb0 up
>> #ip link set ifb0 txqueuelen 1000
>> tc qdisc add dev ifb0 root handle 1 hfsc default 1
>> tc class add dev ifb0 parent 1: classid 1:1 hfsc sc rate 100mbit ul
>> rate 100mbit
>>
>> for num in {10..1034}
>> do
>> tc class add dev ifb0 parent 1: classid 1:$num hfsc sc rate 1200kbit
>> ul rate 1200kbit
>> tc qdisc add dev ifb0 parent 1:$num handle $num: codel
>> done
>> tc filter add dev ifb0 parent 1: handle 5 prio 1 flow map key proto-src
>> divisor 1024 baseclass 1:10
>>
>> tc qdisc add dev eno16780032 handle ffff: ingress
>> tc filter add dev eno16780032 parent ffff: protocol ip u32 match ip dport
>> 10000 0xffff action mirred egress redirect dev ifb0
>>
>
> I know it's not working properly because a lot of traffic end up in HFSC
> default (1:1), but from what i understand all traffic should be caught by
> the flow map filter and end up in 1:10 to 1:1034 class
> I've tried with/without txqueuelen, with/without codel qdisc, with HTB
> instead of HFSC, but no luck so far.
> I'm on centos 7 (kernel 3.10 +)
>
> Thanks in advance
> Etienne
>
[-- Attachment #2: Type: text/html, Size: 3736 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-01-19 17:22 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-01-19 9:32 [Cerowrt-users] Per flow ingress limit ? Etienne Champetier
2016-01-19 17:22 ` Etienne Champetier
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox