What Is a Subnet Mask? 255.255.255.0 Explained
Next to every IP address in your network settings sits a strange companion โ usually 255.255.255.0. That's the subnet mask, and while it looks cryptic, its job is simple: it tells your device which addresses are local (on your own network) and which are remote (reachable only through the router).
The core idea: splitting an address in two
Every IP address has two parts: a network portion (which network you're on) and a host portion (which device you are on that network). The subnet mask marks the dividing line. Wherever the mask has 255, that part of the address identifies the network; wherever it has 0, that part identifies the device.
With IP 192.168.1.37 and mask 255.255.255.0:
- Network:
192.168.1โ shared by every device in your home - Host:
.37โ this specific device
Why your device cares
When your laptop wants to talk to 192.168.1.50, it checks the mask, sees the network part matches its own, and sends the data directly across the local network. When it wants to reach 142.250.80.46 (a Google server), the network part doesn't match โ so it hands the packet to the default gateway (your router) to forward to the internet. That one decision โ local or not โ is the subnet mask's entire purpose.
CIDR notation: the modern shorthand
You'll often see masks written as a slash and a number, like 192.168.1.0/24. The number counts how many bits belong to the network:
| CIDR | Mask | Usable hosts | Typical use |
|---|---|---|---|
| /24 | 255.255.255.0 | 254 | Home networks |
| /16 | 255.255.0.0 | 65,534 | Large organisations |
| /30 | 255.255.255.252 | 2 | Point-to-point links |
| /32 | 255.255.255.255 | 1 | A single address |
When subnet masks cause problems
A wrong mask is a classic source of "I can reach the internet but not my printer" problems. If two devices on the same physical network have mismatched masks, one may think the other is remote and route local traffic out through the router, where it dies. If local devices can't see each other, comparing subnet masks is one of the first things to check โ along with IP conflicts.
Frequently asked questions
What subnet mask should I use at home?
255.255.255.0 (a /24) is right for virtually every home network. It supports 254 devices, far more than any household needs.
Does the subnet mask affect my public IP?
No. The mask only organises your local network. Your public IP โ the one shown on this site's homepage โ is assigned by your ISP independently.