Dynamic DNS Update Script for EveryDNS: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
No edit summary
m (Reverted edits by Lcdtvs22 (Talk) to last revision by Marisb)
 
(3 intermediate revisions by the same user not shown)
Line 38: Line 38:
# use url directly and mode http (MRz)
# use url directly and mode http (MRz)
     :local str "/index.php?ver=0.1&ip=$edip&domain=$eddomain"
     :local str "/index.php?ver=0.1&ip=$edip&domain=$eddomain"
     /tool fetch url="http://dyn.everydns.net/$str" mode=http user=$eduser password=$edpass dst-path=("/EveryDNS.".$eddomain)
     /tool fetch url="http://dyn.everydns.net/$str" mode=http user=$eduser password=$edpass \
      dst-path=("/EveryDNS.".$eddomain)
     :delay 1  
     :delay 1  


Line 59: Line 60:
All what is left now is to make scheduler to run this or those scripts every minute.
All what is left now is to make scheduler to run this or those scripts every minute.
<pre>
<pre>
/system scheduler add name=EveryDNS1 interval=00:01 on-event="/system script run everyDns1\r\n/system script run everyDns2"
/system scheduler add name=EveryDNS1 interval=00:01 \
  on-event="/system script run everyDns1\r\n/system script run everyDns2"
</pre>
</pre>


Line 73: Line 75:
If DNS record is not being updated, you can look at log entries, which will contain error messages received from the server, for example:
If DNS record is not being updated, you can look at log entries, which will contain error messages received from the server, for example:
<pre>
<pre>
Authentication given Time check failed: wait longer between updates Additional info: 1240831067 - 1240831062 = 5 Exit code: 5  
Authentication given Time check failed: wait longer between updates  
Additional info: 1240831067 - 1240831062 = 5 Exit code: 5  
</pre>
</pre>
<br>
== Getting it to work with 3.22 ==
If the ''/tool fetch url'' gives you problems, try to rewrite this line :
<pre>
/tool fetch url="http://dyn.everydns.net/$str" mode=http user=$eduser password=$edpass \
  dst-path=("/EveryDNS.".$eddomain)
</pre>
to
<pre>
/tool fetch address="dyn.everydns.net" host="dyn.everydns.net" mode=http src-path="$str" \
  user=$eduser password=$edpass dst-path=("/EveryDNS.".$eddomain)
</pre>


[[Category:Scripting]]
[[Category:Scripting]]

Latest revision as of 12:45, 26 January 2011

This script allow you to easily maintain dynamic updates at EveryDNS free DNS server.
First you have to setup an account at http://www.everydns.com/, and with few steps create dynamic domain. After that you have to setup EasyDNS servers NS DNS parameters at domain seller site.

Next script is build with target to update DNS with two or more PPPoE connection with dynamics IP addresses.

# Define user variables
# Please NOTE that your username and password will be sent cleartext across the internet!
:local eduser "USERNAME"
:local edpass "PASS"
:local eddomain "mydomain.com" 
:local edinterface "INTERFACE_NAME"

# Change this global variable if you want more than 1 script
:global edlastip1
:local str
:local edip
:local ip

:if ([ :typeof $edlastip1 ] = nil ) do={ :global edlastip1 "0" }

:local edip [ /ip address get [/ip address find interface=$edinterface ] address ]

:if ([ :typeof $edip ] = nil ) do={
   :log info ("EveryDNS: No ip address on $edinterface .")
} else={

# strip off netmask correctly (MRz)
   :for i from=( [:len $edip] - 1) to=0 do={ 
      :if ( [:pick $edip $i] = "/") do={ 
	   :set edip [:pick $edip 0 $i];
      } 
   }

  :if ($edip != $edlastip1) do={

    :log info ("EveryDNS: $eddomain -> $edip")
# use url directly and mode http (MRz)
    :local str "/index.php?ver=0.1&ip=$edip&domain=$eddomain"
    /tool fetch url="http://dyn.everydns.net/$str" mode=http user=$eduser password=$edpass \
       dst-path=("/EveryDNS.".$eddomain)
    :delay 1 

# output any error messages received from file
    :local str [/file find name="EveryDNS.$eddomain"];
    :log info [/file get $str contents];
    /file remove $str
    :global edlastip1 $edip

  } 

}
# Coded by Paxy

You should setup this script, so using username and password as you registered at http://www.everydns.com/. Dynamic domain should be name of sub-domain that you want to be updated automaticly ex. r.paxy.in.rs . Interface name field should be exact name of interface that you want to monitor for IP change, in my case it is PPPoE type interfaces.

If you want to monitor more than one interface, create another script, fill username and pass, change sub-domain to another sub-domain name, and change interface that monitor IP address. Because of spoofing protection, you have to change variable "edlastip1" to any other name, like "edlastip2" in whole script.
Script is using server with DNS name dyn.everydns.net.

All what is left now is to make scheduler to run this or those scripts every minute.

/system scheduler add name=EveryDNS1 interval=00:01 \
  on-event="/system script run everyDns1\r\n/system script run everyDns2"


Happy hacking ...

Modified to work with version 3.23

  • use correct netmask stripping
  • use url in fetch tool
  • get any error messages received from server and write to system log.


If DNS record is not being updated, you can look at log entries, which will contain error messages received from the server, for example:

Authentication given Time check failed: wait longer between updates 
Additional info: 1240831067 - 1240831062 = 5 Exit code: 5 


Getting it to work with 3.22

If the /tool fetch url gives you problems, try to rewrite this line :

 /tool fetch url="http://dyn.everydns.net/$str" mode=http user=$eduser password=$edpass \
   dst-path=("/EveryDNS.".$eddomain)

to

/tool fetch address="dyn.everydns.net" host="dyn.everydns.net" mode=http src-path="$str" \
   user=$eduser password=$edpass dst-path=("/EveryDNS.".$eddomain)