EdTheLad wrote: » Simple way x.x.x.x/y ; y is the network bits Max bits in an address is 32, therefore 32-y = host bits No need to waste your time writing out binary.
Gngogh wrote: » there is no default when you subnet
TheNewITGuy wrote: » Its going to be a little different for a Class C address (/24) super-netted (not subnetted) to a /18 - super net is when we go backward and subnet is when we go forward ie: subnet makes more networks and supernets make more hosts so a 196.11.200.71/18 without knowing the answer you cant reverse engineer it. quickest way is to just write it out real quick 196.11.200.71 255.255.192.0 192 in binary is 11000000 200 in binary is 11001000 you do a quick AND against them 11000000 = 192 196.11.192.0 is your network address
TheNewITGuy wrote: » Its going to be a little different for a Class C address (/24) super-netted (not subnetted) to a /18 - super net is when we go backward and subnet is when we go forward ie: subnet makes more networks and supernets make more hosts
TheNewITGuy wrote: » quickest way is to just write it out real quick 196.11.200.71 255.255.192.0 192 in binary is 11000000 200 in binary is 11001000 you do a quick AND against them 11000000 = 192 196.11.192.0 is your network address
jamarchitect wrote: » EdTheLad and Darril, Can I ask where you are getting 256? I understand how to figure this out now, except for the fact that I thought the highest value of any octet is 255. If I can understand where you're getting 256 from, I think I'll be good to go. Thanks!