提高游戏速度的小策略
为了解决玩游戏卡的问题 ,在坛里看了好多在这方面的文章,感觉大侠们的见的与做法功能强劲但是内容过于庞大,对于我们初学者来说有理解起来有点费劲. 我根据自己的理解做了针对小包的优化. 现在把贴图放出来,希望大家一起来探讨也欢迎大家批评指正.首先在ip-firewall-Mangle下把小包做标志如图1-3
记得选择类型是forwald 如图4
在action里面写上你标志的名称 如图5
分别对这上面的三个标志做优先级 如图6-8
好了,一个简单的优先级策略就好了.现在总结一下思路
1 把各种大小的包做标志
2 把做好的标志包做处理的优先级
[ 本帖最后由 zugboy 于 2006-7-28 22:35 编辑 ] RouterOS终极提速,彻底解决ROS小包(网络游戏数据包)转发性能差的问题
以下只给有ROS基础的人看,2.9.7以上版本支持,2.9.26上调试通过
ROS终端界面直接输入即可
HTB QOS 流量质量控制
/ ip firewall mangle
add chain=forward p2p=all-p2p action=mark-connection new-connection-mark=p2p_conn passthrough=yes comment="" disabled=no
add chain=forward connection-mark=p2p_conn action=mark-packet new-packet-mark=p2p passthrough=yes comment="" disabled=no
add chain=forward connection-mark=!p2p_conn action=mark-packet new-packet-mark=general passthrough=yes comment="" disabled=no
add chain=forward packet-size=32-512 action=mark-packet new-packet-mark=small passthrough=yes comment="" disabled=no
add chain=forward packet-size=512-1200 action=mark-packet new-packet-mark=big passthrough=yes comment="" disabled=no
/ queue tree
add name="p2p1" parent=TEL packet-mark=p2p limit-at=2000000 queue=default priority=8 max-limit=6000000 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="p2p2" parent=LAN packet-mark=p2p limit-at=2000000 queue=default priority=8 max-limit=6000000 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="ClassA" parent=LAN packet-mark="" limit-at=0 queue=default priority=8 max-limit=100000000 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="ClassB" parent=ClassA packet-mark="" limit-at=0 queue=default priority=8 max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="Leaf1" parent=ClassA packet-mark=general limit-at=0 queue=default priority=7 max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="Leaf2" parent=ClassB packet-mark=small limit-at=0 queue=default priority=5 max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
add name="Leaf3" parent=ClassB packet-mark=big limit-at=0 queue=default priority=6 max-limit=0 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no
1-8级优先级控制,数字越小优先级越高
LAN内网接口
TEL 外网接口
SMALL 小包 32-512字节5级优先级
BIG 大包512-1200字节 6级优先级
general 其它包 1200-1500字节7级优先级
P2P类 8级优先,全局限速 600KB/S下载
Leaf 子类 应该是如此 非常好!! 能行吗???? 小包 用32-512字节好呢?还是0-799好呢?
大包用512-1200字节好呢?还是800-1200好呢?
其它包 用1200-1500字节 0-32没有做处理默认是8? 效果如何呢?测试过吗? 原帖由 vipe 于 2006-7-29 14:25 发表
0-32没有做处理默认是8?
32字节以下你能做什么? MAC地址都要占 14个字节去了,PING都是32字节的,以太网规定包最小大小为64字节,不足64字节的数据需要填充到64字节做成一个包 好贴 好东西! 好!!东西!我顶以下!!我正在测试!如果好我会给你回贴