this post was submitted on 29 Jun 2026
124 points (94.9% liked)

Technology

85873 readers
3734 users here now

This is a most excellent place for technology news and articles.


Our Rules


  1. Follow the lemmy.world rules.
  2. Only tech related news or articles.
  3. Be excellent to each other!
  4. Mod approved content bots can post up to 10 articles per day.
  5. Threads asking for personal tech support may be deleted.
  6. Politics threads may be removed.
  7. No memes allowed as posts, OK to post as comments.
  8. Only approved bots from the list below, this includes using AI responses and summaries. To ask if your bot can be added please contact a mod.
  9. Check for duplicates before posting, duplicates may be removed
  10. Accounts 7 days and younger will have their posts automatically removed.

Approved Bots


founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] floquant@lemmy.dbzer0.com 9 points 14 hours ago (1 children)

That's not how header backward compatibility works. IPv4 routers would discard the packet, not prepend zeroes.

[–] ShredderFeeder@shredderfood.net 1 points 13 hours ago (2 children)

it would obviously involve code updates for compability, and I don't pretend to know how it would work long term, but it makes the most sense.. By prepending the zeros, you expand the number of networks dramatically.

I would guess that no matter what, everything gets an upgrade... But I think this might make it more seamless.

[–] floquant@lemmy.dbzer0.com 7 points 12 hours ago* (last edited 12 hours ago) (1 children)

Everyone seems to think that IPv6 is a complicated solution to a simple problem, it's not. If you want to learn more, I managed to track down an article I read a while ago from one of the original IPng engineers. https://github.com/becarpenter/book6/blob/main/01.%20Introduction%20and%20Foreword/Why%20IPv6%20is%20so%20complicated.md

[–] ernest314@lemmy.zip 1 points 10 hours ago

we both thought of the same article haha

[–] jj4211@lemmy.world 1 points 9 hours ago

Basically people see an address like fdec:46f7:9b7f:1::3:20 and run screaming away about the complexity, seeing the address as a comprehensive indication of complexity, even though the real challenges lie underneath.

The whole 'traditional ipv4 just has 0.0.0.0' stuck in front of it is essentially exactly the same idea as, say 64:ff9b::142.251.152.119. Now there's also the likes of ffff::142.251.152.119 but that's just so software can pretend to speak IPv6 when the OS is really doing only IPv4. So they needed another prefix to indicate the network doing the v6 to v4 translation instead of the OS.

Anyway, the thing is that while it cosmetically looks more similar, it's not really solving the fundamental compatibility situation. It just "looks nicer" because it sticks to dotted decimals. However in practice, would fdec:46f7:9b7f:1::3:20 really be somehow less usable than, say, 120.30.204.78.167.144.120.209? The simple reality is that the 4 octet decimal pushed human usability enough as it was, and going to sufficient octets just brings it out of mere mortal reach. If you did want to say have more friendly local network addresses (the vast vast majority of human memorized IP addresses), then technically you could have fd::1, fd::2, fd::3, and those would all work and be super easy to remember (the ULA RFC says you are supposed to toss in 40 bits of random for good reason, but if you were using 10.0.0.1 style addresses, you would be no worse off with fd::1, fd::2, etc). You can even trivially have them live alongside 'real' global IP addresses, but ignore them whenever you want to just hand type a local IP address. You can even have something like a hex DNS. fd::f00d, fd::beef, fd::d00d, and so many more for your pleasure.

There's more features in IPv6 but you can ignore them since they are mostly for the machines to wrangle (the fe80:: addresses for example).