Click here to Skip to main content
15,894,362 members
Articles / All Topics

#linux #raspberrypi Router with Dynamic DNS

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
24 May 2014MIT1 min read 6.3K   2  
Walkthrough of the configuration of the dynamic DNS for an easier access to your home network when you are not there

One more article about controlling your home network with the raspberry pi router. This article is the sequel of "Creating a wireless router...".

In this "episode", I will walkthrough the configuration of the dynamic DNS for an easier access to your home network when you are not there!

For this, you need to create an account in http://freedns.afraid.org/ and then create an a record on the Dynamic DNS section of the site. After this, click on "Wget Script". On the downloaded file, you will see something like this:

wget -q --read-timeout=0.0 --waitretry=5 --tries=400 
--background http://freedns.afraid.org/dynamic/update.php?UPDATETOKEN

The DNS update token is represented above as UPDATETOKEN.

Next step is:

sudo apt-get install inadyn

Edit the file "/etc/inadyn.conf" with the following content, replacing USER, PASSWORD, HOSTNAME, UPDATE_TOKEN.

--username USER
--password PASSWORD
--updateperiod 60000
--forcedupdateperiod 320000
--alias HOSTNAME, UPDATETOKEN
--background
--dyndns_system default@freedns.afraid.org
--syslog

Then, add the update instruction to root crontab:

sudo crontab -e
*/10 * * * * /usr/sbin/inadyn

The last step is to configure your root to Forward the network traffic into your rooter ip. You can check "/var/log/syslog" for errors on the update.

Next step for me is configure the openvpn to allow full network access to the others raspberries.

If you like this, share it and it will be like a bookmark for your future remembering.

Visit www.divhide.com for more information, contacts and news about Web Development.

See other blog posts at blog.divhide.com.

Divhide purpose is to follow the HTML5 movement and contribute with applications which prove the quality of technology.

Feel free to contact divhide.

This article was originally posted at http://feeds.feedburner.com/divhide

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
Web Developer
Portugal Portugal
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
-- There are no messages in this forum --