Jensen IT Notes
Back to blog

Networking & Homelab

Subnetting Basics for Beginners

June 24, 2026

A practical beginner explanation of subnets, masks, and why subnetting matters in IT support learning.

Network+SubnettingNetworkingBeginner IT Support

Subnetting can feel intimidating at first, but beginner IT support learners do not need to master every calculation immediately. Start by understanding what a subnet does and why it matters.

What a subnet is

A subnet is a smaller IP network inside a larger address space. It groups devices that can usually communicate locally.

For example, 192.168.1.0/24 is a common small network range.

What the subnet mask does

The subnet mask helps a device decide whether another IP address is local or remote.

If the destination is local, the device can try to reach it directly. If it is remote, the device sends traffic to the default gateway.

CIDR notation

You may see subnet notation like /24, /25, or /26.

For beginners:

  • /24 is common in small networks.
  • Smaller numbers usually mean larger networks.
  • Larger numbers usually mean smaller networks.

Do not panic if the math takes time. Practice helps.

Why subnetting matters in support

Subnetting helps you understand:

  • Whether two devices should be on the same network.
  • Why a gateway is needed.
  • Why wrong masks break connectivity.
  • How VLANs and IP ranges work together.
  • Why DHCP scopes must match the network design.

Practical example

If a printer is 192.168.10.25 and a laptop is 192.168.20.50, they may be on different subnets. The laptop may need routing or firewall permission to reach the printer.

Beginner-friendly explanation: subnetting decides who is local and who needs to go through the router.

Beginner Note

For entry-level support, start by recognizing when IP address, subnet mask, and gateway do not belong together. Cantonese-friendly: “先學識睇啲 IP 設定夾唔夾,唔使一開始就背晒計法.”

Common Mistake

A common mistake is copying a static IP but using the wrong subnet mask or gateway.

FAQ

Do help desk technicians need subnetting?

Basic understanding helps a lot. Deep design may belong to network admins, but support staff often need to recognize bad IP settings.

Is /24 the same as 255.255.255.0?

Yes, in common IPv4 notation.

Should I memorize subnet charts?

Charts can help, but practical recognition matters first.

Quick Check

Original beginner-friendly review questions — not real exam questions.

1. Easy: A PC is 192.168.10.50/24 and the gateway is 192.168.20.1. What is suspicious?
A. The gateway is outside the local /24 subnet
B. The DNS suffix is missing only
C. The DHCP lease is too long
D. The Wi-Fi SSID name is too short

Answer: A. The gateway is outside the local /24 subnet.

Why: With /24, 192.168.10.x and 192.168.20.x are different subnets.

2. Medium: Two devices are 192.168.5.20/24 and 192.168.5.30/24. What is usually true?
A. They are in the same local subnet
B. They must use different routers to talk
C. They cannot share a switch
D. They are public internet IPs

Answer: A. They are in the same local subnet.

Why: With /24, both addresses are in 192.168.5.0/24. The other options overcomplicate the situation.

3. Medium: A copied static IP works at one site but fails at another. Which copied setting is commonly wrong?
A. Subnet mask or default gateway
B. Mouse speed
C. Display scaling
D. Desktop icon size

Answer: A. Subnet mask or default gateway.

Why: Static settings must match the local network. UI settings do not affect IP routing.

Keep exploring practical fixes

Browse more support notes and build a stronger troubleshooting routine.

View all posts