Select a block to see details.
Enter a CIDR block (e.g., 10.0.0.0/16) to visualize how it can be split into smaller subnets. This is essential for planning cloud networks (AWS VPC, Azure VNet).
import ipaddress
net = ipaddress.ip_network('192.168.0.0/24')
for ip in net:
print(ip)