0
0
AWScloud~10 mins

CIDR blocks and IP addressing in AWS - Step-by-Step Execution

Choose your learning style9 modes available
Process Flow - CIDR blocks and IP addressing
Start with IP address
Apply CIDR mask
Calculate network address
Calculate range of IPs
Identify usable IPs
Assign IPs to devices
End
This flow shows how an IP address and CIDR mask combine to define a network and usable IP range.
Execution Sample
AWS
IP = 192.168.1.0/29
# Calculate network and usable IPs
This example calculates the network and usable IP addresses for the CIDR block 192.168.1.0/29.
Process Table
StepActionCalculation/ConditionResult
1Start with IP and CIDRIP=192.168.1.0, Mask=/29Given IP block
2Calculate subnet mask/29 means 29 bits for networkSubnet mask = 255.255.255.248
3Calculate number of IPs2^(32-29) = 8Total IPs = 8
4Calculate network addressIP & subnet mask192.168.1.0
5Calculate broadcast addressNetwork + total IPs - 1192.168.1.7
6Identify usable IPsExclude network and broadcast192.168.1.1 to 192.168.1.6
7Assign IPs to devicesUse usable IP rangeDevices get IPs 192.168.1.1-192.168.1.6
8EndAll usable IPs assignedFinished
💡 All usable IPs assigned, network and broadcast reserved
Status Tracker
VariableStartAfter Step 2After Step 3After Step 4After Step 5After Step 6Final
IP192.168.1.0/29192.168.1.0/29192.168.1.0/29192.168.1.0192.168.1.0192.168.1.0192.168.1.0
Subnet MaskN/A255.255.255.248255.255.255.248255.255.255.248255.255.255.248255.255.255.248255.255.255.248
Total IPsN/AN/A88888
Network AddressN/AN/AN/A192.168.1.0192.168.1.0192.168.1.0192.168.1.0
Broadcast AddressN/AN/AN/AN/A192.168.1.7192.168.1.7192.168.1.7
Usable IP RangeN/AN/AN/AN/AN/A192.168.1.1-192.168.1.6192.168.1.1-192.168.1.6
Key Moments - 3 Insights
Why do we exclude the first and last IP addresses in the range?
The first IP is the network address and the last is the broadcast address, both reserved and not assignable to devices (see execution_table steps 4 and 5).
How do we calculate the total number of IPs from the CIDR mask?
Subtract the CIDR number from 32, then raise 2 to that power (2^(32 - CIDR)). For /29, 2^(32-29) = 8 (see execution_table step 3).
What does the subnet mask 255.255.255.248 mean in binary?
It means the first 29 bits are network bits (ones), and the last 3 bits are host bits (zeros), defining the size of the subnet (see execution_table step 2).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, what is the broadcast address calculated at step 5?
A192.168.1.0
B192.168.1.6
C192.168.1.7
D192.168.1.1
💡 Hint
Check the 'Result' column at step 5 in the execution_table.
At which step do we find the number of total IP addresses in the block?
AStep 3
BStep 2
CStep 4
DStep 6
💡 Hint
Look for the calculation of 2^(32 - CIDR) in the execution_table.
If the CIDR was changed to /30, how would the total IPs change in the execution table?
ATotal IPs would be 8
BTotal IPs would be 4
CTotal IPs would be 16
DTotal IPs would be 2
💡 Hint
Recall the formula 2^(32 - CIDR) and apply it for /30.
Concept Snapshot
CIDR blocks define IP ranges using a mask.
CIDR /n means n bits for network, rest for hosts.
Total IPs = 2^(32 - n).
First IP = network address (not usable).
Last IP = broadcast address (not usable).
Usable IPs lie between these two.
Full Transcript
CIDR blocks combine an IP address with a mask to define a network range. The mask tells how many bits are for the network part. For example, /29 means 29 bits for network and 3 bits for hosts. We calculate total IPs by 2 raised to the power of (32 minus the mask). The first IP is the network address and the last is the broadcast address; both are reserved and cannot be assigned to devices. Usable IPs are those in between. This process helps assign IPs efficiently in cloud networks.