I have about 30 mikrotiks all doing the same thing since 4:30 am, June 25 2012 CAT.
my Dyndns updater scripts refuse to update to zonomi, below is the script:
:log info "Start Manual DYNDNS Updater"
:local INTERFACE1 "MAIN";
/interface pppoe-client monitor $INTERFACE1 once do={
:local STATUS $"status";
:if ($STATUS = "connected") do={:log info "$INTERFACE1 connection is connected";
:local ID1 ([/ip address find where interface=$INTERFACE1]);
:local IP1 ([:pick ([/ip address get $ID1 address]) 0 [:find ([/ip address get $ID1 address]) "/"]])
/tool fetch url="http://zonomi.com/app/dns/dyndns.jsp?action=SET&name=example.com&value=$IP1&type=A&api_key=1111111111111111111111111111111111111111" mode=http port=80 dst-path="dyndns-update1.xml"
} else={:log info "$INTERFACE1 connection not connected and cannot update DYNDNS for this interface."
};
};
If i pop just the URL into a internet browser, it works fine, so i know it cant be zonomi, they were working 100% for about 5 months now and then all of a sudden all 30 of them stop working.
I have tried everything, but i am not even getting some good log info back to try troubleshoot it.
when i run it from terminal i get the following:
[admin@client] > system script run number=7
status: failed
Yea DNs is working, my apologies, it is resolved now, Zonomi activated redirection to Https which obviously is not supported by fetch, so its cool now, they disabled it.