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 22:50] – 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 8: | Line 11: | ||
* **PIE** | * **PIE** | ||
- | * pipe - virtual path that emulates a connection with a specified bandwidth, propagation delay, and packet loss pattern. | + | |
+ | * **scheduler** - arbitrate access of multiple flows to the same link (pipe) | ||
+ | * FIFO | ||
+ | * DRR | ||
+ | * PRIO | ||
+ | * WF2Q+ | ||
+ | * QFQ | ||
+ | * KPS | ||
+ | |||
* Simple pipe internally has attached | * Simple pipe internally has attached | ||
* queue (droptail) | * queue (droptail) | ||
Line 15: | 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. | ||
* 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 | ||
+ | </ |