I'm looking for a way to tell which IP is valid only based on the given subnet mask.
For example : given the subnet mask : 255.255.255.240, is 195.206.108.25 a valid IP? Why?
I'm looking for a way to tell which IP is valid only based on the given subnet mask.
For example : given the subnet mask : 255.255.255.240, is 195.206.108.25 a valid IP? Why?
IP: 195.206.108.25
MASK: 255.255.255.240 (/28)
255.255.255.255 - 255.255.255.240 --------------------- 0. 0. 0. 15
Network: 195.206.108.0/28
Usable hosts: 195.206.108.1-195.206.108.14
Broadcast: 195.206.108.15
Network: 195.206.108.16/28
Usable hosts: 195.206.108.17-195.206.108.30
Broadcast: 195.206.108.31
So 195.206.108.25 is a valid IP address of the 195.206.108.16/28 network. (correct me if I'm wrong)