Good FOSS software and reliable service providers? Etc.

top 50 comments

sorted by: hot top controversial new old
[–] 45 points 2 years ago (7 children)

Any registrar worth using has an API for updating DNS entries.

I just found this with a quick search: https://github.com/qdm12/ddns-updater

  • source
  • hideshow 7 child comments
  • [–] 12 points 2 years ago (4 children)

    exactly. I literally have a bash script that calls the API triggered by cron every 30 minutes. That's it. Are people seriously using a freaking docker container for this?

  • source
  • parent
  • hideshow 4 child comments
  • [–] 7 points 2 years ago (3 children)

    It's easy to set up and also keeps a history

  • source
  • parent
  • hideshow 3 child comments
  • [–] 9 points 2 years ago (1 child)

    Ah, a history would be nice. I've been thinking of keeping some stats to monitor when the connection goes down, and how often my IP changes.

    Fortunately I've kept the same IP since i changed ISPs a few months ago.

    Personally I still think docker is overkill for something that can be done with a bash script. But I also use a Pi 4 as my home server, so I need to be a little more scrupulous of CPU and RAM and storage than most :-)

  • source
  • parent
  • hideshow 1 child comment
  • [–] 1 point 2 years ago

    Even if it is docker it’s still a bash script or something in the container right? Or are people referring to the docker CLI directly changing DNS records somehow?

    My best guess is the reason to involve docker would be if you already have a cluster of containers as part of the project. Then you can have a container that does nothing but manage the DNS.

  • source
  • parent
  • [–] 15 points 2 years ago (2 children)
  • [–] 13 points 2 years ago

    cloudflare + the dynamic dns plugin for opnsense.

  • source
  • [–] 12 points 2 years ago

    I use ddclient but in a docker container. Works great with minimal config

  • source
  • [–] 10 points 2 years ago

    Have done it via bash scripts for years. Never had a problem. Since a few months i use https://github.com/qdm12/ddns-updater

  • source
  • [–] 8 points 2 years ago (17 children)

    Ixury for people that can have public IPs! :)

  • source
  • hideshow 17 child comments
  • [–] 4 points 2 years ago (12 children)
  • [–] 4 points 2 years ago (7 children)

    It's why IPv6 is important, but many didn't listen.

  • source
  • parent
  • hideshow 7 child comments
  • [–] 3 points 2 years ago

    @chronicledmonocle @sugar_in_your_tea This is why I love yggdrasil. Thanks to having a VPS running it that all of my hosts globally can connect to, I can just use IPv6 for everything and reverse proxy using those IPv6 addresses where I need to. Once hosts are connected and on my private yggdrasil network, I stop caring about CGNAT or IPv4 at all other than to maybe create public IPv4 access to a service.

  • source
  • parent
  • load more comments (6 replies)
  • [–] 2 points 2 years ago (3 children)

    Yeah, there are workarounds... And who knows, maybe its just safer than public ip... But definitely require some external fixture.

  • source
  • parent
  • hideshow 3 child comments
  • [–] 3 points 2 years ago (2 children)

    I guess you already know about the options, but for others:

    Find the cheapest VPS out there and have a Wireguard tunnel between it and your home network. Run ddclient or similar on the VPS in case the public IP changes.

  • source
  • parent
  • hideshow 2 child comments
  • load more comments (1 reply)
  • [–] 1 point 2 years ago* (3 children)

    I'm in the same situation.

    Fortunately there's a million companies that offer VPS with a static IP address for only few bucks a month. I set one up to run a wireguard VPN server which all my devices and home servers connect to as clients. I also configured everything to use a split tunnel to save bandwidth.

    It's an added layer of security too.

  • source
  • parent
  • hideshow 3 child comments
  • [–] 2 points 2 years ago (2 children)

    Can you detail the split tunnel part?

  • source
  • parent
  • hideshow 2 child comments
  • [–] 2 points 2 years ago* (last edited 2 years ago) (1 child)

    Normally when you're on a VPN all the network traffic to and from your device is going through the connection to the VPN server, e.g. browsing the internet, online games, etc. It can cause issues with other online services and uses bandwidth (cheap as it is) many VPS provider charges for.

    A split tunnel tells the VPN client to only send certain traffic through the tunnel. My wireguard setup assigns IP addresses for the VPN interfaces in the subnet 192.168.2.x, so only traffic addressed to IPs on that subnet get sent through the tunnel. In wireguard it's a single line in the config file:

    AllowedIPs = 192.168.2.0/24
    
  • source
  • parent
  • hideshow 1 child comment
  • [–] 8 points 2 years ago

    afraid still works like a charm. cloudflare is ok. duckdns is cool.

  • source
  • [–] 8 points 2 years ago (2 children)

    I solve it by paying way too much for a block of static IPs.

  • source
  • hideshow 2 child comments
  • [–] 6 points 2 years ago

    Afraid has a curl update. Cron job. It's that simple.

  • source
  • [–] 6 points 2 years ago*

    used a bash script and a cron job for a long time, now the whole topic is one of the projects i regularly rewrite whenever I want to get my hands dirty with a new programming language or framework.

  • source
  • [–] 5 points 2 years ago (1 child)

    Ddclient has done the trick for me, and my registrar supports it with an API

  • source
  • hideshow 1 child comment
  • [–] 4 points 2 years ago

    I set it once like 6 years ago and forgot it wasn't something pre-installed and configured until I saw your comment. I was reading through the comments looking for the "you don't need to do anything, ddclient takes care of it"

  • source
  • parent
  • [–] 5 points 2 years ago (1 child)

    Cloudflare DDNS updated by ddclient on my OpnSense router. Cloudflare happens to be my current domain registrar. Honestly, my IPv4 doesn't change that often. And when I used to be on Comcast, they assigned a block of IPv6 addresses and the router dealt with that. Unfortunately, I now have Quantum Fiber who only assign a single IPv6 address, so I gave up on IPv6 for now.

  • source
  • hideshow 1 child comment
  • [–] 1 point 2 years ago

    Just a practice I've had over the years with domains: separate your registrar and your DNS. If one goes down, or out of business, you can fix it if you still control the other and its accessible. If you have both of them in one place, it's really hard to get that domain transferred.

  • source
  • parent
  • [–] 5 points 2 years ago (4 children)

    Have you heard of the kuadrant project? It is for kubernetes and has a dynamic DNS element. Kuadrant.io

  • source
  • hideshow 4 child comments
  • [–] [S] 5 points 2 years ago

    Probably good, but I want to stay away from anything related to Kubernetes. My experience is that it's an overkill black hole of constant debugging. Unfortunately. Thanks though!

  • source
  • parent
  • load more comments (3 replies)
    [–] 5 points 2 years ago

    Ddns-updater and porkbun.

  • source
  • [–] 5 points 2 years ago

    My ip updates maybe once every three months or so, but what i did was just write a script that checks the current ip and updates the domain registrar. My domain is on cloud flare, and they have an API through which I can do it. It's literally one POST request. There are solutions out there but I wanted a really simple solution I fully understand so I just did this. Script runs in cron every few hours and that's it.

  • source
  • [–] 4 points 2 years ago (1 child)

    Desec + Nginx Proxy Manager as a reverse proxy. Solves ddns and https with a letsencrypt wildcard cert.

  • source
  • hideshow 1 child comment
  • load more comments (1 reply)
    [–] 4 points 2 years ago

    Tor hidden service

  • source
  • [–] 4 points 2 years ago*

    I would go for registering my own domain and then rent a small vps and run debian 12 server with bind9 for dns + dyndns.
    If you don't want to put the whole domain on your own name servers then you can always delegate a subdomain to the debian 12 server and run your main domain on your domain registrators name servers.

    edit:

    https://github.com/qdm12/ddns-updater

    If your registrar is supported the ddns-updater sounds a lot easier.

  • source
  • [–] 4 points 2 years ago

    What do you mean?

  • source
  • [–] 3 points 2 years ago

    If you don't need actually public DNS, something like Tailscale might be an option.

  • source
  • [–] 3 points 2 years ago

    @sith
    If this is useful we had a bit of a conversation about DynDns options a while back. Im currently using Hetzner with my subdomain names being dynamically updated.
    lemmy.ml/post/18477306

  • source
  • [–] 2 points 2 years ago

    my router uses openwrt which supports dynamic DNS updating on its own for multiple providers, I currently am through namecheap on it.

  • source
  • [+] 1 point 2 years ago* (last edited 2 years ago)
    load more comments
    view more: next ›