My own domain and dynamic ip w/o dydns

1

1

I just got this idea in my mind...

I can have say myhome1.dydns.com for free. However I have my own domain right now, say mydomain.com. My domain pointing to a linux server w/ cpanel managed by my self.

I really know about domains, IPs, nameserver, A record etc... but I dont have any idea to update my dynamic IP.

How can I use dynamic DNS service like dydns but using my own domain like myhome1.mydomain.com for free or any workaround like design small app tu update etc...?

Note that when I try to add domain in dydns, I need to buy either a domain, DNS service or email routing.

CallMeLaNN

Posted 2011-03-04T17:43:01.073

Reputation: 133

Answers

3

You would need to create a CNAME like: www.mydomain.com which points to myhome1.dydns.com.

This will give the intended results:

  1. Request for www.mydomain.com -- server responds to re-lookup myhome1.dydns.com
  2. Request for myhome1.dydns.com -- goes to dyndns, which returns your home IP

Nate

Posted 2011-03-04T17:43:01.073

Reputation: 729

Agreed - I do this all the time. I'll typically setup CLIENTNAME.homeip.net - and create a custom CNAME subdomain for each client, so I can easily reference their hostname for VPN. client.mydomain.com – Charlls – 2011-03-04T21:45:18.800

Why I can't think of the CNAME before. Its Working. Great! – CallMeLaNN – 2011-03-07T03:48:19.627