Hello,
i whant to set up a RB750GL with
2x WAN Port (Fixe IP Adress, no PPTP, PPPoE …)
1x LAN Port
The Clients (LAN) should use WAN2 as default,
if WAN2 failed, the should use WAN1 temp. until WAN2 is working.
Have anyone an idea ?
BR

Hello,
i whant to set up a RB750GL with
2x WAN Port (Fixe IP Adress, no PPTP, PPPoE …)
1x LAN Port
The Clients (LAN) should use WAN2 as default,
if WAN2 failed, the should use WAN1 temp. until WAN2 is working.
Have anyone an idea ?
BR

Are you looking for something like below ???
![]()
http://aacable.wordpress.com/2012/04/06/mikrotik-netwatch-script-fail-over-for-wan-llinks/
Just put the routes into the routing table. WAN 2 distance 1 (check gateway). WAN 1 distance 2.
Is that not working?
What have you done so far?
See: http://forum.mikrotik.com/t/netwatch-style-script/55074/1
This does exactly what you’re looking to do.
The regular net-watch stuff will too, but IIRC what you monitor is more limited and it isn’t as granular as my script.
[I’ve implemented this at several clients very successfully.]
Just read the thread and I think you’ll get the idea.
-Greg
Thank you for your help. i will trie it this evening !
Thank YOU !!!
:global u
/interface pppoe-client monitor M2 once do={
:set u $status
}
:if ($u != “connected”) do={
/interface pppoe-client enable M1
}