 鲜花( 0)  鸡蛋( 0)
|
网吧用ROS的个人看法
; g6 J) Q6 W. f# a5 e/ S3 n$ \ ! a' ?3 ?4 h" Z) i" e3 o8 P
一直以来,都看论坛上的达人说ROS做软路由器效果是多么的强大,于是偶也搞一个试试看。找了一个2.9.27的完全 *** 版,用了2块D-LINK530的网卡,装完一用还真行。比我那1000的锐捷强多了,网吧120台机器,座满的时候那个锐捷的路由器登陆界面都打不开。用上以后问题就来了,我们30M的光纤,如果不限速,那些下载狂人把带宽全部给占用了,打游戏的顾客很有意见。于是我就做了个限速,每个机器下载最大2M.平均1M。但是群众还是不满意,都所卡。我又找资料,pps影音标准版2010下载,发现原来还有个叫智能动态限速的东西,好偶照做。做好以后,平时喊卡的人没有了,人多的时候一样都喊卡。8 r. x5 p4 S. X" R7 g
偶傻眼了,难道只能不限速。还好天无绝人之路,还有个“小包优先”的高级货,于是照做。结果用简单队列限速后,“小包优先”也是白搭,难道天要忘我。终于经过N次测试以后,魔兽改键精灵4.5下载,我明白了。网吧用简单队列做限速完全是扯蛋。网吧限速最好的办法应该是带宽均分,然后在用简单队列来限制上传。在利用小包优先来处理游戏卡的问题。经过2个网吧,一个月的测试,完全摆脱了到处喊卡的噩梦,现在把经验发来大家分享一下。
" R0 k: h) t8 C4 t$ `2 X4 iROS不要用简单队列来限速,什么智能动态限速也不要用。只需要用小包优先+带宽均分+简单队列限制上传速度,360安全卫士7.0下载。
, F8 m# m. }; T小包优先的脚本如下:% H; z8 q9 {1 P# o- |
ip firewall mangle 0 [1 w0 k4 |3 S3 b. d3 L
add chain=forward p2p=all-p2p action=mark-connection new-connection-mark=p2p_conn passthrough=yes comment="" disabled=no
; H5 {& O" L- O2 b; Q# `add chain=forward connection-mark=p2p_conn action=mark-packet new-packet-mark=p2p passthrough=yes comment="" disabled=no # f" v6 V7 O% y
add chain=forward connection-mark=!p2p_conn action=mark-packet new-packet-mark=general passthrough=yes comment="" disabled=no
; J4 |& Y5 o: H9 H( Eadd chain=forward packet-size=32-512 action=mark-packet new-packet-mark=small passthrough=yes comment="" disabled=no . i& K. J2 F: N) E1 r
add chain=forward packet-size=512-1200 action=mark-packet new-packet-mark=big passthrough=yes comment="" disabled=no/ C; W& I6 _: v2 E* ~
% {3 `: J! @: z* g2 p3 M2 B3 c5 g3 r/ queue tree
/ U( N* V3 h# a: Y; D, {& E; eadd 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 ( {4 ]! X7 G% X7 g4 p. l. W) H
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
3 @& A9 O& B: Y( e) Madd 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 4 {+ V. c* s$ F% x L/ J
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 / Z7 N( }; H" C% D8 G9 Y8 q
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 * ^$ \+ ^: }, r! i
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
5 \- M+ w6 H1 r8 V# f: [% W' m- t! \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' C, M- g+ o4 e6 E1 J, D# O L& x
然后是带宽均分:7 q# t$ k$ R) ^+ c8 e8 S
/ip firewall mangle add chain=forward src-address=192.168.0.0/24 \1 s) Z' G% d, U( v% N1 d" x" C
action=mark-connection new-connection-mark=users-con$ R4 H% D8 A. n
/ip firewall mangle add connection-mark=users-con action=mark-packet \, w. u# p4 c: D7 R) I( l
new-packet-mark=users chain=forward
- J h, W/ \ R' Q- z) }- p/queue type add name=pcq-download kind=pcq pcq-classifier=dst-address* U+ w+ i$ r/ ?3 z2 ^; u
/queue type add name=pcq-upload kind=pcq pcq-classifier=src-address) e$ }) D, X) a4 ~) K( P" r' |) N1 \
/queue tree add name=Download parent=lan max-limit=30M
! J- V' R- V' M4 q/queue tree add parent=Download queue=pcq-download packet-mark=users. W$ U% c" ^ }8 P1 s5 ]0 l% ~
/queue tree add name=Upload parent=wan max-limit=28M6 l8 j5 i i/ s- [* P) D. S2 ^& u" [
/queue tree add parent=Upload queue=pcq-upload packet-mark=users
) _9 _& X2 S* q: ^# P% l# O请根据直接实际修改IP地址段,下载最大速度,上传最大速度,lan为我连接内网的网卡,wan是我连接外网的网卡
* [- }3 m" R3 U限制上传速度的脚本:
6 M/ i& ~8 y0 {! r: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 Q8 x9 ?6 ]+ L5 g/ |: }如果是3.2版本的,这个脚本自己要修改下,. q; U: f7 L5 p* X, W
就用这3个部分,别的不需要的,绝对比什么智能动态限速好的多。 |
|