How to fetch this url every 1 min.

Hi everybody, and thank you in advance for your feedback,

I’m new to MK and I would like to see if some one can give me some information on how to fetch a URL every 1 min. this url updates my SmartDNS service with my current IP, because I have been using cloud IP to update it but its not working consistently, its been 3 days now, my IP address has changed already and the Cloud service is stalled with the same IP address, if I force it to update it works again, but the same thing will happen later, and I have tried DynDNS scripts, but they are also unreliable, sometimes they don’t work, there are so many of them that I don’t know how to choose.

the SmartDNS service has a URL that if I type it in it will update my IP address immediately, so I would like to do this with my MK every 1 min.


can anybody help me with a script?

thanks!

Ivan

1.Using WinBox, create a script:

:log info "Updating DDNS";
/tool fetch url="https://yourddnsprovider.com/blablah";

name the script update-ddns

2.Using WinBox, create a schedule:

/system script run update-ddns

Hi,

My provider (all-inkl.com) offers a DDNS service for the registered domains.
I use the following script to update my entries.

/system scheduler
add comment="Update DDNS" interval=1m name="Update DDNS" on-event=\
    "tool fetch url=\"https://<USERNAME>:<PASSWORD>@dyndns.kasserver.com/index.php\" keep-result=no" policy=\
    read,test start-date=jan/01/2016 start-time=00:00:00

Best regards,
Lui