Hi folks,
I have a script that runs as part of a Netwatch test, that I use to failover between 2 MTK devices that are in VRRP configuration. This script has been working fine till 7.15 or so but now it fails with the error:
executing script from netwatch failed, please check it manually
Currently script permissions are set to “read,write,reboot,test” as per the docs. Script content is as follows:
# Raise priority of all VRRP Interfaces
# This failover script only works when two routers are each individually connected to a
# single internet connection. A different approach is needed when a single router
# is managing failover across two interfaces
/interface vrrp set priority=250 [/interface vrrp find vrid=20]
/interface vrrp set priority=250 [/interface vrrp find vrid=48]
/interface vrrp set priority=250 [/interface vrrp find vrid=50]
/interface vrrp set priority=250 [/interface vrrp find vrid=54]
/interface vrrp set priority=250 [/interface vrrp find vrid=67]
/interface vrrp set priority=250 [/interface vrrp find vrid=75]
/interface vrrp set priority=250 [/interface vrrp find vrid=83]
/interface vrrp set priority=250 [/interface vrrp find vrid=104]
/interface vrrp set priority=250 [/interface vrrp find vrid=122]
/ip dhcp-server enable [/ip dhcp-server find address-pool=mgmt-iprange]
Can anyone tell me why this script has stopped working and how do I get it working again?


