CIDR block (Classless Inter-Domain Routing) interpretation

by XDK 4. August 2019 06:09

Explanation:

CIDR (Classless Inter-Domain Routing) notation is a compact representation of an IP address and its associated routing prefix. The notation is constructed from an IP address, a slash ('/') character, and a decimal number. The number is the count of leading 1 bits in the subnet mask. Larger values here indicate smaller networks. CIDR was developed as an alternative to traditional subnetting. The idea is that you can add a specification in the IP address itself as to the number of significant bits that make up the routing or networking portion.

IPv4 CIDR blocks interpretation :

IPv4 : a.b.c.d
Bits : 8.8.8.8 --> 32 bits

CIDR block Notation : a.b.c.d/prefix where prefix is the number of IP address the network can have.

Example : 192.168.100.0/22

IPs calculation for the above CIDR block will be [192(8bits).168(8bits).100(8bits).0(8bits)] = 2^32-22 = 2^10 = 1,024
where 32 -> 8 * 4 bits , 22 -> prefix

Total number of IPs for 192.168.100.0/22 CIDR block will be 1,024

192.168.100.0 -> 255
192.168.101.0 -> 255
192.168.102.0 -> 255
192.168.103.0 -> 255
where 0 -> 255 = 256 IPs

Total IPs = 256 * 4 = 1,024

By default, AWS uses 5 IPs out of these 256 IPs, So the number of IPs released will be 256 - 5 = 251

IPs used by AWS:

0 -> Network Address
1 -> Amazon VPC Routing
2 -> Domain Name System (DNS)
3 -> Future use by AWS
255 -> Broadcasting

In AWS, a subnet can have 1 primary CIDR block and 4 secondary CIDR blocks

Tags:

Amazon Web Service

About the author

My name is Xavier Dilip Kumar Jayaraj having 16+ years of IT experience which includes solid experience and depth Knowledge in Application Life Cycle Management, Configuration Management, Implementation and Support using TFS on-premises and Azure DevOps. I have invested in gaining DevOps knowledege to expertise with Cloud Computing providers namely Microsoft Azure and Amazon Web Services in recent years. I am very positive to learn and adapt emerging technologies to client’s environment.

Microsoft Certified: Azure Administrator Associate

Microsoft Certified: Azure DevOps Engineer Expert

DevOps Engineer Certificate Program | Transcript 

OTP-AWSD5: AWS IoT: Developing and Deploying an Internet of Things

[PCEP-30-01] PCEP – Certified Entry-Level Python Programmer

Quotes I Like

"Failure will never overtake me if my determination to succeed is strong enough."  - Dr. APJ. Abdul Kalam

"Always be yourself, express yourself, have faith in yourself, do not go out and look for a successful personality and duplicate it." - Bruce Lee

"Technology is just a tool. In terms of getting the kids working together and motivating them, the teacher is the most important." - Bill Gates

"Innovation distinguishes between a leader and a follower." - Steve Jobs

CategoryList

Disclaimer

The information provided here is based on my expreriences, troubleshooting and online/offline findings. It can be used as is on your own risk without any warranties and I impose no rights.