I use Dyndns.org for dynamic domain services. There is easy setup and you can update your IP via a web browser, or schedule an application to run on a regular basis. Updating your IP address is important because you will lose your domain if you don’t update your record every 30-35 days. Here is a basic guide.
In Debian/Ubuntu you can install the updater via apt:
sudo apt-get install ipcheck |
Create bin directory, dyndns directory and updater script:
mkdir ~/bin |
#!/bin/sh |
Edit your crontab:
crontab -e |
Add the following line to your crontab to run the script daily.
* 6 * * * /home/username/bin/dyndns-update.sh |