Interviewer asked: Tell me about the principle of IP address allocation

Interviewer asked: Tell me about the principle of IP address allocation

1. Introduction to network model

In computer networks, there is the famous OSI seven-layer protocol architecture, which has clear concepts and complete theories, but it is complex and impractical. The TCP/IP architecture is different and has been widely used. Finally, combining the advantages of OSI and TCP/IP, a five-layer protocol architecture was adopted. The IP described in this article is based on the network layer in the five-layer protocol model.

2. Classified IP addresses

How to represent IP address

An IP address is a 32-bit identifier that is unique worldwide and is assigned to each interface of each host (router) on the Internet. The first field is the network number, and the second field is the host number. A host number must be unique within the network range specified by the previous network number, so an IP address is unique in the entire network. Currently, there are five types of IP addresses: A, B, C, D, and E.

  • The gray part in the A, B, and C addresses is the network number, and the first three digits of the network number are the category digits, which are 0, 10, and 110. In other words, we can determine the network category based on this category position.
  • The total length is 32 bits. Due to the different lengths of the three types of network numbers A, B, and C, the number of bytes in the host number field of class A, B, and C addresses are 3, 2, and 1 respectively (one byte is 8 bits).
  • The network number of the Class D address is 1110, which is used for multicast (one-to-many communication).
  • The network number of the Class E address is 1111, which is reserved for future use.

Therefore, we generally use the three types of network addresses, ABC. IP addresses are 32-bit binary codes. In order to improve readability, each 8 bits of the 32-bit IP address is expressed in equivalent decimal (dotted decimal), so the IP addresses commonly seen in our daily lives appear. For example: the IP address, 128.11.3.31, converted to binary is 100000000 00001011 00000011 00011111. It can be seen that the class bit is 10, which can be judged as a Class B address.

3. The scope of assignment of commonly used IP addresses

1. Network number assignment range

(1) The network number of a Class A address occupies one byte, but because one bit is the class bit, only 7 bits are available. However, due to regulations, the network field is all 0 and is a reserved field to represent the current network, and 127 (01111111) is another reserved field for loopback testing of local software.

The common 127.0.0.1 represents the local machine, and the reason is also here.

Therefore, the number of network numbers that can be assigned to a Class A address is (27-2).

(2) The network number of a Class B network address has two bytes. The first two bits are fixed at 10, leaving only 14 bits available. Since the network number will not be all 0s or all 1s no matter how these 14 bits are taken, the actual minimum Class B network address is specified as 128.1.0.0.

Therefore, the number of network numbers that can be assigned to a Class B address is (214-1).

(3) Class C addresses have a 3-byte network field number. The first three bits are fixed at 110, leaving only 21 bits available. Similarly, the smallest network address that can be assigned to a Class C address is 192.0.1.0.

Therefore, the number of network numbers that can be assigned to a Class C address is (221-1).

2. Host number assignment range

Since the host number is regulated, a host number of all 0s means that the IP address is a single network address to which "this host" is connected (for example, if a host address is 5.6.7.8, then the network address of the host is 5.0.0.0), while all 1s means "all", that is, all hosts on the network.

  • The host number of a Class A address is composed of three bytes, 24 bits, so the number of hosts that can be allocated to each Class A network is (224-2).
  • The host number of a Class B address is composed of two bytes, 16 bits, so the number of hosts that can be allocated in each Class B network is (216-2).
  • The host number of a Class C address is composed of one byte, 8 bits, so the number of hosts that can be allocated to each Class C network is (28-2).

3. Summarize the IP assignment range

From the above description of the assignment of network numbers and host numbers, we can see that there are a total of 232 addresses in the IP address space.

  • There are (27-2)∗∗(224-2) class A addresses, about 231, accounting for 50%;
  • There are (214-1)∗∗(216-2) class B addresses, about 230, accounting for 25%;
  • There are (221-1)∗∗(28-2) class C addresses, about 229, accounting for 12.5%;

  • So a Class A IP address can be represented as nxyzn.xyz, where 1≤n≤1261≤n≤126, 0≤x,y,z≤2550≤x,y,z≤255, and x,y,zx,y,z cannot be 0 or 255 at the same time.
  • So a Class B IP address nmxyn.mxy can be represented like this, if 128≤n≤191128≤n≤191, 0≤m≤2550≤m≤255, 0≤x,y≤2550≤x,y≤255, where I. when n=128n=128, m≠0m≠0; II. x,yx,y cannot be 0 at the same time and cannot be 255 at the same time;
  • So a Class C IP address can be represented as nmkxn.mkx, if 192≤n≤223192≤n≤223, 0≤m,k≤2550≤m,k≤255, 1≤x≤2541≤x≤254, where when n=192n=192, k≠0k≠0.

