Given that IP addresses are of the form x.x.x.x where 0 <= x < 256, doesn’t this limit the number of IP addresses on the internet to 255255255*255 = 4,228,250,625? What’s going to happen when all the addresses are used up?
Actually, even fewer than that. There are certain address ranges that can’t be used on the Internet, such as broadcast addresses (all ones on a given subnet) and private network ranges (10.0.0.0 - 10.255.255.255, 172.31.0.0 - 172.16.255.255 and 192.168.0.0 - 192.168.255.255).
Hopefully, we will have moved everything to IPv6 by then. IPv6 provides truly ridiculous amounts of address space.
As I’m sure someone else will chime in soon to furhter explain. They are starting to change it over to x.x.x.x.x.x I believe. It’s called. Search (on SD or just google it) IPv6. If you go to windows update one of the updates is for IPv6.
The official format for IPv6 addresses will be bytes written in hex seperated by colons (no reason you can’t do that with IPv4, but decimal bytes seperated by dots is convention.)
An IPv6 address is 128 bits long (IPv4 is a mere 32 bits). So an IPv6 address might look like 21DA:00D3:0000:2F3B:02AA:00FF:FE28:9C5A.
According to the latest standard, leading zeroes are not required, thus, you can write: 21DA:D3:0:2F3B:2AA:FF:FE28:9C5A. But I always thought that looked a bit clunky. The stuff doesn’t line up right.
And is not actually a valid hexadecimal digit.
Smiley’s would be a much more fun addition to the IP addressing system then a couple extra bits, we could call it IPv:D.
10 years ago, when everyone was going crazy about IPv4 space disappearing, and clamoring to switch to v6, I said there was no way that would happen in the near future, and I say the same thing now.
IPv6 is not “enhanced” IPv4. It’s a whole different protocol, and completely incompatible. In order for it to work, every client, every server, and every router, every firewall, every network device out there will need to be changed to IPv6. No small feat.
Meanwhile, NAT, CIDR, and charging for IP addresses has enormously expanded the actual need. NAT in particular has made a huge difference, since 99%+ of all connected devices don’t actually need static, publicly accessible addresses.
Most importantly, there’s no financial driver to change. As addresses become more scarce, the price will go up, like any other sparce commodity. The market will make those that really need public static addresses pay for them, and those that don’t need them sell them. Ultimately, people will begin to switch for financial reasons, and that’s a good ten years away at the earliest.
errr… “Meanwhile, NAT, CIDR, and charging for IP addresses has enormously reduced the actual need.”
Wouldn’t they be able to tunnel IPv4 on IPv6 like they tunnel IP on just about every other known network technology today?
Also, a quick overview of NAT and CIDR? (I’m sure a knowledgeable person translating these concepts to layman’s terms will be much better than a google search.)
Thanks everyone for your responses.
But in the mean time Stanford [yes the university] will still own more IP addresses then India or China.
I think the switch to IPv6 will happen much sooner, and will be driven by 3rd world countries who want to get their infrastructure online. It may be 10 or so years before the developed countries will contemplate making that switch though.
CIDR - originally, IP addresses were allocated in blocks that were either Class A (in which the network prefix, the first 8 bits of the 32-bit IP address, was the same for every address in the block), Class B (16 bit prefix) or Class C (24 bit prefix). So a Class A network would have 16,777,214 contiguous addresses, Class B 65,534 addresses, and class C 254 addresses. If you needed, say, 4,000 addresses Class B was too big while Class C was too small.
Classless Inter-Domain Routing gets round this innefficiency by doing away with the limitation of network prefixes of multiples of 8 bits. So you could have a block of addresses in which the network prefix was the first 20 bits of the addresss, falling between Class B and Class C. This block would have 4,096 contiguous addresses. It all makes for more efficient allocation of public IP addresses.