Skip to content

Instantly share code, notes, and snippets.

@mriscoc
Created May 21, 2017 05:11
Show Gist options
  • Select an option

  • Save mriscoc/0cb7cddfa5afebd20bae7ee04aca945f to your computer and use it in GitHub Desktop.

Select an option

Save mriscoc/0cb7cddfa5afebd20bae7ee04aca945f to your computer and use it in GitHub Desktop.
:global previousIP;
# No-IP automatic Dynamic DNS update
#--------------- Change Values in this section to match your setup ------------------
# No-IP User account info
:local noipuser "your noip user"
:local noippass "your noip password"
# 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 "your noip host: myhost.no-ip.info"
# Change to the name of interface that gets the dynamic IP address
:local inetinterface "ether1"
#------------------------------------------------------------------------------------
# No more changes need
:if ([/interface get $inetinterface value-name=running]) do={
# Get the current IP on the interface
:local currentIP [/ip address get [find interface="$inetinterface" disabled=no] address]
# Strip the net mask off the IP address
:set currentIP [:pick $currentIP 0 [:find $currentIP "/"]]
:if ($currentIP != $previousIP) do={
:log info "No-IP: Current IP ($currentIP) from $inetinterface is not equal to previous IP ($previousIP), update needed"
:beep frequency=100 length=50ms
:global 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."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment