Good FOSS software and reliable service providers? Etc.

    • mbfalzar@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      0
      ·
      12 days 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”

    • DynamoSunshirtSandals@possumpat.io
      link
      fedilink
      English
      arrow-up
      0
      ·
      13 days ago

      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?

        • Jess@lemmy.world
          link
          fedilink
          English
          arrow-up
          0
          ·
          12 days ago

          I just dump the changes with timestamps to a text file. Notifications for IP changes get sent to matrix after the DNS record is updated.

        • DynamoSunshirtSandals@possumpat.io
          link
          fedilink
          English
          arrow-up
          0
          ·
          12 days ago

          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 :-)

          • intensely_human@lemm.ee
            link
            fedilink
            English
            arrow-up
            0
            ·
            11 days 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.

  • Pika@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    0
    ·
    10 days ago

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

    • Justin@lemmy.jlh.name
      link
      fedilink
      English
      arrow-up
      0
      ·
      13 days ago

      Interesting, this seems to have better documentation and feedback than the external-dns operator

    • sith@lemmy.zipOP
      link
      fedilink
      English
      arrow-up
      0
      ·
      13 days 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!

  • anamethatisnt@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    13 days 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.

  • PieMePlenty@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    13 days 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.