• Pax@lemmy.world
    link
    fedilink
    English
    arrow-up
    16
    ·
    4 days ago

    For me its been wireguard with split tunnel but that had a glaring issue with my home IP change (running 2 Pi-hole+unbound instances on separate network segments and hardware). Some time ago I switched to tailscale and added a Pi-hole on a VPS. Closed system, nothing exposed to the wide internet, works 99.99…% of the time, whole family protected against low hanging fruit attacks and adds.

    • Lem453@lemmy.ca
      link
      fedilink
      English
      arrow-up
      17
      ·
      edit-2
      4 days ago

      Use ddns on your router with a domain so you can then get something like wireguard.example.com and then use that as the endpoint in your wireguard.

      Set the wireguard DNS as your pihole.

      To make life easier set your home network IP space to something that another WiFi would never use, ie 192.168.46.xx

      That way it will never conflict if you are on a public WiFi and you can access anything on your home lab when you need.

      I’ve been using this setup for years on laptop, phone etc

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

        I do exactly this as well. Works great! Dynamic DNS is kind of a hilarious hack.

        Quick question: since I use wireguard, do I need to use DNS-over-HTTPS for security? My assumption is that my entire session is already encrypted with my wireguard keys, so it doesn’t matter. But I figured I should double check.

        • mac@lemm.ee
          link
          fedilink
          English
          arrow-up
          2
          ·
          3 days ago

          Depends, do you have pihole/unbound setup to only recursively resolve? Or do you forward requests to an upstream (either as a fallback or just as a primary). If that’s the case, and depending on your threat model, you’ll want to set up DoH or DoT as your DNS requests will be forwarded in plaintext

          • DynamoSunshirtSandals@possumpat.io
            link
            fedilink
            English
            arrow-up
            1
            ·
            3 days ago

            Fortunately I set up unbound ages ago, and disabled every other upstream option in my pi.hole. However, I imagine that still “leaks” some information about my DNS queries, just indirectly – it’s not like my pi.hole has every domain mapped all the time!

        • Lem453@lemmy.ca
          link
          fedilink
          English
          arrow-up
          1
          ·
          4 days ago

          You do not need anything else. DNS requests are all sent over Wireguard with encryption

          • DynamoSunshirtSandals@possumpat.io
            link
            fedilink
            English
            arrow-up
            1
            ·
            3 days ago

            Excellent to have confirmation, thanks. What about the VPN connection handshake? I always assumed it was OK over non-SSL, because the exchange should use signed keys. But that is quite an assumption on my part.

            • Lem453@lemmy.ca
              link
              fedilink
              English
              arrow-up
              2
              ·
              3 days ago

              Wireguard uses public and private keys which are designed from the ground up to be used over plain text to establish the handshake so it isn’t an issue. Same idea with ssh keys and ssl keys

      • Pax@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        3 days ago

        I have ddns on Cloudflare. It works great, until your home IP changes. After that wireguard will happily hammer the old IP, till something breaks the tunnel and it reestablishes it to the new IP. Working as intended. My workaround was forcing the IP change over night while everyone was home.

        Tailscale sorts all the issues I had.

    • abeorch@lemmy.ml
      link
      fedilink
      English
      arrow-up
      5
      ·
      4 days ago

      Whats the issue with the Home IP changing? - Have you setup a DynDns hostname?

      • vividspecter@lemm.ee
        link
        fedilink
        English
        arrow-up
        3
        ·
        4 days ago

        It may since have been fixed, but the Android client didn’t handle IP changes well in my experience. From my understanding, it only checks DNS when it initially connects, and so if the public IP changes the connection just stops working. This might be fine if the public ip changes infrequently or if you frequently connect and disconnect rather than leave the client always on, but not so much otherwise.

        Tailscale (and headscale) handles this gracefully, and you also get the nice NAT traversal features so no need to worry about CGNATs which are becoming more common.

        • WhyJiffie@sh.itjust.works
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 days ago

          that’s how it works on desktop too regarding DNS, but when it receives a response from a new IP, it should send future traffic there as I know

        • friend_of_satan@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          3 days ago

          From my understanding, it only checks DNS when it initially connects, and so if the public IP changes the connection just stops working.

          This is pretty standard TCP network behavior for long duration connections. The client queries dns for the IP address, opens a socket, and leaves it open as long as needed.

          One thing that would help here is some kind of keepalive feature, like a client to server TCP connect or SYN, or better yet a higher level protocol signal. Check your client to see if there is some tunable keepalive. It may be set so something long like 1h.

      • Pax@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 days ago

        It will resolve the IP from the domain when the tunnel goes up and will keep using that one. Working as intended.

        Overlay networks solve that issue.