Originally posted by: Santa
To make a 28 bit subnetwork mask you basically have 4 groups of 8 (1) seperated by (.) dots.
11111111.11111111.11111111.11100000
This translates into 255.255.255.224 for the subnet mask.
Each bit represents a number based upon its location. In group of 8 places between the dots the placement is [128][64][32][16][8][4][2][1]
so since you have 11111111 you add up 128+64+32+16+8+4+2+1 to get your 255
and you the last octet is a 11100000 you add up 128+64+32 to get your 224.
This should answer your question about how to create the mask but you will want to look at the site to see what you can do with it in terms of creating a group of subnetworks with a certain number of host per subnetwork.
Originally posted by: ndee
So, what are some practical uses of a subnet? I just can't imagine something right now.
Originally posted by: Saltin
Spidey,
Are you saying that 192.168.0.48 /28 isnt a classless IP address?
Given, it's likely a bad example, as there would be almost no need to subnet in this manner in a private address space, but the principal still stands no? Classes are determined by subnet masks, not the IP address.
I'll defer to your knowledge here, but that's the way I always understood it.