Today in our newest take on “older technology is better”: why NAT rules!

      • mholiv@lemmy.world
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        You shouldn’t have to?? Maybe you might need to change the mask in your firewall settings if the ipv6 allocation block size changes but that should be it.

        Everything else should just work as normal.

      • dan@upvote.au
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        2 months ago

        You can use ULAs (unique local addresses) or that purpose. Your devices can have a ULA IPv6 address that’s constant, and a public IPv6 that changes. Both can be assigned using SLAAC (no manual config required).

        I do this because the /56 IPv6 range provided by my ISP is dynamic, and periodically changes.

        • Brkdncr@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          Yes but you’d still be performing NAT. It’s at least 1:1.

          You’ll need to deal with firewall rules regardless, and drop IPs into policies. IPv6 doesn’t remove any of those chores but gets rid of having to maintain tables to deal with many-to-one NAT.

          • dan@upvote.au
            link
            fedilink
            arrow-up
            0
            ·
            2 months ago

            You wouldn’t need NAT. The ULA is used on the internal network, and the public IP is for internet access. Neither of those need NAT.

            • Brkdncr@lemmy.world
              link
              fedilink
              arrow-up
              0
              ·
              2 months ago

              If you use a single shared public ip then you’re using some amount of address translation.

              If you’re using an external ip address that’s different than an internal ip address but both are assigned to a single host the you’re doing 1:1 NAT.

              At least that’s how I understand ipv4 and I don’t think ipv6 is much different.

              • dan@upvote.au
                link
                fedilink
                arrow-up
                0
                ·
                edit-2
                2 months ago

                If you use a single shared public ip then you’re using some amount of address translation

                This is practically never the case with IPv6. Usually, each device gets its own public IP. This is how the IPv4 internet used to work in the old days (one IP = one device), and it solves so many problems. No need for NAT traversal since there’s no NAT. No need for split horizon DNS since the same IP works both inside and outside your network.

                There’s still a firewall on the router, of course.

                At least that’s how I understand ipv4 and I don’t think ipv6 is much different.

                With IPv6, each network device can have multiple IPs. If you have an internal IP for whatever reason, it’s in addition to your public IP, not instead of it.

                IPs are often allocated using SLAAC (stateless address auto config). The router tells the client "I have a network you can use; its IP range is 2001:whatever/64, and the client auto-generates an IP in that range, either based on the MAC address (always the same) or random, depending on if privacy extensions are enabled - usually on for client systems and off for servers.

                • Brkdncr@lemmy.world
                  link
                  fedilink
                  arrow-up
                  0
                  ·
                  2 months ago

                  Just like ipv4 though, you wouldn’t use external addresses internally because your external IPs might change, such as when moving between ISPs. You would NAT a hosts external address to its internal address.

                  • dan@upvote.au
                    link
                    fedilink
                    arrow-up
                    1
                    ·
                    edit-2
                    2 months ago

                    your external IPs might change, such as when moving between ISPs

                    This is true

                    You would NAT a hosts external address to its internal address.

                    This is usually not true.

                    If you’re worried about your external IP changing (like if you’re hosting a server on it), you’d solve it the same way you solve it with IPv4: Using dynamic DNS. The main difference is that you run the DDNS client on the computer rather than the router. If there’s multiple systems you want to be able to access externally, you’d habe multiple DDNS hostnames.

    • Justin@lemmy.jlh.name
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      2 months ago

      1:1 stateless NAT is useful for static IPs. Since all your addresses are otherwise global, if you need to switch providers or give up your /64, then you’ll need to re-address your static addresses. Instead, you can give your machines static private IPs, and just translate the prefix when going through NAT. It’s a lot less horrible than IPv4 NAT since there’s no connection tracking needed.

      This is something I probably should have done setting up my home Kubernetes cluster. My current IPv6 prefix is from Hurricane Electric, and if my ISP ever gives me a real IPv6 prefix, I will have to delete the entire cluster and recreate it with the new prefix.

      • Thiakil@aussie.zone
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        It should only be needed if your ISP is brain-dead and only gives you a /64 instead of what they should be doing and also giving you a /56 or /48 with prefix delegation (I.e it should be getting both a 64 for the wan interface, and a delegation for routing)

        You router should be using that prefix and sticking just a /64 on the lan interface which it advertises appropriately (and you can route the others as you please)

        Internal ipv6 should be using site-local ipv6, and if they have internet access they would have both addresses.

        • Justin@lemmy.jlh.name
          link
          fedilink
          English
          arrow-up
          0
          ·
          edit-2
          2 months ago

          Hurricane Electric gives me a /48.

          Site-local ipv6 would work here as well, true. But then my containers wouldnt have internet access. Kubernetes containers use Ipam with a single subnet, they can’t use SLAAC.

          • Thiakil@aussie.zone
            link
            fedilink
            arrow-up
            0
            ·
            2 months ago

            Point is, you should be able to have them have both. Or stick a reverse proxy in front that can translate. Unless they’re somehow meant to be directly internet reachable the public addresses could be autogenerated

            Full disclosure though I don’t know anything about kubernetes.

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

              Yeah, I wonder if there’s any proposals to allow for multiple IPV6 addresses in Kubernetes, it would be a much better solution than NAT.

              As far as I know, it’s currently not possible. Every container/Pod receives a single IPv4 and/or IPv6 address on creation from the networking driver.

        • dan@upvote.au
          link
          fedilink
          arrow-up
          0
          ·
          edit-2
          2 months ago

          My ISP does this right (provides a /56 for routing), but unfortunately both are dynamic and change periodically. Every time I disconnect and reconnect from the internet, I get a different prefix.

          I ended up needing to have ULAs for devices where I need to know the IPv6 address on my network (e.g. my internal DNS servers).

          • Thiakil@aussie.zone
            link
            fedilink
            arrow-up
            1
            ·
            2 months ago

            Indeed, that’s correct ula usage, but shouldn’t need nat rewriting. The global prefixes just need to be advertised by RA packets

            • Thiakil@aussie.zone
              link
              fedilink
              arrow-up
              1
              ·
              2 months ago

              I use openwrt on my home network which uses dnsmasq for dhcp. It can give a static suffix which just works with the global prefix on the interface and the site local / ula prefix it uses

              • dan@upvote.au
                link
                fedilink
                arrow-up
                1
                ·
                2 months ago

                Note that Android doesn’t support DHCPv6, just in case you have Android devices and ever have to debug IPv6 on them.

            • dan@upvote.au
              link
              fedilink
              arrow-up
              1
              ·
              edit-2
              2 months ago

              Yeah I’m not using NAT, sorry for the confusion.

              My router doesn’t support RAs for a ULA range though, so I’m running radvd on my home server.