With this subnet division summary, I know all about subnet mask design~

With this subnet division summary, I know all about subnet mask design~

1. Subnet Division

Subnet division is actually the process of designing subnet masks.

The subnet mask is mainly used to distinguish the network ID and host ID in the IP address. It is used to shield a part of the IP address and separate the network ID and host ID from the IP address. The subnet mask is a value composed of 4 decimal numbers separated by ".", such as 255.255.255.0. If it is written in binary form: 11111111.11111111.11111111.000000000, where the "1" bit separates the network ID, and the "0" bit separates the host ID, that is, the network number is obtained by performing an "AND" logical operation on the IP address and the subnet mask.

For example, assuming the IP address is 192.160.4.1 and the subnet mask is 255.255.255.0, the network ID is 192.160.4.0 and the host ID is 0.0.0.1.

If the computer network IDs are different, it means that they are not in the same physical subnet and need to be forwarded through a router to exchange data.

Each class of address has a default subnet mask: 255.0.0.0 for Class A, 255.255.0.0 for Class B, and 255.255.255.0 for Class C.

In addition to the above representation method, it can also be represented by the number of "1" bits in the subnet mask.

By default, class A addresses are 8 bits, class B addresses are 16 bits, and class C addresses are 24 bits.

For example, an address of Class A is 12.10.10.3/8. The last "8" here indicates that the subnet mask of the address is 8 bits, and 199.42.26.0/28 means that the subnet mask of the network 199.42.26.0 has 28 bits.

If you want to create subnets on a network, you add some bits to the default subnet mask, which reduces the number of bits used for host addresses.

The number of bits added to the mask determines the subnets that can be configured.

Thus, in a subnetted network, each address consists of a network address, a subnet bit, and a host address.

2. Address Classification

1. Classful address division

  • Class A IP segment 1.0.0.0 to 126.255.255.255 (segments 0 and 127 are not used)
  • Class B IP range 128.0.0.0 to 191.255.255.255
  • Class C IP range 192.0.0.0 to 223.255.255.255

2. Private network address division

The private network addresses mainly used in the current network are:

  • Class A: 10.0.0.1--10.255.255.254
  • Class B: 172.16.0.0.1--172.31.255.254
  • Class C: 192.168.0.1--192.168.255.254

3. Same network segment

Here, let me tell you what exactly is considered the same network segment.

In order to be in the same network segment, the network ID must be the same, so how to calculate the network ID?

The network identification algorithms for various types of IP are different.

  • For Category A, only the first paragraph is counted.
  • Category B, only the first and second paragraphs are counted.
  • Category C includes the first, second and third paragraphs.

The algorithm just needs to AND each digit of the IP and subnet mask.

AND method: 0 and 1 = 0 and 0 = 0 and 1 = 1

Such as: And192.168.0.1, 255.255.255.0, first convert to binary, and then AND each bit of IP11000000.10101000.00000000.00000001

Subnet mask 111111111.111111111.11111111.00000000

The AND result is 11000000.10101000.00000000.00000000

Convert to decimal 192.168.0.0, which is the network ID. Then reverse the subnet mask, which is 00000000.00000000.00000000.11111111, and IPAND to get the result 00000000.00000000.00000000.00000001, convert to decimal, which is 0.0.0.1, and 0.0.0.1 is the host ID. To be in the same network segment, the network ID must be the same.

Let's take a look at this Class B IP that has been changed to the default subnet mask.

For example, IP: 188.188.0.111, 188.188.5.222, subnet mask is set to 255.255.254.0, are they in the same network segment? First convert these into binary

  • 188.188.0.11110111100.10111100.00000000.01101111
  • 188.188.5.22210111100.10111100.00000101.11011110
  • 255.255.254.011111111.11111111.11111110.00000000

AND respectively, we get

  • 10111100.10111100.00000000.00000000
  • 10111100.10111100.00000100.00000000

The network identifiers are different (see the digit 1 after 255.255.254.0 is converted into binary, so you can see the difference), that is, they are not in the same network segment.

You know how to determine whether they are in the same network segment, right? Now, let's do something practical.

A company has 530 computers forming a peer-to-peer LAN. What are the most appropriate subnet mask and IP settings?

I won't talk about the subnet mask. The result calculated earlier is 11111111.11111111.11111100.00000000, which is 255.255.252.0

4. Class B Address

Select a Class B IP segment, here we choose 188.188.xx.

In this way, the first two segments of the IP are determined. The key is to determine the third segment. As long as the network identifier is the same, it will be fine. Let's first determine the network number. (We match the 1 in the subnet mask with the ? in the IP, and the 0 with the *, as follows:)

  • 255.255.252.011111111.11111111.11111100.00000000
  • 188.188.x.x10111100.10111100.??????**.********

Network ID 10111100.10111100.??????00.00000000

