I'm currently on the search for a service to facilitate DDNS. Duck DNS seems popular, but I'm skeptical of things that are simply offered for free. What assurance do we have that Duck DNS is secure, or that it will not just disappear one day? The alternative that seems better to me is Namecheap with their API.
I went the API way but with Gandi, works like a charm!
Duck DNS – free dynamic DNS hosted on AWS
71–80 of 103 posts
Re: Duck DNS – free dynamic DNS hosted on AWS
#72I'm currently on the search for a service to facilitate DDNS. Duck DNS seems popular, but I'm skeptical of things that are simply offered for free. What assurance do we have that Duck DNS is secure, or that it will not just disappear one day? The alternative that seems better to me is Namecheap with their API.
Why does it matter if it just disappears one day if you are not paying for it anyways?
Re: Duck DNS – free dynamic DNS hosted on AWS
#73Earlier quoted context omitted.
Why does it matter if it just disappears one day if you are not paying for it anyways?
I think I see your point, however, what I'm saying is I'd rather pay for something in exchange for some semblance of availability and security guarantees.
I would definitely not use something like this commercially.
Re: Duck DNS – free dynamic DNS hosted on AWS
#74That's great and all but since dyndns providers are hardcoded in my router this does not help.
If you have a machine running all the time anyways you can have it update the IP instead of the router. They have instructions for a bunch of different ways to do it on various OSs.
Re: Duck DNS – free dynamic DNS hosted on AWS
#75Re: Duck DNS – free dynamic DNS hosted on AWS
#76For anyone hosting their domain on Google Domains, there's a neat API endpoint they're offering for updating the DNS with a simple CURL. I've been using this for years now for a public Raspberry PI behind a home router that changes IPs every other day. curl -s -k --user "username:password" "https://domains.google.com/nic/update?hostname=yourdomain.com" There's more parameters (and you can specify an IP, the above req…
Quick question, is there a reason the -k (--insecure) flag is included? I imagine that https://domains.google.com would use a cert trusted by curl so it seems unnecessary and adds a risk that your traffic could be MitM.
Re: Duck DNS – free dynamic DNS hosted on AWS
#77For anyone hosting their domain on Google Domains, there's a neat API endpoint they're offering for updating the DNS with a simple CURL. I've been using this for years now for a public Raspberry PI behind a home router that changes IPs every other day. curl -s -k --user "username:password" "https://domains.google.com/nic/update?hostname=yourdomain.com" There's more parameters (and you can specify an IP, the above req…
I had no idea about this, really handy! Quick question, is there a reason the -k (--insecure) flag is included? I imagine that https://domains.google.com would use a cert trusted by curl so it seems unnecessary and adds a risk that your traffic could be MitM.
Re: Duck DNS – free dynamic DNS hosted on AWS
#78I'm currently on the search for a service to facilitate DDNS. Duck DNS seems popular, but I'm skeptical of things that are simply offered for free. What assurance do we have that Duck DNS is secure, or that it will not just disappear one day? The alternative that seems better to me is Namecheap with their API.
I cobbled together a bash script that used the cloudflare API to update the A record when my IP changed. It worked well. Prior to that i used https://freedns.afraid.org which is free if you are willing to share your domain (people can create subdomains that point to their IP) or you can pay to keep it private. It's been around for a very long time, so it's unlikely to vanish. It's a very good service.
And it works on their free account level! Maybe someday they’ll kill that, but they have a history of keeping features in free going.
Re: Duck DNS – free dynamic DNS hosted on AWS
#79That's great and all but since dyndns providers are hardcoded in my router this does not help.
Re: Duck DNS – free dynamic DNS hosted on AWS
#80Earlier quoted context omitted.
I cobbled together a bash script that used the cloudflare API to update the A record when my IP changed. It worked well. Prior to that i used https://freedns.afraid.org which is free if you are willing to share your domain (people can create subdomains that point to their IP) or you can pay to keep it private. It's been around for a very long time, so it's unlikely to vanish. It's a very good service.
+1 on Cloudflare’s API for this. You can generate an API key (per domain only, I think) and it’s a simple curl call from there. And it works on their free account level! Maybe someday they’ll kill that, but they have a history of keeping features in free going.
Correct.