I am given a list of IPs, some of them have a netmask, other no. I got the idea of how to create a mask but i'm not understanding why there are cases where an IP doesn't have a mask.
Like the following:
- 121.34.56.64–121.34.56.128 > Don't have mask
- 128.131.9.0–128.131.9.192 > Don't have mask
- 93.20.10.0–93.20.11.0 > Don't have mask
While the following actually have mask address:
- 67.56.34.64-67.56.34.79 > Prefix notation: 67.56.34.64/28 | Address/Mask: 67.56.34.64/255.255.255.240 and so on.
For example if I look at the third one of the addresses without mask i do the following:
93.20.10.0–93.20.11.0
93.20. 0000 101|0 . 0000 0000
93.20. 0000 101|1 . 0000 0000NetMask: 255.255.254.0, that is not correct.
Can somebody explain me why and how to understand when a mask exists?