Menu
Coddy logo textTech

Splitting Again

Lesson 27 of 46 in Coddy's IP Addressing and Subnetting course.

Splits nest. A /26 you carved out a moment ago can itself be cut into /28s, and those into /30s. The rules never change: borrow bits, compute the new block size, list the starts.

Take 192.168.8.64/26 (covering 64-127). Cutting it into /28s means a block size of 16, so the pieces start at 64, 80, 96 and 112, and the last one ends at 127, exactly where the parent ends.

That end check is worth doing every time: children must tile their parent perfectly, no gaps, no spill.

challenge icon

Challenge

Easy

Split 192.168.8.64/26 into /28 subnets. Print each in CIDR notation, one per line, lowest first.

Expected output:

192.168.8.64/28
192.168.8.80/28
192.168.8.96/28
192.168.8.112/28

Try it yourself

Terminal

All lessons in IP Addressing and Subnetting

Practice on your own: Terminal playground