Hi, pls is they any way i can configure my network to use to INTERNET SERVICE? what mean is that if one time out it will switch to next one and coninute browsing so that my customers with not conplain about slow network…
Using BGP if you are an ISP would solve that.
If you are just a small office - search for Dual WAN solution in Mikrotik.
There are several load balancing options in Mikrotiks:
http://wiki.mikrotik.com/wiki/Manual:PCC
http://wiki.mikrotik.com/wiki/Manual:NTH_in_RouterOS_3.x
http://wiki.mikrotik.com/wiki/Manual:BGP_Load_Balancing_with_two_interfaces
PCC is the most recommended way of doing this as it has fail-over, and preserves open sessions the best.
Note that these are for load balancing and not bonding, you will not magically double the amount of bandwidth any one session can use. If you are looking for bonding, first see if you’re ISP supports it and if they would be willing to set it up for you on their end. Unless you control both ends of a connection, you cannot use bonding.
When you say ‘not complain about slow network’ it sounds like you need PCC or another Load Balancing solution, or Traffic Control or something …
When you say
‘what mean is that if one time out it will switch to next one and coninute browsing’
that kind of suggests that you need to look at having 2 default routes, with Distance=1 and Distance=2.
e.g.
/ip route add dest=0.0.0.0/0 gateway=1.2.3.4 distance=1
/ip route add dest=0.0.0.0/0 gateway=5.6.7.8 distance=2
So if 1.2.3.4 fails, your mikrotik will automatically switch to using 5.6.7.8
You should also look up the check-gateway option too.