I have a problem with writing a script command "featch"

I have a problem with writing a script command “featch”.
After some performances of command “featch”
Mikrotik console returns the result failure: maximum connection count reached

hope you mean fetch.

please provide som more info about the script. maybe the source=? what do the script do, and what is your goal ?

/tool fetch mode=http address=home.net src-path=("/netwatch/net_status.php?IP=192.168.1.2&router=1&status=1&time=".[/system clock get date]."%20".[/system clock get time]) dst-path="/netwatch" port=80 host=home.net

How to reset connection counter?

i type into ‘terminal

/tool fetch address=checkip.dyndns.com src-path=/ mode=http dst-path=("PublicIP");

result

failure: maximum connection count reached

noip script in mikrotik wiki doesnt work forme, so i switch to ‘fetch’
ive some modified script

# No-IP automatic Dynamic DNS update
# no-ip_ddns_update

#--------------- Change Values in this section to match your setup ------------------

# No-IP User account info
:local noipuser "noipuser"
:local noippass "noippass"

# Set the hostname or label of network to be updated.
# Hostnames with spaces are unsupported. Replace the value in the quotations below with your host names.
# To specify multiple hosts, separate them with commas.
:local noiphost "noiphost"

# Change to the name of interface that gets the dynamic IP address
:local inetinterface "inetinterface"

#------------------------------------------------------------------------------------
# No more changes need
:log info "inetinterface ($inetinterface)"


:global previousIP

:if ([/interface get $inetinterface value-name=running]) do={
# Get the current IP on the interface
   :log info "     ===== starting to feel real HOT ====="
   ## :local currentIP [/ip address get [find interface="$inetinterface" disabled=no] address]

   /tool fetch address=checkip.dyndns.com src-path=/ mode=http dst-path=("PublicIP");
    :delay 5;
    :log info "1 PublicIP: ($PublicIP)"
    :log info "delay: ($delay)"
    :local DDNSIP [/file get PublicIP contents];
    :local DDNSIP [:pick $DDNSIP 0 [:find $DDNSIP "</body>"]];
    :local DDNSIP [:pick $DDNSIP ([:find $DDNSIP ":"]+2) 100];
    /file remove PublicIP;
    :local currentIP [$DDNSIP]

   :log info "currentIP: Current IP ($currentIP)"
   :log info "                 asd 2 "

# Strip the net mask off the IP address
   :for i from=( [:len $currentIP] - 1) to=0 do={
       :if ( [:pick $currentIP $i] = "/") do={ 
           :set currentIP [:pick $currentIP 0 $i]
       } 
   }

   :if ($currentIP != $previousIP) do={
       :log info "No-IP: Current IP $currentIP is not equal to previous IP, update needed"
       :set previousIP $currentIP

# The update URL. Note the "\3F" is hex for question mark (?). Required since ? is a special character in commands.
       :local url "http://dynupdate.no-ip.com/nic/update\3Fmyip=$currentIP"
       :local noiphostarray
       :set noiphostarray [:toarray $noiphost]
       :foreach host in=$noiphostarray do={
           :log info "No-IP: Sending update for $host"
           /tool fetch url=($url . "&hostname=$host") user=$noipuser password=$noippass mode=http dst-path=("no-ip_ddns_update-" . $host . ".txt")
           :log info "No-IP: Host $host updated on No-IP with IP $currentIP"
       }
   }  else={
       :log info "No-IP: Previous IP $previousIP is equal to current IP, no update needed"
   }
} else={
   :log info "No-IP: $inetinterface is not currently running, so therefore will not update."
}

MY GOAL is GET text in checkIP into variable.

ive tried to delete script and write to terminal again … the result still the same

Works for me. Maybe you have some connectivity issue or your IP is blacklisted by this service for some reason.

Yes it was worked 1 month ago, i cant login into my router since 1 month ago (i think … its only work in 2 days), now im here, near my router.

no, its not banned / blacklisted, i can visit their website, including “forum.mikrotik.com”, “google.com

See the preview

MikroTik RouterOS 6.33.1 (c) 1999-2015 in RB450G

#im editing script " 
:log info "     ===== starting to feel real HOT =====" #
#edited to 
:log info "     ===== mulai HOT ====="

I was talking about dyndns.com!

i can visit dyndns.com via firefox,ie,ping from my computer
i can visit dyndns.com via my router terminal>
ping dyndns.com

or

ping checkip.dyndns.com


in screenshot sir