Menu
Coddy logo textTech

Network Address

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

Every subnet reserves its very first address as the network address: all host bits set to 0. It names the subnet itself and can never be assigned to a machine.

You already know how to find it: AND the address with the mask. For 192.168.4.77/28 the mask ends in 240 (11110000), and 77 (01001101) AND 240 keeps only 01000000, which is 64.

So 192.168.4.77 lives in the subnet named 192.168.4.64.

challenge icon

Challenge

Beginner

Find the network address of 192.168.4.77/28 and print it.

Expected output:

192.168.4.64

Try it yourself

Terminal

All lessons in IP Addressing and Subnetting

Practice on your own: Terminal playground