This is a general question about Subnet Masks.
Preface
Most of our private networks are on 192.168.1.xxx/24 The Subnet mask will be 255.255.255.0. This is the default configuration of any router you go buy at Best Buy.
The Actual Question
Here's what I'm wondering: Why wouldn't the subnet mask be 192.168.1.0 instead of 255.255.255.0
Assume your ip address is 192.168.1.14
If you 'logical and' the 192.168.1.0 subnet mask with your ip address, you will get the same results as if you 'logical and' it with a 255.255.255.0 subnet mask.
A subnet mask of 192.168.1.0 would be more descriptive than 255.255.255.0. This is because, a subnet mask of 255.255.255.0 would apply to thousands more potential subnets, a subnet mask of 192.168.1.0 would apply to fewer. Also, a convention where you use a subnet mask like 192.168.1.0 for an ip address of 192.168.1.14 would be much easier to read.
So, why isn't the subnet mask for common private networks, 192.168.1.0? Why don't we use more specific subnet masks?
Thanks,