鲜花( 0) 鸡蛋( 0)
|
网吧用ROS的个人看法* t& z: \3 ^0 x: k" [. J R
! o5 }& D) s0 M/ ~" G- k
一直以来,都看论坛上的达人说ROS做软路由器效果是多么的强大,于是偶也搞一个试试看。找了一个2.9.27的完全 *** 版,用了2块D-LINK530的网卡,装完一用还真行。比我那1000的锐捷强多了,网吧120台机器,座满的时候那个锐捷的路由器登陆界面都打不开。用上以后问题就来了,我们30M的光纤,如果不限速,那些下载狂人把带宽全部给占用了,打游戏的顾客很有意见。于是我就做了个限速,每个机器下载最大2M.平均1M。但是群众还是不满意,都所卡。我又找资料,pps影音标准版2010下载,发现原来还有个叫智能动态限速的东西,好偶照做。做好以后,平时喊卡的人没有了,人多的时候一样都喊卡。2 A* u$ a* P, v
偶傻眼了,难道只能不限速。还好天无绝人之路,还有个“小包优先”的高级货,于是照做。结果用简单队列限速后,“小包优先”也是白搭,难道天要忘我。终于经过N次测试以后,魔兽改键精灵4.5下载,我明白了。网吧用简单队列做限速完全是扯蛋。网吧限速最好的办法应该是带宽均分,然后在用简单队列来限制上传。在利用小包优先来处理游戏卡的问题。经过2个网吧,一个月的测试,完全摆脱了到处喊卡的噩梦,现在把经验发来大家分享一下。3 j7 ]# I" E u2 O$ c
ROS不要用简单队列来限速,什么智能动态限速也不要用。只需要用小包优先+带宽均分+简单队列限制上传速度,360安全卫士7.0下载。
! Z: _! @7 _, i小包优先的脚本如下:+ t4 o6 `& x( P( J) y9 c$ N
ip firewall mangle + h S t$ O; f# i! X& F' C
add chain=forward p2p=all-p2p action=mark-connection new-connection-mark=p2p_conn passthrough=yes comment="" disabled=no & o9 Y6 R H' z: \$ z1 m
add chain=forward connection-mark=p2p_conn action=mark-packet new-packet-mark=p2p passthrough=yes comment="" disabled=no / e9 r* k; ~$ Z3 X
add chain=forward connection-mark=!p2p_conn action=mark-packet new-packet-mark=general passthrough=yes comment="" disabled=no
- g3 _: ^9 E& j9 F- ^add chain=forward packet-size=32-512 action=mark-packet new-packet-mark=small passthrough=yes comment="" disabled=no 0 r3 X8 k+ ^2 N8 J) M0 u p
add chain=forward packet-size=512-1200 action=mark-packet new-packet-mark=big passthrough=yes comment="" disabled=no$ P+ E1 M4 ]/ P) \, ?3 k
% l9 e3 \/ \. }: S/ queue tree ( u; d8 R8 u/ I0 o! S7 J3 V
add name="p2p1" parent=wan packet-mark=p2p limit-at=2000000 queue=default priority=8 max-limit=6000000 burst-limit=0 burst-threshold=0 burst-time=0s disabled=no & L: Y3 e0 l/ m1 m
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
6 a- {/ N. Q/ c+ }5 sadd 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
0 V, c( m0 J1 Jadd 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
/ o) c, z! q6 o5 k; p0 vadd 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
; ~- V+ g$ z6 Z# \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 : r2 T$ \- {- l4 R
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: b" f2 P8 g: T: t9 v
然后是带宽均分:! x4 A- S" k& ]6 ^
/ip firewall mangle add chain=forward src-address=192.168.0.0/24 \2 i( N* M8 D' a, X1 m& w
action=mark-connection new-connection-mark=users-con
3 [* W/ h( }# v1 \" a+ m/ip firewall mangle add connection-mark=users-con action=mark-packet \
3 q+ S$ |, T0 {2 c8 W8 ]2 Gnew-packet-mark=users chain=forward- N ~9 p% e. L- I' `- o2 v( X
/queue type add name=pcq-download kind=pcq pcq-classifier=dst-address
3 Q T6 {' h" N/queue type add name=pcq-upload kind=pcq pcq-classifier=src-address) f% j3 c5 |) z' n/ U
/queue tree add name=Download parent=lan max-limit=30M/ B- V. v6 p3 |( G9 t; H) i
/queue tree add parent=Download queue=pcq-download packet-mark=users6 W f j: `( f/ s8 @, p; W
/queue tree add name=Upload parent=wan max-limit=28M
2 c( v. [2 c8 ]: n1 @2 Z/queue tree add parent=Upload queue=pcq-upload packet-mark=users
' l4 L. y/ x3 ^ P请根据直接实际修改IP地址段,下载最大速度,上传最大速度,lan为我连接内网的网卡,wan是我连接外网的网卡2 Z. y: N/ w4 A) X4 L3 Z" q/ B
限制上传速度的脚本:$ K( c2 g1 i; K
:for aaa from 2 to 180 do={/queue simple add name=(PC . $aaa) dst-address=(192.168.0. . $aaa) limit-at=10000000/3000000 max-limit=30000000/3000000}5 Y3 Q0 y! M; J0 J
如果是3.2版本的,这个脚本自己要修改下,
g1 z2 {% x0 M& a就用这3个部分,别的不需要的,绝对比什么智能动态限速好的多。 |
|