Variable Length SubNetting
Duration: 6 min
This video lesson is available to enrolled students.
AI summary & chapters
AI Summary
An AI-generated summary of this video lecture.
This lecture introduces variable length subnetting (VLSM) by contrasting it with fixed-length subnetting, where all subnets share the same size and mask. The instructor presents a worked example: dividing network 200.1.2.0 into three subnets requiring 126 hosts and two of 62 hosts each. Using a pie-chart diagram, the largest subnet is allocated first: a /25 block (128 addresses) for 126 hosts, leaving two /26 blocks (64 addresses each) for the 62-host subnets. The final subnet assignments are 200.1.2.0/25, 200.1.2.128/26, and 200.1.2.192/26.
Chapters
0:00 – 2:00 00:00-02:00
The lecture opens with a slide titled "Types of Subnetting" listing fixed length and variable length subnetting. Fixed-length subnetting is described as having all subnets of the same size, while variable length subnetting divides a network into subnets that are not of the same size, do not have equal numbers of hosts, and do not share the same subnet mask. The instructor then poses a question: given network 200.1.2.0, divide it into three subnets where the first contains 126 hosts and the other two contain 62 hosts each.
2:00 – 5:00 02:00-05:00
The instructor moves to a whiteboard and draws a large circle representing the total address space of 256 addresses for the Class C network. The circle is split into a left half labeled "128" with a circled "126," and two right quarters each marked "64 64." On the margin, the calculation "256 - 2 = 254" is written to show usable hosts in the full block. The largest subnet is allocated first: 126 hosts require a /25 prefix (block size 128), and the remaining space is divided into two /26 subnets (block size 64) for the 62-host requirements. Binary representations of subnet masks are shown to illustrate boundaries.
5:00 – 6:19 05:00-06:19
The instructor completes the subnet assignments. The first subnet is 200.1.2.0 with mask 255.255.255.128 (/25), accommodating 126 hosts. The second subnet starts at 200.1.2.128 with mask 255.255.255.192 (/26), and the third subnet starts at 200.1.2.192 with mask 255.255.255.192 (/26). The circular diagram visually confirms that the three subnets partition the original 256-address space without overlap, demonstrating the core VLSM principle of allocating the largest block first to preserve contiguous address space for smaller subnets.
The central teaching point is that VLSM allows a single network to be divided into subnets of different sizes, each with its own subnet mask. The method follows a strict order: allocate the largest host requirement first, then subdivide the remaining space. In the example, 126 hosts require a /25 (128 addresses), and each 62-host subnet requires a /26 (64 addresses). The key formula is block size = 2^(host bits), and usable hosts = block size - 2. The pie-chart diagram is the primary visual aid, showing how 128 + 64 + 64 = 256 fills the original network exactly. Students should remember that VLSM subnets must be listed in descending size order to avoid address overlap, and each subnet's network address is the start of its block.