SOHO : Small Office Home Office
Freeware - Opensource software tips, tricks, tweaks & fixes for managing, securing, improving the performance of SOHO Desktop, Laptop, Networks

Sunday, September 13, 2009

Setting up dyndns (ddcleint) with clarkconnect

Here we go:

Log onto you box with putty

Code:

$ wget http://downloads.sourceforge.net/project/ddclient/ddclient/ddclient-3.8.0/ddclient-3.8.0.tar.gz?use_mirror=biznetnetworks
$ tar zxvf ddclient-3.8.0.tar.gz
$ cd ddclient*
$ cp ddclient /usr/sbin
$ mkdir /etc/ddclient


The config to ddclient is pretty easy, but the really silly easy way to do it is:
Log into DynDNS.com > Support > DNS Tools > Update Client Configurator>
Have it create the config text for ddclient. Copy this text onto clipboard. Then, in the Putty window, do:

Code:


$ nano /etc/ddclient/ddclient.conf


Paste the clipboard, (shift + insert) find the DynDNS account password replace the ##password##,
Save with crtl+o then
Exit with crtl+x.

Then type:

Code:


$ ddclient -daemon=0 -query
$ cp sample-etc_rc.d_init.d_ddclient /etc/rc.d/init.d/ddclient
$ /sbin/chkconfig --add ddclient




Now use winscp and create the folder: /var/cache/ddclient
and test with:

Code:


ddclient -daemon=0 -debug -verbose -noquiet

source: http://forums.clarkconnect.com/showflat.php?Cat=0&Number=109873&an=0&page=2
Continue Reading...