00000010, 00000011, 000000010, 00000011, converted to decimal, are 1, 2, and 3 respectively. In this way, the third segment of the IP is also determined, and the IP address is 10111100.10111100.000000**.********. There are 530 computers in total. The last segment of the IP from 1 to 254 can be divided into 254 computers, 530/254=2.086. Using the carry 1 method, we get the integer 3. In this way, we have determined that the third segment of the IP must be divided into three different numbers, that is to say, fill the ** in 000000** with 1 and 0 three times, and the numbers are different each time. As for what to fill in, it is up to us, such as 00000001, 00000010, 00000011, converted to decimal, are 1, 2, and 3 respectively. In this way, the third segment is also determined, and the IP address can be 10111100.10111100.000000**.******** Divide it into 188.188.1.y, 188.188.2.y, 188.188.3.y, fill in any number in the y place, as long as it is within the range of 1 to 254, and the IP addresses of these 530 computers are different.

Some people may say that since the algorithm is so troublesome, just use Class A IP and Class A default subnet mask.

But what I want to tell you is that since the number of hosts with Class A IP and Class A default subnet mask is too large, doing this is undoubtedly like looking for a needle in a haystack. If the LAN access volume is too frequent and too large at the same time, it will affect efficiency.

Therefore, it is best to set the IP and subnet mask that suits you^_^

3. Subnet Summary

Subnetting can further divide IP addresses into smaller networks.

If you want to divide an IP address into smaller networks, you need to move the host bits to the network bits, which is also called borrowing or renting bits.

The number of host bits used determines how many subnets the IP is divided into, and the remaining number of host bits determines the number of hosts in each subnet after the division (host bits all "0" or all "1" are unusable, all "0" represents a subnet address, and all "1" represents a broadcast address)

For example, divide the network segment 192.168.1.0/24 into four subnets

The calculation method is:

  • 2 to the power of x = number of subnets (x represents the number of bits borrowed from the host)
  • 2 to the power of y - 2 = number of available hosts (y represents the number of remaining host positions)

From the above formula we can get:

  • Number of subnets = 2² = 4
  • Number of hosts = 2ⁿ-2 = 62

After calculating the number of subnets and hosts, it is very simple to determine the starting and ending addresses of each subnet, that is, the subnet address and broadcast address. You can do this

We have calculated that the number of IPs in each subnet is 64 (note that it is the number of IPs, not the number of available hosts). So we can determine that the interval between two adjacent subnets is 64. The initial subnet address starts with "0", so the next subnet is 0+64. And so on, we can get the starting address of each subnet:

  • 192.168.1.0/26
  • 192.168.1.64/26
  • 192.168.1.128/26
  • 192.168.1.192/26

The broadcast address is:

  • Subnet address + interval - 1 = broadcast address
  • 192.168.1.0~192.168.1.63(0+64-1)
  • 192.168.1.64~192.168.1.127(64+64-1)
  • 192.168.1.128~192.168.1.191(128+64-1)
  • 192.168.1.192~192.168.1.255(192+64-1)

How to calculate the subnet address and broadcast address from a given address? You can do this. If the given address is 192.168.1.137/26, first convert the IP address to binary form. The mask is 26 bits. Count 26 bits from left to right and draw a line after the 26th bit. If all bits after the line are 0, it is the subnet address. If all bits after the line are 1, it is the broadcast address.

Subnet aggregation is to aggregate multiple network segments into one network segment

For example, to aggregate the five network segments 172.16.1.0/24, 172.16.4.0/24, 172.16.5.0/24, 172.16.7.0/24, and 172.16.9.0/24 into one, you can do this:

Pick out the largest and the smallest IP address from these IP addresses, then convert the two different sets of numbers in the two IP addresses into binary form and compare them one by one, using vertical lines to distinguish the same and different ones.

All the different bits, that is, all the bits after the vertical line, are filled with 0, and the obtained address is the network address of the summarized network segment, which is 172.16.0.0.

Before aggregation, the mask of each IP is 24 bits, and after aggregation, the mask is 20 bits, that is, the bits before the vertical line are the number of bits in the mask.

<<:  Network Access Control-Network Address Translation

>>:  6 places that provide free certificates to upgrade your website to HTTPS for free

Recommend

Building the nervous system of smart cities | Huawei shines at the 19th CHTF

On November 16, the 19th China Hi-Tech Fair (CHTF...

WiFi speed is slow, try these 8 simple tips

Slow WiFi speed is always a headache, especially ...

Looking ahead to 2017, who will be the top network technology brand?

[Original article from 51CTO.com] In 2017, the tr...

How Industry 4.0 and 5G will change supply chain visibility

As the pandemic highlights the serious inefficien...

How Fiber Optic Networks Can Boost Small Business Operations

What is Fiber Optic? This is a form of internet t...

How to use SSL/TLS in Node.js

This article is reprinted from the WeChat public ...

What problems does each generation of HTTP protocol solve?

Recently, I briefly studied the development histo...

How to Intelligently Manage the Last Mile of SD-WAN

Note: This article describes how to intelligently...

5G drives growth in rising private mobile network market

The use of dedicated mobile networks based on LTE...

Let’s talk about 5G dynamic spectrum sharing?

What is 4G/5G dynamic spectrum sharing? Why is 4G...