What’s up, what’s down and what are you not sure about?

Let us know what you set up lately, what kind of problems you currently think about or are running into, what new device you added to your homelab or what interesting service or article you found.

Personally I’m finally reaping the fruits of my labour and enjoy my stable homelab without doing much. One node went down recently and the other took over until I restarted so I was not in a hurry to fix things. Enjoying family time and only running updates that aren’t automated (yet). I’m about to dig a bit deeper into logging, probably setting up central log collection like Loki at some point, but not yet.

  • ExperimentalGuy@programming.dev
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 day ago

    Does anyone know how to get a static IP for their server when their ISP doesn’t allow it. I’ve found out how to use duckdns, but I want to set up my own DNS server from anywhere but I’m pretty sure it requires using a static IP.

    • jane232@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      4
      ·
      1 day ago

      I use duckdns, and thus have a xyz.duckdns.org domain, that points to the dynamic ipv4 address of my server. I do not host my own DNS server, rather I rely on a cheap Website / Mail / domain bundle. There I can enter my duckdns domain as a CNAME DNS entry. Thus every DNS lookup that is not for the remote hosted Website will resolve the duckdns domain and finally end at my server.

      I am not sure where you want to host your DNS server or also for what specific reason… If you don’t have a domain, you kind of don’t need to host a DNS, and every domain provider I had, also offered a DNS server with it.

      • ExperimentalGuy@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        ·
        1 day ago

        I wanted to run a pi hole to use as a DNS so that I can be ad free on any device. The problem is that with my computer or with my phone, I need to put in a specific IP address when I want to change DNS on that device.

        • MangoPenguin@lemmy.blahaj.zone
          link
          fedilink
          English
          arrow-up
          2
          ·
          edit-2
          12 hours ago

          So I wouldn’t put Pihole on the internet, but instead set up a Wireguard VPN on your devices and access Pihole via that.

          Then you can use the dynamic DNS hostname for Wireguard, and a direct IP for Pihole.

          Alternatively you could run Adguard Home instead, as it supports being a DoT and DoH server, both of which work over a hostname on your devices (ie; Android uses DoT for its secure DNS option).

          • jane232@discuss.tchncs.de
            link
            fedilink
            English
            arrow-up
            2
            ·
            17 hours ago

            Yes exactly, additionally you probably don’t want to host your pi hole for external use (mobile phone or laptop in a different network) for the reason of latency.

            The delay that is imposed by visiting your pi hole at home for each DNS request is going to be very unpleasant.

            Rather rely on an external dns provider that provides pi hole like funticionality.

            But this does not mean that you can’t also host your pihole for internal use. I use it not just for removing ads, but also to allow the access of local domains.

            • ExperimentalGuy@programming.dev
              link
              fedilink
              English
              arrow-up
              1
              ·
              12 hours ago

              Honestly I never thought about the latency issue, but I probably won’t do it because of that now that you mention it. Much appreciated.