IPV6 Address – What Does a Private IPV6 Address Look Like?

ipip addressipv6

I'm doing a presentation on how the internet works, and I'm wondering if there is even such a thing as a private IPV6 address. If so, what does a private IPV6 address looks like?

Best Answer

IPv6 does not have Private addresses the way IPv4 does. There once was IPv6 Site Local addressing (fec0::/10), but that was deprecated in favor of Unique Local Addressing (fc00::/7). ULA goes a long way to solving the problem presented by IPv4 Private addressing where it is very common for different sites to use the same Private addressing.

With ULA, the addressing is divided into two different parts:

  1. fc00::/8 is reserved for future use, presumably by a Global authority to assign
  2. fd00::/8 is available for local assignment, with certain restrictions, such as the next 40 bits must be randomly assigned in order to achieve a large degree of uniqueness.

The uniqueness goes a long way to prevent the problem with connecting sites that have overlapping addressing. This is a common problem with IPv4 Private addressing. Companies that merge will almost surely have overlapping IPv4 addressing, and another kludge is necessary until one or both companies can readdress (a giant project that can last years).

Having said all that. There is no NAT standard for IPv6* the way there is for IPv4. For use on the public Internet, hosts are assigned Global IPv6 addresses, which restores the end-to-end paradigm of the original IP design that IPv4 NAPT breaks.


*There is an experimental RFC for IPv6 NAT, but it is a one-to-one NAT with restrictions to preserve the IP end-to-end paradigm. The RFC forbids NAPT, which is the common NAT variant used for IPv4.