Slashdot Mirror


Little Interest In Next-Gen Internet

Ant wrote in to mention a Computerworld article that is reporting on the slow acceptance of the IPv6 version of the internet. From the article: "Information Technology (IT) decision-makers, in U.S. businesses and government agencies, want better Internet security and easier network management. However, few see the next-generation Internet Protocol called IPv6 as helping them achieve their goals, according to a survey released Tuesday by Juniper Networks Inc."

6 of 351 comments (clear)

  1. Re:Give me an easy upgrade path by MartinG · · Score: 4, Informative

    What are you talking about?

    I run ipv6 and ipv4 together on the same net all the time.

    For ipv4 I have one static internet address on my router machine which provides NAT for all the other internal machines.

    For ipv6, I have a /48 allocated to me so each machine has its own real ipv6 internet address and can talk directly to all other internet ipv6 addresses. (plus, I have over 281 trillion ip addresses spare for later)

    Also the applications don't need writing for one or the other. By using the ipv6 API you automatically get support for ipv4 at the same time.

    There is an easy upgrade path. What will really get folks upgrading is when more and more sites become ipv6 only. For example I am setting up a nature webcam site which will be ipv6 only for exactly this reason.

    --
    -- MartinG To mail me: echo kewyjlcxyzvjfxbqwh | tr bcefhjklqvwxyz .@adgimnoprstu
  2. Re:Give me an easy upgrade path by iblech · · Score: 3, Informative

    Ehm, I'm currently surfing on Slashdot (IPv4), while my mail is sent using an IPv6 SMTP server. I only have *one* connection to my ISP, and only one NIC, and only one router.

    IPv4 and IPv6 can easily coexist, and IPv6-only programs don't even have to be modified to accept IPv4 connections (keyword "IPv4-mapped addresses").

    A miracle?

  3. Re:NAT works... by Anonymous Coward · · Score: 3, Informative

    The heck?

    No backward compatibility ::ffff:* is specifically for backwards compatibility with IPv4.

    ugly naming scheme (tell me , who like ::1 ?)

    And 127.0.0.1 is better? Easier to type? Shorter? This is a moot point, this is why ISC gave us bind, from which flows an endless bounty of hostnames.

    the requirement for large IP chunks for offices and stuff disappeared.

    What rock have you been hiding under? Game playing through NAT is nearly impossible. Scratch that... if there is more than one person trying to play the same MMORPG from the same IP, it IS impossible for many games.

    As someone else mentioned, connecting two NATted offices via a VPN is incredibly difficult when they both use the same 192.168.1.x addresses. The list goes on and on.

  4. India/China IPv4 myth by shani · · Score: 3, Informative

    It's just FUD. Probably from IPv6 fan-boys.

    But don't take it from me. Take it from the guy who runs the organisation that gives out addresses to India and China.

  5. Re:Need more software and support by Just+Some+Guy · · Score: 3, Informative
    there's not even a good IPv6 firewall up and running

    Ahem.

    --
    Dewey, what part of this looks like authorities should be involved?
  6. Re:Duh by quantum+bit · · Score: 4, Informative

    Not picking on you in particular cHiphead, just happened to be a convenient place to post.

    IPv6 = everybody gets their own ip address, walk up to a computer, swipe your worldID card, it switches to your personal ip.

    Except it doesn't work like that. IPv6 uses a hierarchical routing model, much stricter even than IPv4 classful routing.

    The IPv6 address you get assigned (each customer is supposed to get their own /48 subnet, we'll see) comes out of your ISPs pool, which is probably a /32 or something. The really big carriers (i.e. backbone) get /24s, and they allocate smaller subnets to smaller ISPs. The big carriers get their subnets assigned out of a pool, but of the remaining 24 bits, the first 3 specify the address type and the last 8 are reserved. That leaves 13 bits, so there can be a maximum of 8192 "big" carriers (called TLAs).

    Now, unlike the current internet, ONLY TLA's exchange routing information with each other. Every single address withing a TLA's block MUST be routable from one of its peering points. Routing between the TLA blocks may only happen at those top-level points. Small netblocks are no longer portable, so when you change ISPs, you get new addresses. No exceptions -- doesn't matter how many you have. That also means if you want to have a redundant connection for your server (multiple ISPs), it has to have multiple IP addresses too. No more BGP tricks.

    So you can't assign an IPv6 address to a person, as every terminal they use has to have a different address by definition of IPv6.

    The other common misconception is that IPv6 has more addresses (2^128) than particules in the known universe. This isn't really true as the lower 64 bits are not routable. They're usually automatically derived from the 48-bit MAC address, but can be statically assigned if so desired. Even if you did statically assign them, all (2^64)-2 of them would have to be on the same (flat) subnet, which would be one huge honkin LAN.

    So that really only leaves 2^64 routable networks, each of which MAY have a lot of machines but in practice probably won't have more than 100-200 max, and probably averaging much lower than that. If you take into account that the specification calls for each customer to be given their own 48-bit subnet (giving them 16 bits worth to route internally if they so desire), there isn't just a whole lot more room then IPv4 because so much is forced to sit unused. It is considerably more to work with yes, but not astronomically like many people seem to think.

    Ok, sorry for the rant, but just trying to make sure reasonably accurate information gets posted somewhere :)