gpt4 book ai didi

linux - cgroups 和 tc/netem : Not sure how to make them work together

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:33:10 28 4
gpt4 key购买 nike

我在围绕 cgroupstc 时遇到问题。

我正在尝试为特定进程增加延迟。下面的代码不起作用。但我不知道哪里出了问题(甚至不知道什么是对的)。

# Set up net_cls to make 
modprobe cls_cgroup
mount -t cgroup -o net_cls none /sys/fs/cgroup/net_cls

# Create a new CGroup called 'high-latency'
mkdir /sys/fs/cgroup/high-latency
# All packets originating from this CG have their packers
# marked as class 1:11 / 0x1_0011
echo 0x100011 > /sys/fs/cgroup/high-latency/net_cls.classid

# Delete old rules, just in case
tc qdisc del dev eth0 root

# New root
tc qdisc add dev eth0 handle 1: root htb
# Class for filtered packets 1:11 == 0x10011
tc class add dev eth0 parent 1:1 classid 1:11 htb rate 100Mbps
# Apply delay to class 1:11
tc qdisc add dev eth0 parent 1:11 handle 10: netem delay 1000ms

# Don't understand this line at all! Why does tc need to know
# about 'cgroup', when net_cls is already putting them in class 1:11
tc filter add dev eth0 parent 1:11 protocol ip prio 10 handle 1: cgroup

# Add my process to the cgroup
echo 1234 > /sys/fs/cgroup/high-latency/tasks

另一个有趣的事情是,在运行这个之后,cat /sys/fs/cgroup/high-latency/tasks打印一大堆进程(全部?),包括 pid 1。

知道我做错了什么,更重要的是 - 在尝试使用 tc 和 cgroups 时我可以使用哪些调试工具?

最佳答案

不能一起工作。您可以通过 cgroup 对数据包进行分类,然后需要通过 netfilter 将流量重定向到 netem 接口(interface)。

关于linux - cgroups 和 tc/netem : Not sure how to make them work together,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23732292/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com