
Summarise this article with:
On 28 March 2026, Google logged 50.10% of its users connecting over native IPv6, the first time the protocol has crossed a global majority by that measure. That single number represents nearly 30 years of slow, frustrating infrastructure work. It also raises a practical question: what does it mean for you, and does your connection even use IPv6 yet?

Why IPv4 Ran Out
IPv4 was standardized in 1981 through RFC 791. Its 32-bit address space yields exactly 4,294,967,296 possible addresses. That seemed enormous for a research network connecting a few hundred universities. It proved nowhere near enough for a planet of smartphones, smart thermostats, and cloud servers.
The Internet Assigned Numbers Authority allocated the last blocks of IPv4 addresses to the Regional Internet Registries in February 2011. The registries themselves ran through their allocations over the following years. Today, IPv4 addresses trade on a secondary market, with purchase prices running roughly $35-55 per address for mid-size blocks as of 2025, a drop from a 2021-2022 peak above $60 but still a real cost for organizations that need them.
Several stopgap measures kept IPv4 alive long past exhaustion:
- CIDR (1993) replaced wasteful classful allocation, letting registries hand out exactly the block sizes networks needed.
- NAT (1994) let an entire home or office share one public IP behind a router. Your home connection almost certainly uses this right now. You can check by comparing your device's local address to the public IP on our What Is My IP page: if they differ, you are behind NAT.
- Private address ranges (RFC 1918) reserved 10.0.0.0/8, 172.16.0.0/12, and 192.168.0.0/16 for internal use only, greatly reducing demand for public addresses.
NAT bought time, but it broke the internet's original end-to-end design. Devices behind NAT cannot easily accept incoming connections. Peer-to-peer apps, gaming, VoIP, and IoT all pay complexity costs because of it. Carrier-Grade NAT (CGNAT), where mobile carriers stack thousands of subscribers behind a single IP, makes this worse.
What IPv6 Actually Is
IPv6 uses 128-bit addresses, yielding 2^128 (approximately 3.4 x 10^38) possible addresses. The practical consequence: every device on Earth can have a globally routable address with no NAT required. Running out is not a concern on any human timescale.
IPv6 addresses look different from IPv4. Where IPv4 writes four decimal octets separated by dots (192.168.1.1), IPv6 writes eight groups of four hexadecimal digits separated by colons (2001:0db8:85a3:0000:0000:8a2e:0370:7334). Two abbreviation rules apply:
- Leading zeros in each group can be dropped:
2001:0db8becomes2001:db8 - One consecutive run of all-zero groups can be replaced with
:::2001:0db8:0000:0000:0000:0000:0000:0001becomes2001:db8::1
| Feature | IPv4 | IPv6 |
|---|---|---|
| Address bits | 32 | 128 |
| Total addresses | ~4.3 billion | ~3.4 x 10^38 |
| Format | Dotted decimal | Colon-separated hex |
| NAT required | Often | No |
Beyond address space, IPv6 ships with several architectural improvements:
No mandatory NAT. Every device can hold a globally unique address, restoring true end-to-end connectivity. Peer-to-peer apps, VoIP, and IoT deployments all benefit.
Fixed-length header. The IPv6 header is a flat 40 bytes with fewer fields than IPv4's variable-length header. Extension headers handle optional features separately, which simplifies router processing.
Stateless Address Autoconfiguration (SLAAC). Devices can generate their own IPv6 addresses from a router advertisement, without needing a DHCP server. Large networks and IoT fleets love this.
Randomized privacy addresses. Early IPv6 implementations embedded your device's MAC address in its IP, creating a persistent tracking identifier. Modern stacks follow RFC 4941 and rotate temporary addresses automatically, limiting that exposure. You can read more about how IP addresses identify you in What Is My IP Address? A Plain-English Explanation.
Better multicast. IPv6 replaces broadcast traffic (which floods every device on a network) with multicast (which reaches only interested receivers), cutting unnecessary local traffic.
The Global Picture in 2026
Google crossed 50% on 28 March 2026. APNIC, using a different methodology that weights by World Bank internet-usage estimates, puts the global figure closer to 42%. The gap is methodological, not a contradiction: Google's number reflects the share of users who happened to connect to Google that day; APNIC's number adjusts for the uneven sample to better represent the global internet population. The truth sits somewhere between 42 and 50 percent.
Both numbers are striking for the same reason: in 2016, Google's measure was below 15%. The doubling-and-then-some over a decade reflects massive infrastructure investment by mobile carriers and content providers.
Who is ahead and who is behind varies by infrastructure history:
- France, Germany, and India run the majority of their Google traffic over IPv6. France has reached roughly 80-86% by Google's per-country measure (February 2026). Reliance Jio deployed IPv6 as the default on its greenfield mobile network, pulling India's national average well above the global figure.
- The United States, Brazil, and Japan sit near the global midpoint, around 47-50% by Google's measure.
- China reports a different picture depending on the metric: the government's December 2025 white paper states that 77% of internet users had active IPv6 access by September 2025, though traffic share (the Google-comparable measure) is substantially lower because much of that access goes unused.
- Russia, most of Africa, and parts of Central Asia remain in the low single digits by most measures.
The pattern reflects something specific about mobile: carriers that deployed 4G/5G networks recently, or in regions where laying fresh fiber was cheaper than upgrading copper, had every incentive to go IPv6-native from day one. Older carrier infrastructure that runs on IPv4 is expensive to migrate.
Mobile carriers are the biggest single driver of adoption globally. T-Mobile and Verizon in the US, Reliance Jio in India, and Orange and Free in France all route the majority of their mobile traffic over IPv6. Major content providers (Google, Meta, Netflix, Amazon) have fully supported IPv6 for years. Cloud platforms (AWS, Google Cloud, Azure) offer it across all services.
What This Means for You
For most home users, IPv6 is already working silently in the background. In my testing on a typical US residential connection, the phone connects over IPv6 while the laptop falls back to IPv4 depending on which Wi-Fi band it negotiates. You may have both already.
The fastest way to find out is to check your IP address directly. Visit What Is My IP and look at whether you have an IPv6 address alongside your IPv4 one. Then use IPv6 Tools to run a connectivity test and see if end-to-end IPv6 actually reaches you.
If you want to understand what is happening with your DNS queries as part of this, DNS Leak Test and DNS Lookup can show whether your resolver handles AAAA records correctly.
If you have no IPv6 address, the bottleneck is almost certainly your ISP, not your device. Windows 10/11, macOS, Linux, iOS, and Android all support IPv6 out of the box. Routers sold in the last five years typically support DHCPv6 and SLAAC. If your ISP has not enabled IPv6, you can request it; some ISPs have it available but turned off by default.
Transitioning to IPv6: For Sysadmins and Developers
For network administrators, the recommended path remains dual-stack: run IPv4 and IPv6 simultaneously, letting IPv4 serve as fallback while IPv6 carries what it can. This avoids a hard cutover and lets you learn without outages.
Key steps:
- Audit your stack. Old firewalls, load balancers, and logging systems may not handle IPv6. Check before you enable it.
- Add AAAA records to DNS. Use DNS Lookup to verify that your records propagate correctly.
- Set firewall rules explicitly for IPv6. IPv6 has no NAT by default, which means every device is potentially reachable. Your perimeter rules need to be deliberate, not inherited from IPv4.
- Test connectivity. Use Traceroute and IPv6 Tools to verify end-to-end IPv6 reachability from outside your network.
For developers:
- Use address-family-agnostic APIs (
getaddrinfo()rather thangethostbyname()) so your code handles either protocol. - Store IP addresses in fields sized for IPv6: at least 45 characters for text, 128 bits for binary.
- Test against IPv6-only connections to catch any hardcoded IPv4 assumptions.
IPv6 Security: What Changes
IPv6 is not inherently more or less secure than IPv4, but it reshapes the threat model in ways that catch teams off guard.
Without NAT, every device is globally routable by default. That is the intended design, but it means a firewall gap that would have been invisible behind a NAT device now exposes a host directly. Explicit perimeter rules matter more than ever.
Other things to watch:
- Rogue Router Advertisements. A malicious device on a local network can send RA messages to redirect traffic. RA Guard on managed switches mitigates this.
- Extension header abuse. Attackers can craft packets with unusual extension header chains to confuse stateful firewalls or cause resource exhaustion.
- Privacy addresses. Confirm that your OS is rotating temporary addresses (RFC 4941) if you care about tracking resistance. Most modern OSes do this automatically.
Use IP Lookup to examine IPv6 address details and Blacklist Check to verify your IPv6 prefixes are not listed on reputation blocklists.
FAQ
Is IPv6 faster than IPv4?
Not inherently. Throughput and latency depend far more on physical infrastructure and routing than on the IP version. In some networks IPv6 paths are better-optimized because they are newer infrastructure, giving a marginal speed benefit. In others, dual-stack adds a small amount of connection-setup overhead. The difference in practice is usually unmeasurable for end users.
Does a VPN work with IPv6?
Many VPNs handle only IPv4, which means your IPv6 traffic can bypass the tunnel entirely and reveal your real IP address. This is called an IPv6 leak. Use VPN Leak Test to check whether your VPN is actually protecting both protocol versions. A trustworthy VPN either routes IPv6 through the tunnel or blocks it entirely.
Why does my device have both an IPv4 and an IPv6 address?
That is dual-stack operation, and it is the current industry standard. Your device uses whichever protocol the destination supports, with a preference mechanism (RFC 6724) that typically picks IPv6 when available. The IPv4 address is there as a fallback for servers and services that have not yet added IPv6 support.
Why does my ISP still not offer IPv6?
IPv6 deployment requires ISPs to upgrade or replace customer-premises equipment, provision new address blocks, retrain support staff, and update billing and monitoring systems. Smaller ISPs in regions with cheap IPv4 availability (through legacy allocations or a secondary market) have had little financial pressure to move. Regulatory mandates in some countries have accelerated adoption: France's regulator, for example, pushed ISPs to enable IPv6 by default, contributing to its 80%+ rate.
Can I run IPv6 without my ISP supporting it?
Yes, using a tunnel. Services like Hurricane Electric's Tunnel Broker (tunnelbroker.net) provide a free IPv6 tunnel over your existing IPv4 connection, giving your network a routable IPv6 prefix. This is useful for testing but adds latency from the tunneling overhead and is not a long-term substitute for native ISP support.
Sources
WhatIsMyLocation Team
Our team of network engineers and web developers builds and maintains 25+ free networking and location tools used by thousands of users every month. Every article is reviewed for technical accuracy using real-world testing with our own tools.
Related Articles
Try Our Location Tools
Find your IP address, GPS coordinates, and more with our free tools.