weikun444 发表于 2010-11-15 08:55:32

ROS的PPPOE全自动智能限速为什么不起作用?

我在网上找了个脚本,说功能是根据在线人数计算每个人的速宽,如下:
#客户数量
:local count1 0
#上传速率,这里是2条ADSL
:local UpRate (2*500000)
#下载速率
:local DownRate (2*3000000)
#平均上传速率
:local UpAverage 90000
#平均下载速率
:local DownAverage 1000000
#得到客户数量
:set count1 [:len ]
#得到平均上传速率
:set UpAverage ($UpRate/$count1)
#得到平均下载速率
:set DownAverage ($DownRate/$count1)
#最低上传下载速率
:if ($UpAverage < 90000) do={:set UpAverage 90000}
:if ($DownAverage < 1000000) do={:set DownAverage 1000000}
#得到限速值
:local LimitAt (($UpAverage*70/100/1000*1000) . "/" . ($DownAverage*70/100/1000*1000))
#得到最大限速
:local MaxLimit ($UpAverage . "/" . $DownAverage)
#突发极限
:local BurstLimit (($UpAverage*185/100/1000*1000) . "/" . ($DownAverage*185/100/1000*1000))
#突发的平均值
:local BurstThr (($UpAverage*60/100/1000*1000) . "/" . ($DownAverage*60/100/1000*1000))
#突发时间
:local BurstTime "3s/3s"
/que sim
set queue=default/default limit-at=$LimitAt max-limit=$MaxLimit burst-limit=$BurstLimit burst-threshold=$BurstThr burst-time=$BurstTime


我的ROS为3.30,复制进去执行,为什么不起作用!哪位大大给说一下。

WGHBOY 发表于 2010-11-17 01:29:03

这些都是定制的脚本,你肯定不会用

weikun444 发表于 2010-11-17 11:54:45

更改成功,在ROS3.30下运行正常!根据在线人数限制带宽!
#客户数量
:global count1
#上传速率,20M
:global UpRate 10000000
#下载速率,50M
:global DownRate 10000000
#平均上传速率
:global UpAverage 100000
#平均下载速率
:global DownAverage 250000
#得到客户数量
:set count1 [:len ]
#得到平均上传速率
:set UpAverage ($UpRate / $count1)
#得到平均下载速率
:set DownAverage ($DownRate / $count1)
#最低上传下载速率
:if ($UpAverage < 100000) do={:set UpAverage 100000}
:if ($DownAverage < 250000) do={:set DownAverage 250000}
#得到限速值
:global LimitAt ($UpAverage . "/" . $DownAverage)
#得到最大限速
:global MaxLimit (($UpAverage) . "/" . ($DownAverage))
/que sim
set limit-at=$LimitAt max-limit=$MaxLimit

macxie 发表于 2010-11-18 21:26:25

好用吗?
页: [1]
查看完整版本: ROS的PPPOE全自动智能限速为什么不起作用?