What does the CIDR slash notation mean in IP addresses e.g. 63.245.214.128/26 ?
Pontifications
Classless Inter Domain Routing aka CIDR notation means you have to apply a bit mask for the number of bits after the slash so in our example 63.245.214.128/26 that means 26 bit bit mask.
# of valid IP addresses 2^(32-n)
where ānā is the number after the slash- 63.245.214.128/26 = 2^(32-26) = 2^6 = 64 valid IP addresses
- which are: 63.245.214.128 to 63.245.214.191
- More info: