|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
×
先说下,整体环境
3M ADSL 电信(每次拨号IP不一样,但网关是一样的,所以就没写动态获取网关,而是直接填写网关到ROUTER上了.)
5M WLAN 电信(使用CISCO1230B 11M无线AP做两台做的网桥)实际测试速度,能稳定在500K上下,所以就叫5M
路由用的是RB133,三口LAN的做路由设备,此板,实际能带20M左右,20M上下的时候CPU 就已经100%了,不过,我现在全部加起来,8M带款,所以用这个板够用了,主要是省电,实际功率5W左右
实际需要是,带20个用户. 网页,QQ,股票,等端口走ADSL,其他端口走WLAN,同时做了80端口,优先级为1, 81-65565全部端口优先级为8,对FLV格式做包限制,目前大致就这样.
其他关于ros设置就不说了,论坛很多了,我只是发一下我写的脚本 ,呵呵,,因为不是很懂ROS的相关操作规则,不过规则也很简单,,发来看下,这样的效率是否OK
脚本是每10秒种运行一次
:global adslstatus //ADSL线路状态
:global wlanstatus //无线网桥线路状态
:set adslstatus [/ping 192.168.100.200 count=2] //返回PING值给ADSL线路状态
:set wlanstatus [/ping 10.1.76.1 count=2] //返回PING值给无线网桥线路状态
:if (wlanstatus!=2) do={//判断无线网关是否为通,不通就给关闭,否则就打开,同时,当WLAN断线.就把ADSL分流端口取消,所有数据走ADSL
/ip route set [/ip route find comment=("WLAN")] disable=yes
/ip route unset [/ip route find comment=("ADSL")] routing-mark} else={ /ip route set [/ip route find comment=("WLAN")] disable=no }
:if (adslstatus!=2) do={//同理
/ip route set [/ip route find comment=("ADSL")] disable=yes} else={ /ip route set [/ip route find comment=("ADSL")] disable=no }
:if ((wlanstatus=2)&&(adslstatus=2)) do={//当两线都正常的时候,做端口分流
/ip route unset [/ip route find comment=("WLAN")] routing-mark
/ip route set [/ip route find comment=("ADSL")] routing-mark=ftpp
}
目前测试状态下没问题,,还没接到实际环境上去, |
|