what is an IP Address? // You SUCK at Subnetting // EP 1
Based on NetworkChuck's video on YouTube. If you like this content, support the original creators by watching, liking and subscribing to their content.
IP addresses are required for devices to communicate on local networks and across the internet.
Briefing
An IP address is the “phone number” that lets devices communicate on the internet and inside local networks—and the key to understanding it is learning how subnet masks and the default gateway determine where traffic goes. Without an IP address, devices can’t reliably send messages to other devices, whether that’s a smart watch talking to a phone, a laptop reaching Netflix, or any device in a home or business trying to connect beyond its local neighborhood.
The video frames IP addressing as a practical necessity: most everyday devices—phones, computers, smart home gadgets—need an IP address to exchange data. When a device joins a Wi‑Fi network, the router assigns it an address using DHCP, described through an analogy of a “router” acting like a coordinator that hands out addresses to every connected device. The result is that a device can reach other devices on the same network and can also reach destinations outside the network (like websites) by handing off traffic to the router.
An IP address itself is shown as four numbers separated by dots (four octets). The common home-network pattern highlighted is 192.168.1.x, where the “x” varies per device. The reason many networks start with 192.168.1 is tied to private addressing conventions; the video uses the subnet mask to show how the address is structured. The subnet mask (often shown as 255.255.255.0 in this example, sometimes displayed as “net mask”) reveals which parts of the IP address are fixed for the network and which part can change for individual devices.
A key “hack” is introduced: when the subnet mask has 255 in an octet, the corresponding octet in the IP address is locked in across the network. In the example, 255.255.255.0 means the first three octets stay the same (so devices share 192.168.1.*), while the last octet is flexible and can range from 0 to 255. That split is described as the network portion (the shared “street” or neighborhood) and the host portion (the device-specific “house number”).
That distinction matters because devices decide whether a destination is “local” (same network) or “remote” (different network). If the destination isn’t on the same network, the device sends the traffic to its default gateway—also called the default router—so the router can forward it onward. The video emphasizes that the default gateway is effectively the exit point for getting to outside networks.
Finally, the video turns to capacity: with a subnet mask of 255.255.255.0, there are 256 possible addresses in the last octet (0–255), but not all are usable. Two are reserved: the network address (first IP, e.g., 192.168.1.0) and the broadcast address (last IP, e.g., 192.168.1.255). The router also consumes an address as the default gateway. After accounting for these, the usable count becomes 250 IP addresses for devices—an important baseline for understanding subnetting in the most common home-network setup.
Cornell Notes
IP addresses act like device “phone numbers” that enable communication both within a local network and across the internet. A router assigns IP addresses to devices via DHCP, and the subnet mask determines which parts of an IP address are fixed for the network versus which part identifies individual hosts. In the common example 192.168.1.x with subnet mask 255.255.255.0, the first three octets (192.168.1) stay constant, while the last octet can vary from 0 to 255. Devices use the network portion to decide whether a destination is local; if not, they send traffic to the default gateway (default router). Although 256 addresses exist in the range, the network address and broadcast address are reserved, and the router uses one address—leaving 250 usable host IPs.
How does a device get an IP address when it joins a home or business Wi‑Fi network?
What does the subnet mask tell you about which parts of an IP address are “locked in” versus “variable”?
Why do many home networks commonly look like 192.168.1.x?
How does a device decide whether it can reach a destination directly or must use the default gateway?
With subnet mask 255.255.255.0, how many IP addresses are available, and why isn’t it the full 256?
What are the network address and broadcast address, and what happens if you try to use them like normal hosts?
Review Questions
- In a subnet with mask 255.255.255.0, which octets of an IP address are fixed, and which octet identifies the host?
- Explain the role of the default gateway when a device needs to reach a destination outside its local network.
- For 192.168.1.0/24, list the network address, broadcast address, and the number of usable host addresses.
Key Points
- 1
IP addresses are required for devices to communicate on local networks and across the internet.
- 2
Routers assign IP addresses to devices using DHCP when devices connect to Wi‑Fi.
- 3
An IP address is four octets; the subnet mask determines which octets define the network portion versus the host portion.
- 4
A subnet mask octet of 255 means the corresponding IP octet is locked for all devices on that network.
- 5
If a destination isn’t on the same network portion, devices send traffic to the default gateway (default router).
- 6
In a 255.255.255.0 subnet, there are 256 total addresses (0–255), but the network address and broadcast address are reserved.
- 7
After reserving the network address, broadcast address, and the router’s default gateway address, 250 usable host IPs remain in the example subnet.