专卖精品 发表于 2006-4-29 15:47:11

关于限速的问题!(simple queues和queues tree之间的关系)

问题

1、simple queues和queues tree有先后关系吗?还是只能有一个生效?

2、queues tree的parent是继承的意思吗?他里面的global-in如何设置?我发现设置了global-in后,simple queues就失效了,把global-in改为LAN后simple queues就生效,但是,我不知道simple queues是否有效,因为我用queues tree做优先队列

希望高人给个详细的解释,谢谢

luzai 发表于 2006-6-12 21:22:19

kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk

pxgxb 发表于 2006-6-12 23:38:32

回复 #1 专卖精品 的帖子

simple queues是用于单个IP限制速度
queues tree 是用于PCQ限速度,PCQ限制速度是限制每个IP的速度
如果你没做连接和包标记,优先的是PCQ限速度,如果你需要同时做PCQ和单个IP限速,就要把单IP限制速度的包和PCQ包分开,PCQ包做Mark Packet,单IP包做标记后通过(action=accept )
看我这里的设置

/ ip firewall mangle
add chain=prerouting src-address=192.168.1.11 action=mark-connection \
    new-connection-mark=pass passthrough=yes comment="" disabled=no*不用PCQ限速的机器IP*
add chain=prerouting connection-mark=pass action=accept comment="" disabled=no *设置包为通过*
add chain=prerouting action=mark-connection new-connection-mark=all passthrough=yes \
    comment="" disabled=no    *标记PCQ限速连接*
add chain=prerouting connection-mark=all action=mark-packet new-packet-mark=other \
    passthrough=yes comment="" disabled=no  *标记PCQ限速包*

这样设置后才会同时起作用

[ 本帖最后由 pxgxb 于 2006-6-12 23:39 编辑 ]

专卖精品 发表于 2006-6-13 18:11:24

谢谢

luzai 发表于 2006-7-8 12:48:59

thank you!

chenluocai 发表于 2006-7-8 20:20:01

谢了..正需要呢~~~~~~~~~~~~~

hbqjliulu 发表于 2006-7-9 01:29:30

学习下!~
页: [1]
查看完整版本: 关于限速的问题!(simple queues和queues tree之间的关系)