August 8, 201312 yr http://sourceforge.net/projects/ddclient/files/ddclient/ddclient-3.8.1/ That would have been awsome!! /Gotlanning
August 8, 201312 yr This is a Perl client, so it will require Perl and possibly other Perl modules to be available first.
September 3, 201312 yr No need for a client, a simple bash script will do the job : #!/bin/bash # modified by TasRaison from Jeremy Brent Hansen - Copyright (C) 2006 Jeremy Brent Hansen # (google it) # Put below your OpenDNS username, password and networkName. # username=MyOpenDNSUsername passwd=MyOpenDNSPwd hostname=MyOpenDNShostname # This is where the log file will be stored. Currently it only logs the current IP # and the response back from OpenDNS. The log will keep one backup. I # just used a folder in my home directory (make sure the folder exists). log_dir=/WhereIWantMyLogs/logs # Revolves the log file. Keeps one backup. mv $log_dir/log $log_dir/log.1 while [ 1 ] do date >> $log_dir/log /usr/bin/curl -i -m 60 -k -u $username:$passwd 'https://updates.opendns.com/nic/update?hostname='$hostname -silent >> $log_dir/log echo -e "\n" >> $log_dir/log # Resends the info after 5 minutes. # so it only updates when your IP changes. sleep 600 done
Archived
This topic is now archived and is closed to further replies.