meta data for this page
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
sw:opnsense:traffic_shaper [2019/04/01 23:09] – niziak | sw:opnsense:traffic_shaper [2020/05/13 09:33] (current) – niziak | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Traffic Shaper ====== | ||
+ | |||
[[https:// | [[https:// | ||
+ | [[http:// | ||
Some terms: | Some terms: | ||
Line 24: | Line 27: | ||
{{: | {{: | ||
- | | + | ===== FQ-CoDel ===== |
+ | The **FlowQueue-CoDel** (**FQ-CoDel**) algorithm is a combined packet scheduler and Active Queue Management (AQM) algorithm. | ||
+ | |||
+ | | ||
* queue is a dummy queue without any management policy (no droptail). It is not used to buffer incoming packets | * queue is a dummy queue without any management policy (no droptail). It is not used to buffer incoming packets | ||
- | * CoDel scheduler manages internal queues to buffer packets | + | * fq-CoDel scheduler manages internal queues to buffer packets |
{{: | {{: | ||
REMARKS: | REMARKS: | ||
- | * **CoDel** on queues is ignored when **fq-codel** is enabled on pipe. | + | * **fq-CoDel** on queues is ignored when **fq-codel** is enabled on pipe. |
* queue is needed (even if not really used). There is no other way to send packets to **fq-codel** scheduler. So creating a pipe with **fq-codel** will always create a queue. | * queue is needed (even if not really used). There is no other way to send packets to **fq-codel** scheduler. So creating a pipe with **fq-codel** will always create a queue. | ||
* number of internal queues in **fq-codel** is condifured by **flows** parameter | * number of internal queues in **fq-codel** is condifured by **flows** parameter | ||
+ | |||
+ | |||
+ | |||
+ | ===== shell ===== | ||
+ | |||
+ | <code bash> | ||
+ | ipfw pipe show | ||
+ | ipfw sched show | ||
+ | ipfw queue show | ||
+ | </ |