CIDR address category

Source: Internet
Author: User

CIDR (Classless Inter Domain Routing) improves the traditional IPv4 address classification. In traditional IP Classification, IP addresses are directly mapped to the default category, thus dividing the Internet into networks. CIDR adds a subnet mask (subnet masking) to the routing table to further segment the network. With CIDR, We can flexibly allocate IP addresses in a certain range to a network. 1) IP address classification in the IP race, I mentioned that IP addresses can be divided into the following categories: IP class From To Subnet Mask A 1.0.0.0 126.255.255.255 255.0.0.0 B 128.0.0.0 191.255.255.255 255.255.0.0 C 192.0.0.0 223.255.255.255.255 255.255.0 this is the initial IPv4 address classification design. An IPv4 address has a total of 32 bits. It can be divided into two parts: network and host. The subnet mask (subnet mask) is used to indicate which bits represent the network part. For example, the binary representation of subnet mask 255.0.0.0 is as follows: 11111111 00000000 00000000 00000000 its first eight bits are 1, so the first eight bits of the IP address are the network part. The next 24-bit represents each host of the network. A Class A network can have 224 hosts, that is, 16777216. Because the IPv4 address has already been divided into classes, when we get an IP address, we can find its subnet mask through the above. (Class B, 216; Class C, 28) 2) IP address classification of traditional route tables facilitates IP packet transmission. When an IP packet arrives at a vro, it determines the next stop based on the route table of the vrout. A traditional route table looks like this: Destination Gateway Iface 199.165.145.0 0.0.0.0 eth0 199.165.146.0 0.0.0.0 eth1 0.0.0.0 199.165.146.8 eth1 the network topology represented by this route table is as follows: Due to IP Classification, we do not need. When we want to go to 199.165.146.17, we already know that this host is located in a class C address, so its subnet mask is 255.255.255.0, that is, 199.165.146 represents the network, and 17 represents the host. 3) CIDR route table. However, due to the default classification, the network can only exist in A, B, and C mode. If A network (such as the MIT network) is assigned A Class A address, the network will allow 16777216 hosts. If the network cannot use these IP addresses, these IP addresses cannot be used by other networks. For example, 199.165.145 must exist as a whole network. If we only have 10 hosts, more than 200 IP addresses will be wasted. The essence of CIDR is to add A subnet mask to the routing table and divide the network based on the column information, rather than the default A, B, and C. For example, Destination Gateway Genmask Iface 255.0.0.0.0 255.255.255.254 eth2 199.165.145.0 0.0.0.0 255.255.255.0 eth0 255.0.0.0.0 255.255.255.0 eth1 0.0.0.0 255.0.0.0.0 eth1 according to the first record of the route table, using ): 11000111 10100101 10010001 11111110 255.255.255.255.254 (subnet mask): 11111111 11111111 11111111 11111110 (31, 0) can be known through the subnet mask. The first 31 bits represent the network, and the last bits represent the host. The subnet mask is always composed of multiple consecutive ones, such as the 31 above. Therefore, it can be recorded as 199.165.145.254/31 to indicate both the IP address and subnet mask. Vro Splits a part of the original 199.165.145 network. This network can accommodate two computers, namely 199.165.145.254 and 199.165.145.255. The network adapter for this network is eth2. When an IP packet is directed to these two IP addresses, it will go to eth2 instead of eth0. The network topology is as follows: Using CIDR, we can split the IP addresses as needed, so as not to waste IP addresses.
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.