Convert IPv6 addresses back to IPv4 format. Supports IPv4-mapped IPv6, 6to4, Teredo, and other transition mechanisms. Essential for backward compatibility and network troubleshooting.
Only specific IPv6 address types contain embedded IPv4 information and can be converted back to IPv4. These include:
Convert multiple IPv6 addresses at once. Enter one IPv6 address per line.
Test various IPv6 address types to see if they can be converted to IPv4:
Converting IPv6 addresses back to IPv4 is possible only for specific IPv6 address types that contain embedded IPv4 information. This conversion is essential for backward compatibility and network troubleshooting.
| IPv6 Address Type | Prefix/Range | IPv4 Location | Convertibility | Example |
|---|---|---|---|---|
| IPv4-mapped | ::ffff:0:0/96 | Last 32 bits | Full | ::ffff:192.168.1.1 |
| IPv4-compatible | ::/96 | Last 32 bits | Deprecated | ::192.168.1.1 |
| 6to4 | 2002::/16 | Bits 16-47 (hextets 1-2) | Full | 2002:c0a8:101:: |
| Teredo | 2001::/32 | Bits 32-63 (obfuscated) | Partial* | 2001:0:c0a8:101:: |
| SIIT | 64:ff9b::/96 | Last 32 bits | Full | 64:ff9b::c0a8:101 |
| ISATAP | fe80::/10 + 5efe: | Last 32 bits | Full | fe80::5efe:c0a8:101 |
| Pure IPv6 | All others | N/A | None | 2001:db8::1 |
* Teredo addresses include obfuscation; conversion shows the original IPv4 before obfuscation. Real Teredo addresses (RFC 4380) contain additional information not shown here.
IPv4-mapped addresses (::ffff:0:0/96): Extract the last 32 bits. If in IPv4 notation (::ffff:192.168.1.1), parse directly. If in hex notation (::ffff:c0a8:101), convert each hex pair to decimal.
6to4 addresses (2002::/16): Extract hextets 1 and 2 (the 32 bits after the 2002: prefix). Convert the 4-hextet value to IPv4 (e.g., c0a8:0101 → 192.168.1.1).
Teredo addresses (2001::/32): Extract and de-obfuscate hextets 2 and 3. Teredo uses XOR obfuscation with 0xffffffff, so the original IPv4 is the complement of the embedded value. Note: This is a simplified representation; real Teredo addresses include server address, flags, and UDP port information.
Conversion Tool Features: