DynDNS

Access your network from anywhere. Easy & Fast. Always.

What is Dynamic DNS?

Your IP changes. We automatically update your domain.

DynDNS applications allow you to keep a hostname updated to a dynamic IP address. You can use our free Dynamic DNS service with any of the domains managed with cosasdns.com from your customer area.

This way, you can have a small web or mail server without having to hire external services.

This will allow you to transform an IP address into a domain name and keep it constantly updated, so you only have to remember one domain.

Benefits

  • 🌍 Constant remote access
  • 🔒 Secure and encrypted connection
  • ⚡ Real-time IP updates
  • 📱 Compatible with Windows, Linux and macOS
  • 💬 Support in English and Spanish
  • 🆓 Free with any domain managed with cosasdns.com

How does it work?

  1. Create an account atcosasdns.com
  2. Add your domain from your private area
  3. Configure your DNS records and change the DNS servers at your provider
  4. Activate your domain as DynDNS and request your API
  5. Install the client
  6. Done! Always accessible

Available clients

Windows

Available system versions:
Windows (installer) x64: Download
Windows (installer) x86: Download
Windows (zip) x64: Download
Windows (zip) x86: Download

GNU/Linux

Access SSH console on your OS...

We create script (.sh) to check the IP if it has changed and update record A in the domain.

touch ~/syncDynIP.sh && chmod +x ~/syncDynIP.sh && nano ~/syncDynIP.sh

We include the following code in the file:

** Note: replace the text «SECRETKEY» with your API.

#!/bin/sh
# Script: ~/syncDynIP.sh
curl 'https://dyndns.cosasdns.com/sync/SECRETKEY'

crontab -e

*\5 * * * * ~/syncDynIP.sh

OS X

Access SSH console on your OS...

We create script (.sh) to check the IP if it has changed and update record A in the domain.

touch ~/syncDynIP.sh && chmod +x ~/syncDynIP.sh && nano ~/syncDynIP.sh

We include the following code in the file:

** Note: replace the text «SECRETKEY» with your API.

#!/bin/sh
# Script: ~/syncDynIP.sh
curl 'https://dyndns.cosasdns.com/sync/SECRETKEY'

crontab -e

*\5 * * * * ~/syncDynIP.sh