在Linux fq_codel中有什么独立的流程?

前端之家收集整理的这篇文章主要介绍了在Linux fq_codel中有什么独立的流程?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在设置一个概念证明来遏制终端(客户端)的入口流量:
eth0 -> ifb0 -> htb -> filter by ip -> htb rate -> fq_codel+ecn

我有2个源ips为特定程序我想要节流.该程序打开一堆tcp连接(下载,因此进入节流),我想同时限制其使用的完整入口带宽(完成),并在连接到相同的IP地址(此问题)之间进行公平的调度.

最后有1个桶,附加费率和1个fq_codel实例.

我有它的工作,但我有一些问题:

>确保codel每个协议有单独的队列(tcp vs udp)?
codel每个源ip有不同的队列吗?
codel在tcp连接中有不同的队列吗?
>我必须手动分离/标记流?

每个互联网研究流程id是“5元组的哈希”,问题是,一个数据包的哪些元素是5元组的一部分?是否包括源端口和目的端口?

解决方法

看起来源端口和目标端口似乎都包含在内,至少默认情况下:

http://lxr.free-electrons.com/source/net/core/flow_dissector.c#L655

655 /**
656  * __skb_get_hash: calculate a flow hash
657  * @skb: sk_buff to calculate flow hash from
658  *
659  * This function calculates a flow hash based on src/dst addresses
660  * and src/dst port numbers.  Sets hash in skb to non-zero hash value
661  * on success,zero indicates no valid hash.  Also,sets l4_hash in skb
662  * if hash is a canonical 4-tuple hash over transport ports.
663  */
664 void __skb_get_hash(struct sk_buff *skb)
原文链接:https://www.f2er.com/linux/393720.html

猜你在找的Linux相关文章