4. IP address and hardware address

From a hierarchical perspective, the hardware address is the address used by the data link layer and the physical layer (often called the MAC address), while the IP address is the address used by the network layer and the layers above it, and is a logical address. At the network layer, we transmit data packets from IP1 to IP2. No matter how many times we forward them, from the network layer's perspective, the source address is always IP1 and the destination address is always IP2. However, from the data link layer's perspective, this is obviously not the case. These are physical addresses, and it is very likely that the source node will go through multiple physical address changes at intermediate nodes before reaching the destination node. The conversion between IP addresses and physical addresses requires two important protocols, ARP (Address Resolution Protocol) and RARP (Reverse Address Resolution Protocol). IP addresses are converted into physical addresses through ARP, and physical addresses can be converted into corresponding IP addresses through RARP.

4. Subnets and Supernets

Simply put, it is about how to manage multiple hosts under one IP address.

1. Subnet

Now assume such a scenario, a datagram with a destination address of 145.13.3.10 (in subnet 145.13.3.0) has reached router R1 (145.13.0.0), then how does this router forward it to 145.13.3.0? We don't know whether the destination address has been subnetted. This leads to the concept of subnet mask, which is also 32 bits, consisting of a string of 1s and 0s. The 1 in the subnet mask corresponds to the network number position + subnet network number position in the IP address, and the 0 in the subnet mask corresponds to the current host number position in the IP address. We only need to perform an "AND" operation on the IP address and the subnet mask. If the subnet is divided, the network address of the subnet to be found will be obtained immediately. If the subnet is not divided (there is a default subnet mask), the network address of the IP address can be directly obtained.

  • The default subnet mask for a Class A address is 255.0.0.0
  • The default subnet mask for a Class B address is 255.255.0.0
  • The default subnet mask for a Class C address is 255.255.255.0

2. Supernet

Classless addressing CIDR uses variable-length subnet masks to further improve the resource utilization of IP addresses. It has two characteristics:

  • First, CIRD eliminates the traditional ABC class address and the concept of subnet division. It divides the 32-bit IP address into two parts: the network prefix and the remaining part. The representation method is to add "/" after the IP address and then write the number of bits occupied by the network prefix.
  • Second, group the IP addresses with the same network prefix into a CIDR address block. For example, the IP address 128.14.35.7/20 is represented in binary as 100000000 00001110 00100011 00000111, so we can easily conclude that the smallest address in this block is 128.14.32.0, i.e. 100000000 00001110 00100000 00000000, and the largest address is 128.14.47.255, i.e. 100000000 00001110 00101111 11111111.

To facilitate routing selection, CIDR uses a 32-bit address mask. The number of 1s is the length of the network prefix. For example, the address mask of the /20 address block in the above example is 11111111 11111111 11110000 00000000. Therefore, it can be seen that the shorter the network prefix, the more addresses its address block contains. This allows the IPv4 address space to be allocated more effectively according to actual conditions.

<<:  2G and 3G network retirement countdown, your old mobile phone may have to be thrown away

>>:  How 5G frequencies affect range and speed

Recommend

Graphical explanation | A brief history of what is HTTP

[[344212]] This article is reprinted from the WeC...

How 5G will impact payment processing in 2021 and beyond

[[437603]] If you follow current events, you’ve p...

Network protocols TCP and UDP

First of all, I want to emphasize that the TCP/IP...

The iPhone 12 finally uses 5G, but is it really too late?

At the Apple conference this morning, the most ex...

How to Understand Fog Computing and Edge Computing in Simple Terms

Over the past few decades, there has been a huge ...

Why does the cluster need an Overlay network?

Engineers who have a little knowledge of computer...

How can operators play the 5G messaging card well?

5G is a technology that can rewrite the "rul...

MWC19 Shanghai | Ruijie and the operator industry jointly create a 5G world

[[268489]] Mobile communications, starting with G...