Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Help my understand subnetting?
I am having a really hard time grasping the subnet concepts for some reason. If I have a subnet mask of 255.255.255.0 I can have hosts in the same subnet from x.x.x.1 - x.x.x.254 right? Can I choose any numbers I want for the network address? I know 192.168.0.x and 192.168.1.x are popular but can I do 15.87.156.x if I want to?
The only reason you would need to use any other subnet mask other than 255.255.255.0 is if you needed more than 254 hosts in a subnet right? I just don't get why you would try to complicate things by using a mask like 255.255.224.0
2 Answers
- Anonymous9 years agoFavorite Answer
Lets use the subnet 192.168.1.0/24 as an example. (The /24 means netmask 255.255.255.0)
Yes, you have anything from 192.168.1.1 - 192.168.1.254 available to use as host IPs. You can choose any address you want within this range, and assign it however you wish to any devices on this subnet. Just make sure you don't assign the same address to two different network interfaces, or (obviously) you'll have headaches.
You're also more-or-less correct that if you're interested in setting up a simple subnet containing less than 254 hosts then a netmask of 255.255.255.0 is sufficient. If you wanted a larger subnet, then you could instead use a netmask of 255.255.0.0, and then have 192.168.0.0 - 192.168.255.255 available to you (see below for a list of private address ranges.) There are other reasons you might want to use a different addressing scheme, but for a small set up what you're describing is sufficient.
Using a netmask of 255.255.255.0, you wouldn't want to assign an address of 15.87.156.x, because that network range is not considered a "private" range. In other words, 15.87.156.x is part of some publicly assigned block of addresses - assigned for use by Hewlett Packard if I'm not mistaken. Actually, because it's a publicly assigned block, it wouldn't really matter what netmask you tried to use.
Address spaces assigned for private use include:
10.0.0/8 (255.0.0.0)
172.16.0.0/12 (255.240.0.0)
192.168.0.0/16 (255.255.0.0)
Note that with the deprecation of classful addressing and emergence of CIDR, it's now become commonplace to further sub-divide the above private addresses.
Hope this helps at least a bit;
Wire
- Anonymous9 years ago
Indeed, using different masks is driven by the number of hosts needed in the subnet.
On a LAN, you can use any address from these ranges:
10.0.0.0 - 10.255.255.255
172.16.0.0 - 172.31.255.255
192.168.0.0 - 192.168.255.255
all other ranges are subject to be taken by someone else on the Internet, and therefore are not recommended for local use.