The IPv4 address is 32 bits, expressed in dotted decimal notation, divided into eight bits, that is, four decimal numbers from 0 to 255; the IPv6 address is 128 bits, generally expressed in dotted hexadecimal notation Indicates that it is divided into eight bits, that is, sixteen hexadecimal numbers from 0x00 to 0xff. The IPv6 address length is 128 bits, which is four times the length of the IPv4 address; an IPv6 IP address consists of 8 address sections, each section contains 16 address bits, and the total length is 16x8=128 bits.
The operating environment of this tutorial: Windows 7 system, Dell G3 computer.
The address of ipv4 is 32 bits, while the address of ipv6 is 128 bits.
What is ipv4
Internet Protocol version 4 (English: Internet Protocol version 4, IPv4), also known as Internet Communication Protocol Version 4 is the fourth revision in the development process of the Internet Protocol and the first widely deployed version of the protocol. IPv4 is the core of the Internet and the most widely used version of the Internet Protocol. Its successor version is IPv6. Until 2011, when the IANA IPv4 addresses were completely exhausted, IPv6 was still in the early stages of deployment.
The IPv4 address is 32 bits, expressed in dotted decimal notation, divided into eight bits, that is, four decimal numbers from 0 to 255, which is very common.
IPv4 uses 32-bit (4-byte) addresses, so there are only 4,294,967,296 (2) addresses in the address space. However, some addresses are reserved for special purposes, such as private networks (about 18 million addresses) and multicast addresses (about 270 million addresses), which reduces the number of addresses that can be routed on the Internet. As addresses continue to be allocated to end users, the problem of IPv4 address exhaustion is also arising. Address structure reconstruction based on classified networks, classless inter-domain routing, and network address translation significantly reduces the rate of address exhaustion. But on February 3, 2011, after the last five address blocks had been allocated to the five regional Internet registries, IANA's main address pool was exhausted.
These limitations have spurred the deployment of IPv6, which is still in its early stages of development and is the only long-term solution.
Address Format
An IPv4 address can be written in any form that represents a 32-bit integer value, but to facilitate human reading and analysis, it is usually written in dotted decimal notation form, that is, the four bytes are written separately in decimal notation, separated by dots.
The following table shows several different formats:
Format |
Value |
Conversion from dotted decimal |
---|---|---|
Dotted decimal |
192.0.2.235 |
Not applicable |
##Dotted Hexadecimal | 0xC0.0x00.0x02.0xEB | Each byte is converted to hexadecimal individually |
Dotted Octal | 0300.0000.0002.0353 | ##Each byte is converted to octal individually|
0xC00002EB | Divide the dots into ten Hexadecimal connected together | |
3221226219 | A 32-bit integer written in decimal | |
030000001353 | A 32-bit integer written in octal |
The above is the detailed content of What are the number of digits in ipv4 and ipv6 addresses?. For more information, please follow other related articles on the PHP Chinese website!