Compartir una conexión I: Enrutador inalámbrico and ¿Cómo crear una red punto a punto en Win XP? Paso a paso. Before start the main topic I want to define the use I make of the term subnet mask. Subnet mask are 32 bits used to determine which part of an IP address is network part and which is hosts part, in other words, the subnet mask is the way the host knows its subnet address and differentiate the own network/subnetwork from destination network/subnetwork of a packet to send. The mask is then a sequence of ones followed by a sequence of zeros, where the ones are the bits indicating the network part in the IP address. The subnet mask is also referenced by a number, because it’s always a sequence of ones, so you could name a subnet mask by how many ones are at the begining of the mask, e.g. a network mask of 255.255.255.0 is a mask that could be called /24 because there are 24 bits at the beginind set to one followed by 8 bits set to zero (11111111.11111111.11111111.00000000). This slash+number representation of a subnet mask is called subnet prefix and the notation is a / followed by the number of bits in one at the begining of the mask.
Fixed masksMaster VLSM begins by knowing the old method: fixed masks. So, let’s review the topic. A subnet addressing scheme means that I’ll divide the potential numeration capacity of a network (how many IP address can be assigned from that base address pool) into several smaller subnets and the scheme is an enumeration of each smaller subnet address, assignable address range and broadcast address of each particular subnet. Usually the base network mask is a class-based mask, in other words, usually the base mask have 8 bits, 16 bits or 24 bits (255.0.0.0, 255.255.0.0 and 255.255.255.0), those are the subnet mask for class A, Class B and Class C IP addresses respectively. To ilustrate the idea of creating a scheme with fixed masks, watch the following exercise:
- Base address: 192.168.11.0/24, this is the address given for, say, an ISP. From that address pool we can manage just the last 8 bits(enlarge its length), using the mask we can make subnets.
- New mask: /27 (255.255.255.224): If we lengthen the mask by 3 bits, the new addressing scheme supports 2^3 subnets, using the most significative bits to count the subnets. That leaves 5 bits to enumerate hosts, so we can have 2^5 hosts, but we cannot use the first address (that is the subnet address) nor the last (broadcast address for the subnet), so with 5 bits we have a maximum of 30 hosts per subnet.
- Finally we must enumerate the subnets: First subnet is 192.168.11.32/27, from that the first host address should be 192.168.11.33/27 (mask=255.255.255.224) and the last one is 192.168.11.62/27. The last one 192.168.11.63 is the broadcast address for that subnet and we cannot assign it to any host. If we had to continue numbering the subnets (to complete the scheme), the next one is 192.168.11.64/27, 192.168.11.96/27, 192.168.11.128/27, 192.168.11.160/27, 192.168.11.192/27, 192.168.11.224/27 and for each one we have to give the range of assignable addresses to complete the scheme.
Variable Length SchemesVLSM solves the stated problems. What I can do with VLSM is using the space just needed, with the fixed mask the space is already assigned once the mask is elected, that means all the subnets are numbered and the range of IP addresses per subnet reserved without possibility of change, even if the hosts aren’t configured yet. In VLSM the reservation of addresses occurs just when we assign a subnet and the remaining space is still available and the capacity of subsequent subnets could be different from the ones already assigned. Let’s make an example. Again we take the same base address 192.168.11.0/24, though we have 8 bits to manage and make subnets and assign hosts also. The first big difference between Fixed masks and VLSM is that we don’t waste the space, e.g.: if the requirements were subnets of 5, 10 and 30 hosts, using fixed masks the only possible choice is to make the scheme to support subnets of 30 hosts, that means that the other subnets will have an unused capacity of 25 and 20 hosts respectively. In VLSM we can choose different length masks and so different capacities, e.g. in the example of three networks of 5, 10 and 30 hosts from a class C address (192.168.11.0/24), for the first subnet of 5 hosts we need 3 bits to numbering hosts (2^3=8-2=6) so we add 5 bits to the subnet mask (/29), then for the 10 hosts subnet we need 4 bits because (2^4=16-2=14 hosts) so the mask should be /28 and for the 30 hosts subnet we need 5 bits (2^5=32-2=30 hosts max.) then the subnet mask should be /27. Once we’ve figured the masks length we can assign the addresses’ ranges. There is a kind of algorithm to subnet with VLSM, the first rule is order the subnets by capacity in decreasing numbers, for our example we put the 30 hosts as the first and the 5 hosts as the last one. Tha’s the order in which we will assign the addresses ranges. Here I need to mention several aspects of design that could be arguable. You could assign the subnets beginning with the first subnet possible, which will have the same address that the base network but with a different mask, I prefer to assign the second one leaving a first network available with the same capacity as the first one (the biggest). That behavior is rooted in the old method, fixed masks, back then the rule recommended not to use the first subnet. Another reason I could give is that is a good practice to leave a big subnet available for scalability but all these reasons are (as told before) very arguable. Because this is my example, I’ll make it applyig my preference: leaving the first subnet available. So, the first subnet usable is the 192.168.0.0/28 which I won’t use but state as a reservoir for future growth. After this subnet I have the 192.168.0.32/28 which I’ll assign to my first subnet, then the range of IP address assignable is from 192.168.0.33 to .62, because the .63 is the broadcast for this particular subnet. Is worthy to mention that the golden rule is that all the assigned ranges should be exclusive, in other words, if the first subnet is assigned the second subnet and subsequent subnets should be after or before the range of the first subnet including their subnet and broadcast address. It’s worthy note also that cisco routers detect this kind of misconfiguration giving an error message. After the first subnet comes the second, but the second subnet should be smaller, just 10 hosts. Since that, the masks is /29 (24 + 4 more bits because I need 4 to count up to 14 hosts) . Here we must assume the fixed scheme and take the next subnet after the past one with the same mask, 192.168.0.64 but I lengthen the mask by the bits needed, 29 in this case. Then the 2d subnet is the 192.168.0.64 /28, the rest is history: range .65 to .78, with Broadcast .79. If we take any number greater that 79 the hosts would fall into another subnet because the subnet part is different than this range (compare the first 4 bits of the decimal numbers 78 and 81, they are the last assignable address of the subnet .64/28 and the first address of the subnet .80/28). Finally we need to assign the last subnet, the one with 5 hosts maximum. Again I take the next subnet with the same masks of the previous subnet (192.168.0.64/28) which is 192.168.0.80 but I use the mask I need for 5 hosts, /29, because I need 3 bits to count up to 8 hosts but without subnet and broadcast I can count up to 6 hosts, so from 8 bits I had to manage by my own I substract 3 bits which results in 5 bits and this plus the 24 original bits gives me 29. The rest is history again: subnet address 192.168.0.80/29, range .81 to .86 with broadcast .87. Note that with VLSM we still have space, lots of space to assign, even with these 3 subnets already assigned. We could use the rest of space in subnets of 6 hosts, or 30 hosts until the last subnet range reach the .255 in its broadcast.
Analize it!And remember that we leave a big subnet at the begining of the space, so we still have a 30 hosts subnet to assign also additionally to the final range. Let’s analize this result in binary
- 1st subnet’s last byte: 00100000 (.32/27)
- Mask 11100000
- 2d subnet’s last byte: 01000000 (.64/28)
- Mask 11110000
- 3d subnet’s last byte: 01010000 (.80/29)
- Mask 11111000
ConclusionAll this topic is not easy, but the practice makes the difference. I have a final recommendation:
- Make the calculations in binary instead of decimal until you get acquainted with decimal values of binary numbers.
- Order the requirement from bigger to smaller subnets and assign the biggest first.
- Assign the subnets in sequence as possible.
- If possible, use consecutive subnets in the same router, this is an advanced topic related to summarization.
- Always verify that the range of addresses (including subnet and broadcast) of all the subnets in the scheme be separated in number. None of the possible hosts could be in the same range of two or more subnets.
Oooo! This is a point mentioned. I like when everything in place while it is understandable to mere mortals.
Thanks,
I’ve just created a new blog from this one to avoid mixing languages. Maybe you’d like it.
http://cesarcabrera.info/en-blog/