Now currently I’m not in the workforce, but in the past from my work experience, apprenticeship and temp roles, I’ve always seen ipv4 and not ipv6!

Hell, my ISP seems to exclusively use ipv4 (unless behind nats they’re using ipv6)

Do you think a lot of people stick with the earlier iteration because they have been so familiar with it for a long time?

When you look at a ipv6, it looks menacing with a long string of letters and numbers compared to the more simpler often.

I am aware the IP bucket has gone dry and they gotta bring in a new IP cow with a even bigger bucket, but what do you think? Do you yourself or your firm use ipv4 or 6?

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

    Just annoyed when I need to specify port when using IPv6. Needs to add square bracket to workaround ambiguity of colon is kinda bad. How can they decide to use colon instead of another special character??

    • Tekkip20@lemmy.worldOP
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      Bit rude, Whilst I understand tech changes and evolves, some are literally the Just Works meme and don’t need to be rapidly changed.

    • BearOfaTime@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      2 months ago

      Talk about dumb.

      Are you going to assume the risk of this change, and pay the millions upon millions of dollars to make it happen, and for what benefit?

      We have thousands of devices that simply don’t support it (because they were designed before IP6 existed. You going to pay to replace them, and the labor to replace them, and the reprogramming to replace them, and the RISK you create while doing this?

      Dumb is right. Hubris is another word that comes to mind.

      • funtrek@discuss.tchncs.de
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        IPv6 is 26 years old. If you are still running devices that are connected to the internet and are older than that then you have a problem.

      • Skull giver@popplesburger.hilciferous.nl
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        If your devices are that fragile, they shouldn’t be hooked up to the internet in the first place. What are you doing hooking NETBIOS token ring networks up to the web?

        If you want to talk about risking breaking things, imagine the glorious lie that NAT introduced. Thanks to these old devices, your router at home/small business parses every FTP connection, every SIP message, every H.363 call, modifies its contents, and opens one or more ports in the firewall just to keep old stuff from breaking.

        If your crap survived NAT, it’ll survive IPv6. And if it can’t use IPv6, that means you don’t need to worry about it and you can just keep using IPv4 on these things like you always have!

  • fuckwit_mcbumcrumble@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    We turn it off in our office. It doesn’t benefit us.

    You could also make the argument that ipv4 through NAT is better for privacy since it obfuscate what, and how many devices are connected to where.

    • tunetardis@lemmy.ca
      link
      fedilink
      English
      arrow-up
      0
      ·
      2 months ago

      When I was first looking into IPv6, people were talking about how you can self-assign an address by simply wrapping an IPv6 address around your MAC address. But that practice seems to have fallen out of favour, and I’m guessing the reason is, as you say, the whole privacy thing? There’s a lot of pushback these days against any tech that makes it easier to fingerprint your connection.

      • Skull giver@popplesburger.hilciferous.nl
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        With modern IPv6 (say, Windows 7 or later?) IPv6 privacy extensions solve this problem. Basically, you get a whole bunch of addresses. One based on your MAC address so you can port forward/allow incoming connections in the firewall, and then a bunch of rotating random addresses used for outgoing connections. People that know your prefix and MAC address can find your listening PC, but websites won’t get your MAC address.

        As for fingerprinting, thanks to NAT slipstreaming you can choose between “video calling software breaks” and “every malicious ad can access any port on your device” or in some extreme cases “every malicious ad can access any device in your network”. Some websites have also been caught scanning IPv4 networks to figure out where your router lives using standard Javascript, so your IPv4 network isn’t any better protected. At least with IPv6 a website can’t take ten seconds to scan 255 addresses and figure out how many devices are on your network!

        • just_an_average_joe@lemmy.dbzer0.com
          link
          fedilink
          English
          arrow-up
          0
          ·
          2 months ago

          Noobie question, wouldn’t the ISP decide what your outgoing IPv6 address is? Like they do with IPv4? I mean no matter how many times I restart my router, my public IP remains the same so I always thought it was assigned by them.

          • Skull giver@popplesburger.hilciferous.nl
            link
            fedilink
            arrow-up
            0
            ·
            edit-2
            2 months ago

            They assign a prefix. For IPv4 this is usually a /32, or 1 single address, though it’s possible to assign larger ranges. I’ve seen businesses with a /28 on IPv4 for example.

            The end device picks what IP addresses within the prefix are used for what. For instance, the server rack may use three IP addresses, the office one, and maybe the IoT network also gets one.

            With IPv6 you should be getting a /56 or a /48. In other words, they pick the first 48 to 56 bits of your IP addresses, basically leaving 80 to 72 bytes for the end device to distribute amongst itself. You could give the first device address one and start counting up if you wanted to, but that’d come with the annoying edge case of needing to track what numbers are already in use. If you like a false sense of control, DHCPv6 is what manages this.

            SLAAC (the “everything works by default” approach) requires a /64 (64 bits of local address space), so if you want to do routing (say, attach a wireless access point or a second router) and you don’t want to do IPv4 hacks that hide IP addresses from each other, you need a few networks. That’s why you get 8 to 16 bits of network space, so you can assign 256 to 65536 networks yourself in case you have weird requirements.

            If your ISP assigns you 2003:123:def:abc::/48, then you can pick whether you want to assign 2003:123:def:abc::beef:cafe or any random address that starts with the ISP prefix. You have enough space to give every connection of every device on every WiFi network its own IP address every second of the day, but usually addresses are rotated only once per day.

            The ISP picking the address range does come with a huge downside, and that’s that you can’t really use internal IP addresses anymore. To fix that, you can set up a so-called ULA. That’s basically a service anywhere on the network that shouts “hey, if you can’t, you can pick any address from fdef:abc:abc:abc::/96”. By default, devices will pick two addresses (one based on the MAC address and a temporary one), and you can use the one based on the MAC address to plug into your local DNS server.

            That way, even if you switch ISPs to one that only does IPv4, you can still use a Pi-Hole at fdef:abc:abc:abc::123:456:789 as your DNS server. These ULAs are completely local, so they can’t be reached from the internet.

            Though, just to be sure, you should generate a random ULA prefix (there’s an algorithm in the standard, but there are sites to do it for you) just in case you have bad luck and connect to someone else’s wifi who also thought it’d be funny to use fdef:cafe:babe:b00b::/96 as the local prefix. Completely optional, but best practice.

            • saiarcot895@programming.dev
              link
              fedilink
              English
              arrow-up
              0
              ·
              2 months ago

              For reference, in the US, Comcast only gives up to a /60 for residential connections. It’s still fine for most use cases, but it does feel a bit like doing a bit of penny pinching when you’re wondering if you have enough /64’s for how your network is going to be set up.

              • Skull giver@popplesburger.hilciferous.nl
                link
                fedilink
                arrow-up
                0
                ·
                2 months ago

                The standards bodies used to recommend /48 as a default and have scaled down to /56. Anything smaller makes sense for stuff like servers but there’s no good reason to do it. I guess penny-pinching is a reason, but it’s not the norm.

                If all else fails, hurricane electric will hand out /48s for free, you just can’t use them to watch things like Netflix.

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

        That was so insane - “we need a unique number, let’s just use the MAC” - it was like people didn’t even think through any of the implications when making ipv6 address schemes.

        Similar with the address proposals that ignored the need to minimise the size of core internet routing tables so that they would fit in routers’ memory.

        • Skull giver@popplesburger.hilciferous.nl
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          That proposal was made when every computer hooked straight into the internet without a firewall. Every device already had a unique IP address that was globally routable and you needed to race to a firewall download page before a scanner would infect your computer (you had about five minutes, much less if you had the network cable plugged in during setup).

          The routing table size reduction has always been stupid. The protocol should not be adjusted to help the penny pinchers save on RAM. And the same problem happened to IPv4 a few years ago, because nobody learned their lesson.

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

      IPv6 has privacy addresses, though. Stuff on my network generates a new random address every day and uses that address for outgoing connections, so you can’t really track individual devices inside my network.

      • fuckwit_mcbumcrumble@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        You can just look at what addresses from that range have left the network in any given 24 hour window.

        If AAAA is constantly reaching our to aussie.zone one day, and the next day AAAB is reaching out to that address you can pretty easily connect the dots.

        • Skull giver@popplesburger.hilciferous.nl
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          But privacy addresses aren’t incremented numbers. And it doesn’t really matter if you can connect the dots, every /64 is the same as a single IPv4 address anyway. Especially for something like Lemmy where the browser will maintain a QUIC connection for ages if you want to track sessions. Besides, you have the session cookies to associate the other end even if they turn off WiFi and move to mobile data.

  • Lucy :3@feddit.org
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    I try to force everything to use IPv6. It’s a huge pain to support IPv4 as a selfhoster. I never had to specify an IP manually, DNS exists for a reason.

  • Sundial@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    People still use IPv4 because companies are slow to adopt new technologies. They see it as a huge money drain and if there is not a visible or tangible benefit to it then they won’t invest in it. IPv6 is definitely a growing technology, it’s just taking it’s sweet time. For reference, currently the IPv4 has just under a million routes in the global routing table while IPv6 has ~216K routes. About 5 years ago it was something like 100K for IPv6 and not much has changed for IPv4.

    I personally do not like the addressing of IPv6. It’s not just the length, but now you have to use colons instead of period to separate the octets which leads to extra key strokes since I have to hold shift to type in a colon. It’s a minor thing, but when networking is your bread and butter it adds up.

    There are also some other concerns with IPv6. Since IPv6 tries to simplify routing by doing things like getting rid of NATing it also opens us up to more remote attacks. It used to be harder to target a specific user or PC that’s behind a NATed IP but now everything is out in the open. I’m sure things will get better as more and more people use it and there will be changes made to the protocol however. It’s just the natural evolution of technology.

    I am very surprised to hear your ISP is not using IPv6. Seems like they’re a little behind the times. Unless they just don’t offer it to residential customers, which is still a bit behind the times too I guess.

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

      IPv6 has a policy of throwing more address space at stuff to make routing simpler, though.

      IPv4 will individually route tiny slices of address space all over the world, IPv6 just assigns a massive chunk of space in the first place and calls it a day.

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

      Iv6 doesn’t try to simplify routing and remove nat. that’s just how things work. Nat is a workaround for ipv4.

      Ipv6 is around since 1998. that’s not slow to adopt, at that point it is just plain refusal from some because of the costs you mentionend

      • Sundial@lemm.ee
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Ipv6 does simplify routing. It has less headers and therefore less overheard. IPv6 addressed the necessity of NAT by adding an obscene amount of possible IPs. Removing the necessity of NAT also simplifies routing as it’s less that the router has to do.

        Ipv6 as a concept was drafted in the 90s. It didn’t start actually being seriously used until ~2006/7ish.

        • SkyNTP@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          2 months ago

          There are other benefits of NAT, besides address range. Putting devices behind a NAT is hugely beneficial for privacy and security.

          • chris@l.roofo.cc
            link
            fedilink
            English
            arrow-up
            0
            ·
            2 months ago

            IPv6 has temporary IPs for privacy reasons. NAT is NOT a firewall. Setting up a real firewall is more secure and gives you more control without things like UPNP and NAT-PMP.

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

            NAT is not a security feature. Your firewall blocks incoming traffic, not NAT. It introduces new complexity that now needs to be solved.

            In corpo environments you have to struggle with NAT traversal for VoIP communication.

            In home networks “smart” devices attempt to solve it with shit like uPnP and suddenly you get bigger holes in your network security than before. You could find countless home network printers on shodan because of this. Even though (or maybe because) they were “behind” NAT.

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

          IPv6 addressed the necessity of NAT by adding an obscene amount of possible IPs

          that is correct but doesn’t change the fact that nat came afterwards as a workaround und now the ip stack goes back to it’s roots without a nat workaround.

          It didn’t start actually being seriously used until ~2006/7ish.

          true but still nowadays it isn’t even slow anymore just refusal

          • Sundial@lemm.ee
            link
            fedilink
            arrow-up
            0
            ·
            2 months ago

            that is correct but doesn’t change the fact that nat came afterwards as a workaround und now the ip stack goes back to it’s roots without a nat workaround.

            And the end result is a simplification for routing.

            true but still nowadays it isn’t even slow anymore just refusal

            That’s just the pace of large scale adoption of new technology. Look at some of the technologies the banking and financial industry uses as an example (ISO 8583 is a great example). ISP’s still support T1 circuits as well.

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

    We disable IPv6 often when troubleshooting a network issue. Nothing that I have seen requires IPv6, and turning it off solves more issues than we would expect even today. It’s not the first thing I’m going to try, but I’ll often do it if I have to reboot anyway.

    I also uninstall Dell Optimizer and Dell Optimizer Service on sight regardless of the issue because that evil will cause problems eventually. Best to just eradicate it on sight.

    • chris@l.roofo.cc
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      You should rather find out why things break with IPv6. The best time to make IPv6 work is now.

  • PotentialProblem@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Company currently uses IPv6! For awhile firewall rules kept biting us as we’d realize something worked in ipv4 but not IPv6 but now I forget it’s even a thing really.

    I once paid for a vpc host that was exclusively IPv6 and was shocked how many things broke. I was using it for a discord bot and the discord api didn’t even properly support IPv6 …

  • nick@midwest.social
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Cloud infra engineer here.

    Answer: I don’t think about it. Nothing fully supports it, so we pretend it doesn’t exist.

      • nick@midwest.social
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Well if you want to be the one who retrofits google cloud to support it more widely, go to town. But I’m sure as hell not going to bother, I have other work to do. And also I don’t work at google.

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

      That’s exactly my experience with it.

      Some certificates are even annoyed by IPv6 and they won’t install until i remove any trace of it from the DNS. This should also pretty much be the only occasion I’m forced to deal with IPv6, instead of glancing over it while working on the server configs.

    • Skull giver@popplesburger.hilciferous.nl
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      Also don’t forget that if you’re stuck on an old network, as long as your router replies to pings you can get a tunnel for a /48 and a bunch of /64s for free. That’s 65536 networks of 2^64 IP addresses to play around with. Make your own traceroute puns! Experiment with routers in virtual machines using real addresses! Make your IP address end in dead:beef:cafe!

      And if you complete the quiz, they’ll send you a free t-shirt. That’s pretty cool.

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

      Off topic, but I love Hurricane Electric’s website. Simple, but not ugly. Straight to the point. I find it quite charming in contrast to the hyper designed, but barely functional sites of other companies. (fuck you HPE)

  • aard@kyu.de
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Have been using it since late 90s, stopped using it with the shutdown of SixXs as there still were no viable native options in pretty all my infra locations. Recently started using it again as I finally have an ISP providing proper v6.

  • chris@l.roofo.cc
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    IPv6 after so many years still is a victim of the chicken-egg-problem. People don’t need it because services don’t support it because people don’t need it because … and so on and so forth. I try to enable IPv6 wherever I can and I didn’t have a propblem for ages. Dual stack is stable and there are actually a good amount of services that support it.

    I think we should all push to implement IPv6 so that IPv4 can finally be laid to rest. Using IPv4 makes everything a bit more expensive because it is so damn expensive to get a stupid number. If someone is really scared that every computer has a publicly routable IP, and if you really think you can not configure a firewall, there is a private IPv6 space and you can use NAT with IPv6. It’s not recomended but it’s possible. I’d still say using a firewall is not harder and just as safe.

    And there is the fact that you can make so many subnets which can make your internal network so much safer. You can controll better how packages are sent to groups because broadcast was dropped in favor of multicast. There is IPSec Support built in. Secure Neighbor Desicorvery to prevent attacks like ARP spoofing. There are a lot of reasons to implement IPv6 and even to switch to IPv6 only if possible.

    • BearOfaTime@lemm.ee
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      Why should I use IP6 in my small home network?

      Or in an SMB where there are less than 100 IP’s used on a daily basis?

      First I have to pay the cost of transition, along with the risk of things not working while I do this, and then the risk of something new being added and not working.

      There’s simply no value in these environments to switching, and a lot of risk.

      Now let’s look at Enterprise, where you have thousands of desktops, probably thousands of servers, extensive networking that already works (along with many, many devices that don’t support IP6, like printers, scanners, access control devices, surveillance hardware, etc, etc). Are you going to pay the tens of millions to transition, and assume the risk?

      IP6 is good for backbone right now. It will slowly transition into LAN for larger environments (think Enterprise when they setup new network segments, since they’re buying new hardware anyway. But only after extensive testing.

      But IP4 is just fine for small networks, and I don’t see any reason for IP6, ever, for home and SMB LAN.

      • chris@l.roofo.cc
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        Why should I use IP6 in my small home network?

        • No NAT. Especially in a home network NAT can be a hassle.
        • A bit more anonymity through changing temporary adresses.
        • Some people don’t even have a real IPv4 address anymore in their home and only connect through CGNAT. That means that if you disable IPv6 on your computer you only use CGNAT.
        • The fact that EVERYONE needs to transition to IPv6 or it doesn’t make sense.

        Or in an SMB where there are less than 100 IP’s used on a daily basis?

        • No NAT. NAT is no firewall. If you can’t set up a firewall you are honetly not qualified to be a network admin.
        • Easier VPN S2S-VPN. I had a few instances where the internal IP ranges clashed.
        • All the other advancements of IPv6
        • The fact that EVERYONE needs to transition to IPv6 or it doesn’t make sense.

        First I have to pay the cost of transition, along with the risk of things not working while I do this, and then the risk of something new being added and not working.

        You can transition step by step. Dual Stack is a thing.

        IP6 is good for backbone right now. It will slowly transition into LAN for larger environments (think Enterprise when they setup new network segments, since they’re buying new hardware anyway. But only after extensive testing.

        That makes no sense to me. Every network in itself doesn’t need IPv6. The 10.0.0.0/8 range has 16 777 216 addresses. IPv6 only makes sense if everyone uses it. We bought ourselves time with NAT and CGNAT and splitting up older ranges but that won’t last forever and is costly.

        Everyone needs to transition otherwise services will need to keep their IPv4 forever. And if the services keep their IPv4 users don’t have an incentive. Maybe we should transition BEFORE there is time pressure. Now is the time to slowly start setting everything up with enough time to plan and test firewall rules and appliances and everything else.

  • darklamer@lemmy.dbzer0.com
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Both my employer and my home ISP use IPv6 since many years now and so does all my own stuff, it’s wonderfully convenient to have a globally unique address for everything that I connect to the network.

  • mspencer712@programming.dev
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Mostly I’m scared I’ll write a firewall rule incorrectly and suddenly expose a bunch of internal infrastructure I thought wasn’t exposed.

  • wizardbeard@lemmy.dbzer0.com
    link
    fedilink
    English
    arrow-up
    0
    ·
    2 months ago

    With NAT existing, I’m not sure there’s a significant reason to switch anymore.

    Plus the “surprise” privacy and security benefits of just… not having every network connected device directly addressable by anyone else on the global network. The face of the internet and networking in general, plus the security and safety concerns around it, have changed dramatically since v6 was first created.

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

      NAT is just security by obscurity and actually not really security at all. What’s protecting you from incoming scans, etc is your network firewall. That firewall works just the same for IPv6. Blocking incoming traffic for your home network is usually the default setting in your ISP issued router anyway.

      Working as a network engineer, NAT in a large scale customer environment can quickly devolve into a clusterfuck. Many times we had week long reachability issues due to intermediate ISPs NATing unexpectedly.

      My nemesis is GCNAT, which adds another layer of NAT because some ISPs don’t have enough public IP space for all their customers to go around.

      I have a customer where their ISP just assigned one of their locations public IPv4 addresses. Neither the customer, nor the ISP owned that address space. Their logic was that this address space is registered on a different continent, so it’s basically fair game to use it themselves. Granted, they only route it internally for a MPLS network, but still…

      What I’m getting at is that NAT increases complexity and breaks properly routed end to end connections. Everyone kinda fucks up with NAT, especially ISPs (in my opinion anyway).

      I can really recommend the IPv6 study material from the major internet registries (took the v6 courses from RIPE NCC myself).

      IPv6 is so much simpler for subnetting, writing firewall rules,… IMO the addresses just look kinda clunky.

      • davel [he/him]@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        2 months ago

        NAT is just security by obscurity and actually not really security at all.

        “Security” was not the purpose of NAT. That was just a side effect that became overly relied on out of convenience.