63 pointsby quaintdev13 hours ago28 comments
  • nesarkvechnepa minute ago
    Reading the comments, it looks like some people dismiss IPv6 just because they need to sit down and learn a couple of new things.
  • rickcarlino5 hours ago
    Imagine being able to connect two computers over the internet using sockets. WebRTC is a marvel, but I miss the whimsical days of running something on a port at home and connecting to it without thinking about NAT.
    • kalleboo4 hours ago
      Imagine being able to make a voice call to a friend without paying for a middle-man to proxy the traffic completely unnecessarily.
  • oconnore13 hours ago
    I don't understand why people are so negative about IPv6. I have done essentially zero home networking work and I just ran this successfully. It just works!

    ``` > ping6 google.com PING6(56=40+8+8 bytes) 2605:59c0:236f:3a08:7883:9d04:c26d:5fa1 --> 2607:f8b0:4005:806::200e 16 bytes from 2607:f8b0:4005:806::200e, icmp_seq=0 hlim=117 time=22.262 ms 16 bytes from 2607:f8b0:4005:806::200e, icmp_seq=1 hlim=117 time=26.124 ms 16 bytes from 2607:f8b0:4005:806::200e, icmp_seq=2 hlim=117 time=26.807 ms ^C --- google.com ping6 statistics --- 3 packets transmitted, 3 packets received, 0.0% packet loss round-trip min/avg/max/std-dev = 22.262/25.064/26.807/2.001 ms ```

    • magicalhippoan hour ago
      > I don't understand why people are so negative about IPv6. [...] It just works!

      Networking is a lot more than being able to ping a single host.

      As a concrete counter-example, IPv6 routinely broke for me when I was using pfSense as a router. Why? Because pfSense, with no way of disabling this behavior, published its public IP as the DNS server for internal clients.

      So each time I got a new prefix from my IPS, which happens about once a week or more often, machines stopped being able to perform DNS lookups for hours or until I rebooted them.

      And, if I had bothered configuring IPv6 firewall rules, those would have had to be reconfigured manually with the new prefix. I understand this is mostly fixed in pfSense recently, but this was the case for many, many years.

      Another counter-example is that Android only supports SLAAC, and SLAAC only supports providing a few key infrastructure details like router and DNS. If you want to tell the Android client something else, like NTP server, you're outta luck. Also, if Android successfully gets an IPv6 address via SLAAC, it requires the DNS server IP to also be an IPv6 address. So your internal DNS server must then also serve on IPv6. If that wasn't the case, it would just silently use Google's own DNS servers, breaking any local configuration you had.

      Another point is that a lot of us tried using IPv6 decades ago, and so we still have scars from that time. IPv6 today is a lot better, but I still have a lot of IPv6 frustration associated with it from 15-20 years ago.

    • kstrauser11 hours ago
      That's literally impossible, to hear some people tell it. "And also, look how hard it'd be to memorize that address", say the people who remember like 2 IPv4 addresses, one of them being 127.0.0.1.
      • jen729w2 hours ago
        Tailscale, perhaps ironically in this context, has shown me the value of not caring about an IP address.

        I used to. When I had a home network I'd carefully assign `10.52.1.x` where `x` was the periodic number corresponding to the machine name! (I write from `lutetium`.)

        Now, with Tailscale's magic DNS – `lutetium` being all I need – why on Earth would I give a crap about an IP address? I've gone from being obsessed to truly not caring at all.

        So, give me IPv6. Auto-assign everything! All I want is a name.

      • NekkoDroid9 hours ago
        I remember like 10 different IPv4 addresses, 6 of which are DNS servers where each octet is a single number, 1 is my router, 1 is my home network switch, 1 is my home server and the last one localhost.

        The main thing all those have in common is they are either something I frequently use (all mentioned local IPs) or just stupid easy to remember (DNS servers), neither of which isn't possible for IPv6.

        From memory isn't localhost for IPv6 not shorter than for IPv4? The answer is yes, it is ::1 and I was thinking of the Multicast and Link-local address prefixes which are ff00:: and fe80:: respectively.

        • boredatoms4 hours ago
          Telling people to use ULA subnet fddd:: with dhcpv6 is my way.

          fddd::7 is easier to type than 10.0.0.7

          • opan3 hours ago
            "ten oh oh 7" (how I'd say it or remember it) still seems simpler than "eff dee dee dee colon colon 7". While with ipv4 the dots can be assumed for pauses, v6 doesn't put colons as often, also I could easily see myself forgetting the amount of "d"s. I don't wanna seem too anti-v6, though, I am in favor of everyone adopting the more modern thing.

            edit: Well, you said easier to type. I guess I probably agree with that.

  • rectang13 hours ago
    If UTF-8 represents the triumph of a design prioritizing backwards compatibility with an existing standard (ASCII) to facilitate a transition, then IPv6 is the cautionary tale of a design which could have made the transition simpler but did not.
    • w3ll_w3ll_w3ll13 hours ago
      IPv6 cannot be backward-compatible with IPv4 in the way UTF-8 is with ASCII. Any argument built on that comparison reflects a misunderstanding of the protocols and leads to flawed conclusions.
      • j1elo13 hours ago
        Why not? Sincere question. As a very superficial idea, if we go back to the drawing board, for example we could decide our new cool concept of address to be an IPv4 + an hex suffix, maybe at the expense of not having a humongous address space.

        So 10.20.30.40 would be an IPv4 address, and 10.20.30.40:fa:be:4c:9d could be an IPv6 address. With the :00:00:00:00 suffix being equivalent to the IPv4 version.

        I just made this up, so I'm sure that a couple years of deep thought by a council of scientists and engineers could come up with something even better.

        • wjholden3 hours ago
          The header of an IPv4 packet has the source and destination addresses, both as 32-bit values. These fields are adjacent, and there's other stuff next to them. If you appended more bytes to the source address, routers would think that those new bytes are the destination address. This would not be backward compatible.

          Interestingly, what you're describing really is similar to how many languages represent an IPv4 address internally. Go embeds IPv4 addresses inside of IPv6 structs as ::ffff:{IPv4 address}: https://cs.opensource.google/go/go/+/go1.26.2:src/net/ip.go;...

        • zamadatix12 hours ago
          Programmers really like to focus on things like:

          - How they would format the display of the bits

          - Where in the bit pattern IPv4 mapped addresses should go

          - Coming up with some variation of NAT64, NAT464, or similar concepts to communicate between/over IPv4 and IPv6 networks

          - Blaming the optional extensions/features of IPv6 for being too complex and then inventing something which has 90% of the same parts which are actually required to use

          It's even easy to get distracted in a world of "what you can do with IPv6" instead of just using the basics. The things that actually make IPv6 adoption slow are:

          - A change in the size of the address field which requires special changes and configuration in network gear, operating systems, and apps because it's not just one protocol to think about the transport of again until the migration is 100% complete.

          If IPv4 were more painfully broken then the switch would have happened long ago. People just don't care to move fast because they don't need to. IPv6 itself is fine though and, ironically, it's the ones getting the most value out of the optional extensions (such as cellular providers) who actually started to drive IPv6 adoption.

        • SkiFire1312 hours ago
          How would you get someone that only knows about IPv4 addresses like 10.20.30.40 to send a packet to someone with an address 10.20.30.40:fa:be:4c:9d?
        • IsTom13 hours ago
          How do you squeeze that in IPv4 packet? Especially in a way that won't get mangled by random ossified devices in between?
          • j1elo12 hours ago
            In IPv4 you only need to transmit IPv4 addresses. If the "cannot be" in parent post is referring to the exact byte disposition in packets, then I go the other way around to claim that I agree. Because the only way that a UTF8 character can pretend to be ASCII is because ASCII didn't use all of the 8 bits in a byte to begin with. Only way to have something similar in this case, would be that IPv4 didn't use all of the allocated bits for addresses... Which is not the case.

            What I argued was that IPv4 could be embedded into IPv6 address space if they had designed for it. But I agree, that the actual packet header layouts would need to look at least a bit different.

            • zamadatix12 hours ago
              https://datatracker.ietf.org/doc/html/rfc4291#section-2.5.5....

              & the following section for the follow-up embedding.

            • throw0101c11 hours ago
              > What I argued was that IPv4 could be embedded into IPv6 address space if they had designed for it.

              Like:

              > Addresses in this group consist of an 80-bit prefix of zeros, the next 16 bits are ones, and the remaining, least-significant 32 bits contain the IPv4 address. For example, ::ffff:192.0.2.128 represents the IPv4 address 192.0.2.128. A previous format, called "IPv4-compatible IPv6 address", was ::192.0.2.128; however, this method is deprecated.[5]

              * https://en.wikipedia.org/wiki/IPv6#IPv4-mapped_IPv6_addresse...

            • Hikikomori11 hours ago
              They did that. Problem is that an ipv4 only host can't talk to ipv6. Adding more bits to ipv4 creates a new protocol just like ipv6 and has the same transition issues.
          • 13 hours ago
            undefined
        • throw0101c11 hours ago
          > So 10.20.30.40 would be an IPv4 address, and 10.20.30.40:fa:be:4c:9d could be an IPv6 address. With the :00:00:00:00 suffix being equivalent to the IPv4 version.

          Like

          > Addresses in this group consist of an 80-bit prefix of zeros, the next 16 bits are ones, and the remaining, least-significant 32 bits contain the IPv4 address. For example, ::ffff:192.0.2.128 represents the IPv4 address 192.0.2.128. A previous format, called "IPv4-compatible IPv6 address", was ::192.0.2.128; however, this method is deprecated.[5]

          * https://en.wikipedia.org/wiki/IPv6#IPv4-mapped_IPv6_addresse...

          Or:

          > For any 32-bit global IPv4 address that is assigned to a host, a 48-bit 6to4 IPv6 prefix can be constructed for use by that host (and if applicable the network behind it) by appending the IPv4 address to 2002::/16.

          > For example, the global IPv4 address 192.0.2.4 has the corresponding 6to4 prefix 2002:c000:0204::/48. This gives a prefix length of 48 bits, which leaves room for a 16-bit subnet field and 64 bit host addresses within the subnets.

          * https://en.wikipedia.org/wiki/6to4

          So you have to ship new code to every 'network element' to support your "IPv4+" plan. Just like with IPv6.

          So you have to update DNS to create new resource record types ("A" is hard-coded to 32-bits) to support the new longer addresses, and have all user-land code start asking for, using, and understanding the new record replies. Just like with IPv6. (A lot of legacy code did not have room in data structures for multiple reply types: sure you'd get the "A" but unless you updated the code to get the "A+" address (for "IPv4+" addresses) you could never get to the longer with address… just like IPv6 needed code updates to recognize AAAA, otherwise you were A-only.)

          You need to update socket APIs to hold new data structures for longer addresses so your app can tell the kernel to send packets to the new addresses. Just like with IPv6. In any 'address extension' plan the legacy code cannot use the new address space; you have to:

          * update the IP stack (like with IPv6)

          * tell applications about new DNS records (like IPv6)

          * set up translation layers for legacy-only code to reach extended-only destination (like IPv6 with DNS64/NAT64, CLAT, etc)

          You're updating the exact same code paths in both the "IPv4+" and IPv6 scenarios: dual-stack, DNS, socket address structures, dealing with legacy-only code that is never touched to deal with the larger address space.

          Deploying the new "IPv4+" code will take time, there will partial deployment of IPv4+ is no different than having partial deployment of IPv6: you have islands of it and have to fall back to the 'legacy' IPv4-plain protocol when the new protocol fails to connect:

          * https://en.wikipedia.org/wiki/Happy_Eyeballs

          "Just adding more bits" means updating a whole bunch of code (routers, firewalls, DNS, APIs, userland, etc) to handle the new data structures. There is no "just": it's the same work for IPv6 as with any other idea.

          (This idea of "just add more addresses" comes up in every discussion of IPv6, and people do not bother thinking about what needs to change to "just" do it.)

          > If IPv4 were more painfully broken then the switch would have happened long ago.

          IPv4 is very painful for people not in the US or Western Europe that (a) were now there early enough to get in on the IPv4 address land rush, or (b) don't have enough money to buy as many IPv4 addresses as they need (assuming someone wants to sell them).

          So a lot of areas of the world have switched, it's just that you're perhaps in a privileged demographic and are blind to it.

          • zamadatix7 hours ago
            > IPv4 is very painful for people not in the US or Western Europe that (a) were now there early enough to get in on the IPv4 address land rush, or (b) don't have enough money to buy as many IPv4 addresses as they need (assuming someone wants to sell them).

            The lack of pain is not really about the US & Western Europe have plenty of addresses or something of that nature, it's that alternative answers such as NAT and CG-NAT (i.e. double NAT where the carrier uses non-public ranges for the consumer connections) deployments are still growing faster in those regions than IPv6 adoption when excluding cellular networks (they've been pretty good about adopting IPv6 and are where most of the IPv6 traffic in those regions comes from).

          • jcgl9 hours ago
            I think your summary is really great. One of the better refutations I've seen about the "what about v4 but longer??" question.

            However, I think people do get tripped up by the paradigm shift from DHCP -> SLAAC. That's not something that is an inevitable consequence of increasing address size. And compared to other details (e.g. the switch to multicasting, NDP, etc.), it's a change that's very visible to all operators and really changes how things work at a conceptual level.

            • zamadatix7 hours ago
              The real friction with SLAAC was that certain people (particularly some at Google) tried to force it as the only option on users, not that IPv6 ever forced it as the only option. The same kind of thing would likely occur with any new IP version rolling out.

              For comparison IPv4 had:

                - Static (1980 - original spec)
                - RARP   (1984 - standalone spec)
                - BOOTP  (1985 - standalone spec)
                - DHCP   (1993 - standalone spec)
              
              And for IPv6:

                - Static (1995 - pre, 1998 final spec)
                - SLAAC  (1996 - pre standalone, 1998 final standalone)
                - DHCPv6 (2003 - standalone)
              
              Some of these have had subsequent minor updates, e.g. DHCP was updated in 1997 and so on.
            • wmf8 hours ago
              DHCPv6 now exists and every OS except Android supports it.
              • jcgl8 hours ago
                > except Android

                That alone is significant.

                Furthermore, DHCPv6 holds you back from various desirable things like privacy addresses and (arguably even more importantly) IPv6 Mostly.

      • jcgl13 hours ago
        Yep. Translation technologies like NAT64 and company basically as good a job as can be hoped for. And they're quite good nowadays!

        But to stick with the ASCII->UTF-8 comparison: how would you have done the transition if you had to stay within ASCII's size of 7 bits?

        • p1mrx12 hours ago
          https://en.wikipedia.org/wiki/UTF-7 exists, but was rarely used.

          UTF-8 is convenient because ASCII has a spare bit, but UTF-8 is fundamentally possible because ASCII is variable-length. IPv4 is not variable-length.

          • throw0101c11 hours ago
            > https://en.wikipedia.org/wiki/UTF-7 exists, but was rarely used.

            UTF-7 was possible because there was an out-of-band mechanism to signal its use, "Content-Type: text/plain; charset=UTF-7":

            * https://datatracker.ietf.org/doc/html/rfc2152

            What's the OOB signalling in IP packet transmission between two random nodes on the Internet.

            • wmf11 hours ago
              The first thing in the IP header is the version number.
              • throw0101c11 hours ago
                > The first thing in the IP header is the version number.

                So you just change the version number… like was done with IPv6?

                How would this be any different: all hosts, firewalls, routers, etc, would have to be updated… like with IPv6. So would all application code to handle (e.g.) connection logging… like with IPv6.

                • wmf10 hours ago
                  I was addressing the narrow claim that you cannot distinguish ASCII from UTF-7. You can distinguish IPv4 from IPv6 by looking at the version field (and I forgot to mention the L2 protocol field is out of band from IP's perspective). Obviously if the receiver doesn't support UTF-7 or IPv6 then it won't be understood. Forward compatibility isn't possible in this case.
          • labcomputer3 hours ago
            > IPv4 is not variable-length.

            I get the impression that this fact is fundamentally lost on a lot of the people who want a "compatible" IPv6. Like, their mental model does not distinguish between how we as humans write down an IPv4 address in text and how that address is represented in the packet.

            So they think "let's just add a couple more dots and numerals and keep everything else the same"

          • jcgl12 hours ago
            Right, the variable-length thing was my point. That's fine when you're dealing with byte slices that you scan through incrementally. But it's not fine for packets and OS data structures that had their lengths fixed at 32 bits.
      • AussieWog9313 hours ago
        Wait, why couldn't it?

        Just split the address into two 32-bit chunks (call the top word the "pool", bottom word "address") and assign the full IPV4 range to pool 0x00000000. Done.

        • treyd13 hours ago
          Well for starters, IPv6 has 128 bit addrs.

          But then think about what the routing tables would look like, how would an IPv4-only host find an IPv6 host not in pool 0? You'd be reinventing NAT, but in a less-structured context than how NAT works today. There's more issues to it too.

          If it was really that simple they would have done exactly that. "Just adding more bits to IPv4" just isn't possible to do backwards-compatibly. IPv6 is the closest you can get to that while also dealing with the complexity that arises with longer addresses.

          • AussieWog9312 hours ago
            >how would an IPv4-only host find an IPv6 host not in pool 0?

            Ah.

        • kstrauser13 hours ago
          Until you upgrade every router between 2 hosts so that it understands the IPv4b addressing scheme, those 2 hosts can't talk. And if you're going to upgrade them all anyway, then might as well do it right.
        • eptcyka13 hours ago
          In what world does is such a protocol any more *”””compatible”””* with IPv4 than IPv6 already is? It is a different header after all.
        • bluGill13 hours ago
          That doesn't change anything - until everyone adopts the new chunk nobody can use it (even one windows XP machine that you don't personally care about is enough to still kill it today). IPv6 is better because at least it can work side by side by IPv6.
  • rkagereran hour ago
    The main complaint I have against IPv6 is the addresses are so unwieldy. When I look at them I have the same reaction as when I look at some kind of complex scientific formula comprised of operators and symbols that are unfamiliar. It also takes extra mental effort to expand the compressed zeros and interpret what I'm viewing.

    Even after reading about them many times and using them in (an albeit limited) fashion, they still just don't feel human friendly. Not like the more straightforward IPv4 addresses do. (Or even like a hypothetical "IPv5" that simply prefixes one extra octet).

    Whenever I bring this up I'm told something like "Don't bother memorizing IPv6 addresses. Use DNS instead."[1]

    That take completely overlooks the fact that if the numbers exist, you will inevitably wind up needing to deal with them at various points along the way. Eg. Debugging logs, sniffing network traffic, ruling out if DNS is down, etc. I'm a big fan of ergonomics to make things intuitive and reduce unnccessary cognitive overhead, and the new scheme is a regression in that regard.

    If anyone has tips on how they became more fluent with IPv6 I'd love to hear.

    [1] https://www.networkworld.com/article/934784/mission-impossib...

    • rkagereran hour ago
      This is without even getting into learning the new (old?) paradigm of "exposing" all addresses to the whole internet. I realize "NAT" is not equivalent to "firewall", but placing them at the same boundary made things simple to understand conceptually. I for one never had trouble opening/forwarding ports (and liked the control it provided over what goes in and out, especially in the days before it all just became HTTP) but I sympathize with the major headaches the NAT "workaround" caused.
      • lunar_roveran hour ago
        NAT also solves the dynamic address issue. With GUA I need to deal with both dynamic prefix and randomised suffix that can be changed by seemingly unrelated things when opening ports to the internet.
        • preisschild43 minutes ago
          Does your ISP not offer static prefixes?

          For 5€/mo additional I get a static /32 v4 (for NAT64) and a /60 v6 prefix.

  • bluGill13 hours ago
    The US doesn't have excessive IPv4 Addresses. We have a real shortage and big pain because we don't have anywhere near enough. Sure we have 40% of them all - but that has no indication of what enough is.
    • blinded5 hours ago
      100% this, my college had 2 /16s for no reason. The printers were all public, was a mess.
      • miladyincontrol4 hours ago
        I mean having a public address doesnt mean it has to be publicly routable. Same thing applies to ipv6.

        I speak as someone who worked at an institute that had similar abundance of address space.

        • fulafel4 hours ago
          Indeed, the tragedy of the IPv4+NAT stockholm syndrome is that people view having to use ambiguous addresses as access control and can't distinguish reachability vs addressing.
  • bombcar13 hours ago
    I don’t know how you measure “metric tons of content” but I suspect in general there’s lots of US-available content on IPv4 that the countries like China and India want to access, and not much the other way around.

    But that should be a perfect playground for an IPv6-only network that has gateways to the IPv4 content; eventually the home-developed content will begin to drive demand elsewhere.

    • nickserv13 hours ago
      Yes, there's lots of content on IPv4, and there is also a lot of traffic from India...

      If India were to turn off IPv4, it would be a great incentive for IPv4-only sites in the US and Europe to add an IPv6 address.

  • jdwithit13 hours ago
    IPv4 has been "in crisis" for the entire 20 years I've worked in tech and we seem to be managing alright. Not to say things can't be better or we shouldn't try to improve. But I'll be surprised if v4 isn't still the default for most use cases in another 20 years.
    • RiverCrochet13 hours ago
      That's because the Internet is basically broadcast TV 2.0 so no one cares about having public IPv4's at home as long as they can get to their memes and streaming. Great job, we took something that was meant to be a next frontier in humanity and let anyone connect with anyone else without gatekeepers/intermediaries and turned it 21st century brainrot troughs. Perhaps a society not in slow intellectual decline would have chosen otherwise.
      • ux26647813 hours ago
        > Great job, we took something that was meant to be a next frontier in humanity and let anyone connect with anyone else without gatekeepers/intermediaries

        We already had that, it's called shortwave radio. The internet, especially as it's implemented and as it's used, is a terrible way to achieve this. It's service providers the whole way down.

        • smallmancontrov13 hours ago
          It would be funny if HAM radio came back because the social filter imposed by the limitations wound up being more important than the technological capability.
          • ozim2 hours ago
            Problem is that HAM radio also has social filters you broadcast to everyone and you don’t know who is listening. Encrypted communication is not allowed in HAM.

            You are not supposed to use it for „communication” as in Facebook. You are supposed to use spectrum to test your gear and keep transmissions short to leave space for others.

            I was in local HAM club and passed the exam for license but never got license to transmit mostly because you are not supposed to chat frivolously over the radio.

        • kaoD12 hours ago
          > It's service providers the whole way down.

          And still likely better than heavily regulated airwaves.

        • globular-toast12 hours ago
          There are definitely problems, but IRC in the 90s had strong ham radio vibes imo.
      • ozim13 hours ago
        I do agree.

        But at the same time there is a quote by Stanisław Lem...

        "Until I used the Internet, I didn't know there were so many idiots in the world"

      • dartharva5 hours ago
        > Perhaps a society not in slow intellectual decline would have chosen otherwise.

        The "slow intellectual decline" has circular causality with advancement of mass media and convenience tech.

    • lern_too_spel13 hours ago
      His point is that you're managing alright because you live in a country where your ISP can give you a public IP address. The author lives in a country where that is not possible and accesses the Internet behind layers of NAT.
      • wmf11 hours ago
        It's possible for Indian ISPs to buy IPv4 addresses and assign them to customers. Maybe not for $5/month but if you're willing to pay US prices (plus tax) you should be able to get US quality service.
        • labcomputer3 hours ago
          Yes, but they can't do that if every Indian wants one, and they especially can't do that if every Chinese person wants one at the same time.

          IPv4 is 32 bits. It has a hard cap of ~4 billion addresses. China and India alone have 2.85 billion people.

          Add in the United States and Europe, and now nobody else gets an IP address. South America, Canada, Mexico, Australia, Africa, the middle east, the rest of Southeast Asia, etc. don't get to use the internet. That's 4 billion people who don't get to use the internet.

      • netdevme10 hours ago
        You can even buy a block, but the smallest one has 256 addresses.
      • LoganDark13 hours ago
        What's the difference, other than port forwarding? Does NAT cause some sort of unique issue that makes existence miserable?
        • orangeboats2 hours ago
          >other than port forwarding

          >other

          Well you just handwaved away the most significant difference between NAT and native IP, obviously there won't be any major difference to discuss about anymore!

          No, we can't ignore port forwarding. The key thing to realize about NAT is that someone owns the NAT. Back then, the NAT lived inside each of the home routers, so even if you have a "strict" NAT (endpoint-dependent mapping NAT, i.e. one that doesn't allow for hole-punching), you can easily bypass it by setting up a manual port forwarding entry.

          With CGNAT that's no longer possible, you do not control the NAT. If your ISP decides to screw you over, you essentially do not have a choice but to get a relay, which needlessly costs you money.

          ---

          But if you really want to know what advantages native IP has over NAT, I'd say the lack of keepalive packets (to keep a holepunched NAT entry from being removed) is a pretty nice thing.

        • lmm4 hours ago
          "What's the difference other than the difference?". Not being able to forward ports means I can't play Tricky Towers with my friend (who isn't technical enough to join a VPN with me and would have privacy concerns about doing so).
        • throw0101c11 hours ago
          > What's the difference, other than port forwarding? Does NAT cause some sort of unique issue that makes existence miserable?

          The difference is that your home router does not get a public IP on its WAN interface, but perhaps the non-publicly-routable 100.64.0.0/10 [1] with CG-NAT.

          So if you don't have a public IP address, how exactly are you supposed to forward anything? What is the other end supposed to connect to as an IP address?

          [1] https://en.wikipedia.org/wiki/IPv4_shared_address_space

          • LoganDark7 hours ago
            > The difference is that your home router does not get a public IP on its WAN interface, but perhaps the non-publicly-routable 100.64.0.0/10 [1] with CG-NAT.

            Yes...? I know that, but does that cause any issues in practice other than death of P2P?

            > So if you don't have a public IP address, how exactly are you supposed to forward anything? What is the other end supposed to connect to as an IP address?

            I already mentioned port forwarding because with something like CG-NAT, it is often not possible (or not allowed). But I am not aware of any issues that stem from this other than an inability for others to establish connections directly to you. In fact, my network has a public IPv4 without CG-NAT and yet I am already used to being unable to receive data other than back through a TCP stream. That is the entire reason reverse proxy tunnels (such as ngrok, etc.) exist.

        • kalleboo4 hours ago
          It makes everything slower and more expensive.
        • jofla_net13 hours ago
          Hole punching, which has various forms, may or may not work. This means if you're doing something realtime, you may need to stick a server(reachable endpoint) in between it, at the very least reducing performance.
          • LoganDark7 hours ago
            I have never seen any situation where this is not already necessary other than UPnP which already almost never works reliably. A publicly-addressable relay is already practically non-negotiable for anything over the internet.
            • lmm4 hours ago
              uPnP works fine though? What was the problem you had with it?
            • lern_too_spel5 hours ago
              IPv6 everywhere makes that not necessary, which is what the author is pushing for.
  • ux26647813 hours ago
    The way forward for what though? It remains to be seen if this level of infrastructure and complexity has any kind of resilience. I seriously doubt it does, looking back on history. I think it's far more likely that the post-industrial population contraction (which hasn't even really begun) as well as climate change (anthropogenic or not) will make it far more likely that this model of "everybody uses a computer" ends up in the junk bin of history. Can't say I'd be sad to see it go. Somebody who has no interest in computers shouldn't ever have to touch one.
  • isodev13 hours ago
    Someone should’ve thought about the UX of IPv6 before declaring it to be “the way”. It’s like having to learn Klingon just to setup your printer. IPvNext could sort that out… maybe it’s time to consider moving on.
    • bluGill13 hours ago
      People claim this all the time, but every time I push I discover they have no clue how networks work and just handwave away as "easy" or "details" the very reasons people who understand networks say it can't work.
      • isodev13 hours ago
        I think you’re making my point - someone decided to surface a very low level concept “as is” (without a suitable abstraction) on a level where people also need it for use cases that don’t justify knowledge of the arcane. Or dealing with gatekeepers for that matter.
        • orangeboats3 hours ago
          There are already abstractions that allows you to deal with IPv6 without actually typing in the addresses. It's the DNS, but every time this topic pops up, someone rejects DNS and proceeds to continue sprouting something about how IPv6 is unusable because you can't memorize the addresses.
        • bluGill13 hours ago
          For most people there is no UX. Most US houses are IPv6 and use it without knowing anything about networking at all (most cable internet is IPv6, as the big cell networks).

          The people who have to make networks work need to know how IPv6 works - but there is no getting around that - they know how IPv4 works too.

      • 9rx4 hours ago
        > but every time I push I discover they have no clue how networks work

        Obviously. Anyone who does understand how networks work aren't going to spend any time talking about it. People don't talk about things they are certain about. They talk about what they don't know much about to feel out what they're missing. You will never find a discussion where pushing back reveals that you found the world's utmost expert. The world's utmost expert is bored with the subject and has moved on to talking about the things he has gaps in.

      • dogleash12 hours ago
        >every time I push I discover they have no clue how networks work

        Listen here, if there is a networking technology or feature that I wasn't forced learn when I half-assed a SOHO router config in 2005, then it shouldn't exist at all.

    • wmf11 hours ago
      SLAAC + mDNS makes IPv6 basically invisible.
    • IsTom13 hours ago
      Like there was any chance to see UX of this to work or not in most of places. I've never had an ISP that even offered any IPv6 connectivity besides mobile internet.
    • unethical_ban5 hours ago
      I learned the basics of IPv6 a few years ago, and forgot some of it... but NDP, the built in default addresses for router solicitation, address assignments and so on.

      I'll tell you that if you just think of it on its own, it's really no harder than IPv4 + ARP + DHCP, just one or two extra things to remember.

      The difficulty of adoption is the featureset and the UX of operating systems and home routers in particular. It is really difficult to find a consumer router, or even home networking OS, that exposes sensible working defaults for IPv6. The problem extends to the ISPs.

      The spec is fine.

  • mono44213 hours ago
    The main problem with IPv6 is that it is different from IPv4. There's SLAAC, there's no ARP and there're also some other differences. In the end, it's simpler to just not bother.
    • labcomputer3 hours ago
      IPv6 ND (and SND) serve the same purpose as ARP. It's like saying a fancy French restaurant doesn't have a cook because it has a chef.
    • dogleash13 hours ago
      Yup. People learn parts of v4 through osmosis because it's the default. Then when networking topics come up, it's easier to keep going with stuff that looks familiar rather than un-learning assumptions. Why bother with the weird other thing that's not even mandatory?
      • general14656 hours ago
        Because IPv4 is logical and makes sense. First thing which IPv6 came up with? No NATs everything will have a public address. It turned out that this was hare brained idea so let's just cover it up with firewall. However misconfigured firewall means that everything is open... IPv6 has been designed by people who were unable to think further than what is going to be tomorrow for a lunch.
        • kalleboo4 hours ago
          IPv4 came out in 1982 and was designed for every device to have a unique public address. Protocols like FTP were designed to literally pass an IP address to connect directly to.

          As addresses started running out, the NAT RFC was published in 1994 and described NAT as a "short-term solution". NAT was never meant to be an integral part of IPv4. https://www.rfc-editor.org/rfc/rfc1631

          NAT broke a ton of things which required more and more hacks piled on, making it more complex to build services on top if it (e.g., a server in the middle to proxy all the traffic needed between peers is a 100% requirement, with all the maintenance and scaling headaches that come with it).

        • BenjiWiebe5 hours ago
          Isn't that the first thing that IPv4 came up with as well? One publicly routable address per device that wants to access the Internet (or the network of universities or military installations or whichever network you were on pre-Internet).
    • jcgl9 hours ago
      ARP-schmarp. That doesn't matter to almost anyone who doesn't need to go deep into the network.

      But yeah, SLAAC's paradigm of moving assignment logic into the node (away from network infra like in DHCP) is definitely a stumbling point.

  • flumpcakes12 hours ago
    One of the biggest, I would assume in the current year, blockers to an IPv6 only world would be the fact that the major "cloud" vendors do not support it.
  • Bender12 hours ago
    The only place I have utilized an IPv6 address publicly is on my authoritative name servers only because some DNS testing tools assume it is there. It's not really needed however. My home firewall does have one but I have never used it. I can't think of a use for it. I have multiple static IPv4 addresses and they have suited me just fine for decades. I suppose I could bind a Squid SSL Bump MitM proxy to it in case a site blocks me but I would probably leave it off most of the time.

    I never use them on my web, chat, voice, IRC and other servers as I personally find blocking shenanigans on IPv4 and not having to implement the same checks on IPv6 is just easier for a lazy person like me. IPv6 just feels like an after-thought bolt on to me. Clunky, not well thought out. Some privacy gotchas that can be disabled but some will not. That's just my take. I doubt anyone will have the same take.

    I think IPv4 will be fine for another 100 years even if we have to re-purpose some DoD/MoD ranges given they don't use them and maybe annex some /8's from a few greedy companies. But that's a problem for Gen Delta. Gen Foxtrot can deal with repurposing some multicast ranges.

    • kalleboo7 hours ago
      > I have multiple static IPv4 addresses and they have suited me just fine for decades

      IPv6 is for the people (countries, continents) who did not get in early on the IPv4 address gold rush. Your take is basically "got mine, F you".

      • Bender6 hours ago
        Or ... people can use the DoD/Mod and assorted other space to get their IPv4 allocations. There is a ton of unused space in IPv4. Reserved, allocated but entirely unused. Also take back some /8's from greedy companies that don't need all that space. stares at HP When I say take I mean take as in a forceful annex and a timeline.
        • lmm4 hours ago
          > Or ... people can use the DoD/Mod and assorted other space to get their IPv4 allocations. There is a ton of unused space in IPv4. Reserved, allocated but entirely unused. Also take back some /8's from greedy companies that don't need all that space.

          In our exponentially growing world that wouldn't help. By the time we ran out of Class As we were allocating a new one every month. Reclaiming all the unused addresses would barely make a dent in demand.

        • orangeboats3 hours ago
          You have to be really special if you think a 32-bit address space can cope with the ever expanding internet. We only managed to scrape by for now because ISPs keep on putting more and more people behind CGNAT. (My country's ISPs forced the migration to CGNAT because they literally couldn't get more IPv4 blocks without spending a hefty amount)
        • labcomputer3 hours ago
          > There is a ton of unused space in IPv4.

          Err... you do realize that the number of humans currently living on planet earth is twice the number of IPv4 addresses... right?

          We can't all have an IPv4 address for each of our devices. We can't all even have one IPv4 address, period. But maybe they should just try not being poor, eh?

  • gmuslera12 hours ago
    It is the only way forward, but the reason for that is not the correlation between population and IP addresses. After all, most of the use of internet today is not by people, but by bots, crawlers, AI agents, b2b and more, and that is far more than the human population, and then you have the virtual networks built over IP like VPNs, Tor and more. It is more related to privacy, bidirectional communication and protocols, security, identity and possibilities.
  • Yizahi12 hours ago
    I honestly don't understand why IPv6 is not actively deployed in 2026. Every piece of networking hardware over past decade supports IPv6 and often dual stack too. And to switch between both often takes a few clicks if DHCPv6 server is up and reachable. Absolutely transparent, free, zero performance hit. But no, so many persist at doing v4.

    PS: I'm talking about MSO hardware. But client hardware should be at the same level of compatibility for years too.

    • thomasdziedzic12 hours ago
      2026:

        $ ping6 github.com
        ping6: github.com: Address family for hostname not supported
      • Yizahi12 hours ago
        Yeah, that's the problem. And I bet they could enable it, they just don't want to for some reason.
      • Hikikomori11 hours ago
        Azure has very poor V6 support last I tried it.
  • azalemeth13 hours ago
    I am behind cgnat but have a native ipv6 /64 at home. I've got a great fibre connection (2G5) and everything "just works". I can host on ipv6 native machines and see them from anywhere in the world that has native ipv6 access.

    The trouble is that 1) my employers do not have native ipv6 access; 2) neither does my mobile connection; and 3) really nor do a lot of my friends. Moreover, 4) if you browse a website from a native world-reachable ipv6 address, you're fingerprinted by it and it's overwhelmingly unique to you. So, it doesn't really work for hosting, and I don't get any direct benefits from it.

    Instead I have a vps with a public ipv4 address and have a router that creates a wireguard tunnel to it. The reverse proxy works great over ipv6 and I am now in a position where I can forward ports and have direct connections -- albeit with hugely increased technical complexity. Ipv6 has many great ideas in it. If it's universally used it might just catch on...

    • vimredo4 hours ago
      > 4) if you browse a website from a native world-reachable ipv6 address, you're fingerprinted by it and it's overwhelmingly unique to you.

      IPv6 privacy extensions exist & are enabled by default in most (if not all) operating systems today, which (this is my understanding; take it with a grain of salt) create what essentially are extra IPv6 addresses, used for outbound traffic, that aren't generated via your MAC address.

    • BenjiWiebe5 hours ago
      I'm curious - which mobile provider? I thought they were the ones that use IPv6 most, some even using 464XLAT so your device only has a v6 address.
  • preisschildan hour ago
    I love IPv6, SLAAC, mDNS, Thread, Matter and the other cool stuff in the ecosystem. I have wasted too much time setting manual DHCP static assignments. Now I just use SLAAC and mDNS with basically no manual config.
  • sidcool3 hours ago
    What dictates the allocation per country?
    • orangeboats3 hours ago
      IPv4 - first come first served, with a 24 karat FU to the 3rd world countries. It is their fault that they are poor.

      IPv6 - still the same, but the space is large enough that any first-mover advantage is minuscule.

      • labcomputer3 hours ago
        I think that's a bit uncharitable.

        32 bits seemed practically infinite at the time IPv4 was created, and the whole thing started as a way for the American military-industrial-research complex to communicate with itself anyway. Why would you even want to assign addresses on your defense network to foreign adversaries?

        Now that it's a commercial thing, a more equitable distribution would have, with hindsight, been a good thing.

  • thomasdziedzic13 hours ago
    IPv6 feels like we just can't admit to ourselves that it has been a failed transition. What would it take to come up with IPv7 which takes in the lessons of IPv6 and produces something better that we can all agree is worth transitioning to over IPv4.
    • plqbfbv11 hours ago
      > What would it take to come up with IPv7 which takes in the lessons of IPv6 and produces something better that we can all agree is worth transitioning to over IPv4.

      The only lesson to learn from IPv6 deployment is that if there's a workaround available and the world isn't burning, it'll take 30 years from initial design to actual adoption. So if you went out and took 10 years to design IPv7, it'd likely take until 2070 for it to gain some adoption. This is because big network hardware is costly and has very long replacement cycles.

      IPv6 was already designed as a lessons-learnt protocol from IPv4 issues. The header is greatly simplified and it's more hardware-friendly, it incorporates the required features into the protocol and leaves extensibility as an optional add-on that doesn't slow down routing packets, all the while granting an infinite address space.

    • throw0101c11 hours ago
      > IPv6 feels like we just can't admit to ourselves that it has been a failed transition. What would it take to come up with IPv7 which takes in the lessons of IPv6 and produces something better that we can all agree is worth transitioning to over IPv4.

      Per Google, quite a few countries (including the US) are at >50%:

      * https://www.google.com/intl/en/ipv6/statistics.html#tab=per-...

      Every handset on T-Mobile US's network gets IPv6 (and they're not the only carrier like that):

      * https://www.youtube.com/watch?v=d6oBCYHzrTA

      So I'm not quite sure where "failed" enters the equation.

      And what exactly would be different with IPv7? Anything that needs more address bits would have to update DNS to create new resource record types ("A" is hard-coded to 32-bits) to support the new longer addresses, and have all user-land code start asking for, using, and understanding the new record replies. Just like with IPv6. (A lot of legacy code did not have room in data structures for multiple reply types: sure you'd get the "A" but unless you updated the code to get the "A7" address (for "IPv7" addresses) you could never get to the longer with address… just like IPv6 needed code updates to recognize AAAA, otherwise you were A-only.)

      You need to update socket APIs to hold new data structures for longer addresses so your app can tell the kernel to send packets to the new addresses. Just like with IPv6.

    • apearson12 hours ago
      What changes to IPv6 would you make to make it easier to transition?
      • general146511 hours ago
        Whole model same as IPv4 (DHCP, NAT, ICMP, DNS, ...) just in v6. If IPv6 and IPv4 would be essentially the same from the get go, IPv4 would be a niche 20 years.

        Sure everything above IPv6 have, but it took years and years of screaming to get it.

        • throw0101c11 hours ago
          > Whole model same as IPv4 (DHCP, NAT, ICMP, DNS, ...) just in v6.

          All of those things exist in IPv6.

          And it is physically impossible for DNS to be the same, as you have to create new resource record types ("A" is hard-coded to 32-bits) to support the new longer addresses, and have all user-land code start asking for, using, and understanding the new record replies. Just like with IPv6. A lot of legacy code did not have room in data structures for multiple reply types: sure you'd get the "A" but unless you updated the code to get the "A7" address (for "IPv7" addresses) you could never get to the longer with address… just like IPv6 needed code updates to recognize AAAA, otherwise you were A-only.

          • general14656 hours ago
            > All of those things exist in IPv6.

            And it has not existed at the start of the IPv6 and is one of the many reasons why after all those years we are having a poor penetration of IPv6.

  • journal6 hours ago
    Will IPV6 become a type in sql databases?
    • landgenoot30 minutes ago
      > The INET6 data type is intended for storage of IPv6 addresses, as well as IPv4 addresses assuming conventional mapping of IPv4 addresses into IPv6 addresses.
  • wmf13 hours ago
    No mention of Indian ISPs just buying IPv4 addresses. Prices are even declining.
  • globular-toast13 hours ago
    IPv6 is totally an equality issue. If a sizeable proportion of this forum had to share an IP address we would've had IPv6 done years ago.
  • leosanchez13 hours ago
    Author if you are reading comments, rss feed entries point to example.com
    • haddr13 hours ago
      the link to the full table somehow doesn't work for me
    • quaintdev13 hours ago
      Thanks! Check now.
  • diath13 hours ago
    [flagged]
    • bombcar13 hours ago
      “They’re out of IPs so they should self-genocide” is certainly something akin to an opinion, but not one I expected to see on this site today.
      • diath13 hours ago
        You're putting words in my mouth, genocide implies murdering existing people to reduce the population, not developing policies that would slow down the population growth and/or fix the issues with the country.
    • themafia13 hours ago
      You literally missed the most important part:

      "A transition from IPv4 to IPv6 seems far more easier especially since we already have 77% of people on IPv6."

      So to the extent they're aware of the "issues" you bring up they're already on top of it.

      • diath13 hours ago
        ISPs providing IPv6 connectivity out of the box does not equal software and internal devices doing the same.
        • themafia13 hours ago
          You can route internal IPv4 networks over IPv6. There are several mapping strategies so this can even be transparent at your v6 gateway.
  • jmyeet12 hours ago
    I find it fascinating how these key technologies handle upgrades and breaking changes. For example, Python eschewed breaking changes through 2.7.x but the dam has burst since 3.0 and every point release (it seems?) makes breaking changes, sometimes reversing itself (eg the whole s/u string prefix thing).

    Many here will be familiar with the second system effect [1]. Usually people want to avoid making breaking changes but once they do, they can go a little nuts. My personal opinion is only major versions should make breaking changes and a lot of thought should go into making them as painless as possible.

    IPv6 is fascinating for these reasons but also that it's a product of its time in two main ways:

    1. It doesn't do anything about roaming because that wasn't an issue in the 1990s but it certainly is now;

    2. A 64 bit address space would've basically been infinite addresses but instead they went with 128 bit addresses (rolling in ports) but then giving individual users a /64 address range. For some reason people deny it now or simply weren't aware but that too is a historical artifact because it was intended to put a 48 bit MAC address into that space but later we realized that's a huge PII and tracking issue; and

    3. History has shown that upgrading network backbone hardware (in particular) is incredibly difficult through a process that's been described as "ossification", which is a nice description. Basically, network relays and routers wanted to avoid security issues and decided to discard things they didn't understand.

    That's interesting because it violates Postel's Law [2], which basically says be liberal in what you accept and conservative in what you send.

    But this shows up in all sorts of interesting ways, like it's practically impossible to reliably use MTUs larger than about 1536. When IPv4 was designed, that wasn't an issue. With 1-100G+ networks it is. There are RFCs about using large MTUs but you're dependent on backbone hardware you have no control over.

    Even Linux struggles with this, to the point where you need to do some configuration for high-bandwidth networks (eg RPS [3]). Just handling all those interrupts presents a bunch of problems beyond the original scope. And again, it's hard to fix through no fault of Linux's.

    I'm old enough to remember the talk about us running out of IPv4 addresses back in the 1990s. It's been interesting to watch how this has consistently been kicked down the street (eg cgNAT).

    What is funny though is large companies (eg Facebook) actualy ran out of internal addresses on a 10/8 network and there's no good solution for that (with IPv4 at least).

    [1]: https://en.wikipedia.org/wiki/Second-system_effect

    [2]: https://en.wikipedia.org/wiki/Robustness_principle

    [3]: https://lwn.net/Articles/362339/

    • jcgl12 hours ago
      > 3. History has shown that upgrading network backbone hardware (in particular) is incredibly difficult through a process that's been described as "ossification", which is a nice description. Basically, network relays and routers wanted to avoid security issues and decided to discard things they didn't understand.

      What makes you suggest that it's backbone hardware that is the problem? It's largely enterprise customers and tier 3 providers that don't really do IPv6 afaics.

    • 11 hours ago
      undefined
    • Hikikomori11 hours ago
      >3. History has shown that upgrading network backbone hardware (in particular) is incredibly difficult through a process that's been described as "ossification", which is a nice description. Basically, network relays and routers wanted to avoid security issues and decided to discard things they didn't understand.

      Would say the opposite is true. Core routers were the first to enable V6 support in any network as they would need support it for anything else to even use it. They got regularly replaced as bandwidth needs keeps rising as well.

      Plenty of isps advertise ipv6 but haven't managed to give it to customers yet.

      Interrupts are hardly a problem with any nics of the last decade really.

      Companies like Facebook can and do use 240/4.

  • tonymet13 hours ago
    > There are countless threads online on forums like Hacker News, Reddit where people who never really got comfortable with idea of IPv6

    It’s clumsier than ipv4. It’s unnecessary since NAT was invented. In practice IPv6 requires dual stack, which means twice as many firewalls, names and routes to manage — so 4x the debugging because you have 2 dimensions that can either be working or failing. Addresses are too long to remember, too clumsy to write, and after 30 years still don’t have consistent representation (how many colons and brackets?).

    Look, IPv6 has some benefits, but until the usability is fixed, it will be another 30 years before it’s close to 95% adoption.

    • throw0101c11 hours ago
      > It’s clumsier than ipv4. It’s unnecessary since NAT was invented.

      This is a privileged view of someone whose ISP has enough money (or was around early enough) to get enough IPv4 addresses to assign one to every customer's WAN interface. Not everyone is so lucky.

      A lot of folks get non-publicly-routable 100.64.0.0/10[1] on their WAN interface with no way to do hole punching because they're behind CG-NAT.

      [1] https://en.wikipedia.org/wiki/IPv4_shared_address_space

      • 11 hours ago
        undefined
      • tonymet8 hours ago
        so ipv6 is now a social justice issue? I'll send you the $2 a month for a elastic IP .
        • BenjiWiebe5 hours ago
          Can I have it on my home network connection for $2/month? I could do VPS+VPN, but that's another company to deal with, another bill to pay, and several more things to break. And more latency too.
        • orangeboats3 hours ago
          What about you send $2 to the people in India and China who can't get a public IPv4 address then?
    • apearson13 hours ago
      To reduce doing things twice there is NAT64/646XLAT. How many v4 addresses have you memorized, I normally use DNS or mDNS.
      • tonymet7 hours ago
        that reduces part of the scope for some of the customers
    • Hikikomori11 hours ago
      Why would you be typing of remembering ipv6 addresses? Representation has always been consistent, if you learn the rules, like how 1337::1/64 is a valid address.
      • tonymet8 hours ago
        that address doesn’t even work in the address bar
        • BenjiWiebe5 hours ago
          It's a valid address, just not a valid _URL_.
          • tonymet4 hours ago
            It’s not even a valid representation of the address (you need brackets )
            • vimredo4 hours ago
              The brackets are only needed for URLs, scp, and a few other things, due to the fact that ports are specified with colons. Usually you don't see them in a CIDR.
            • Hikikomorian hour ago
              It's a valid adress, as a network engineer I've never used brackets.
    • Chu4eeno13 hours ago
      ... and annoying casting from `sockaddr` to either `sockaddr_in` or `sockaddr_in6*` while you pass around a socklen_t.

      10 years ago I was all gung-ho about IPv6, but it's annoying at every level.

      • tonymet12 hours ago
        Having 2 sockets for loopback or multiple interfaces is a huge pain
        • BenjiWiebe4 hours ago
          Bind to '::' and you can get v4 and v6 traffic on one socket.
          • IcePic4 minutes ago
            Not on all OSes. And it's not all good to have one less socket, there are still issues with people not expecting v4 traffic on a v6-capable socket, like described here:

            https://radar.offseq.com/threat/ipv4-mapped-ipv6-addresses-t...

            If you want to handle two protocols, it is not unreasonable to use two sockets.

          • tonymet4 hours ago
            Doesn’t work for loopback (you have to listen externally )
            • vimredo3 hours ago
              It works fine for me on NixOS (Linux), with a recent kernel version and no weird config options - or at least I think so.
  • lgunsch13 hours ago
    If IPv6 was going to be successful, it would have been successful years ago. It seems, people are just more comfortable with layers of NAT than native IPv6 everywhere. I'd guess that it should have been more backwards compatible. Similar to UTF-8 and ASCII.
    • BenjiWiebe4 hours ago
      My Verizon connection has a CGNAT IPv4 and a publicly routable IPv6 address. It's at least partly a success, if you're using a cell phone on Verizon in the US.
  • tsoukase10 hours ago
    If IPv6 doesn't dominate in the next, let's say, 10 years, they might publish the IPv8 which will be an 64bit space, backwards compatible with IPv4. It will be the only case where a newer version of software comes back closer to an older one.
    • BenjiWiebe4 hours ago
      How do you plan to let IPv4 (32 bit address space) actually address and communicate with an IPv8 (64 bit address space) host? You don't have enough bits to identify the v8 host.
    • p1mrx6 hours ago
      > the only case where a newer version of software comes back closer to an older one

      Winamp 3 -> Winamp 5 was closer to Winamp 2. Windows 8 -> Windows 10 was closer to Windows 7.

      Though I don't expect this to happen with IP.