Every device on a network needs an identity so data can reach it. That identity is an IP address. As networks grow, addresses are organized into subnets, smaller logical groups, to keep the network manageable and efficient.
What an IP Address Is
An IP address is a numerical label that identifies a device on a network and tells the network where to deliver data. Two ideas matter most for AP Networking: an address has a part that identifies the network and a part that identifies the specific device (host) on it.
-
Network portion: which network the device belongs to.
-
Host portion: which specific device within that network.
Devices on the same network can talk directly; devices on different networks must go through a router.
How Addresses Get Assigned
| Method |
How it works |
Best for |
| Dynamic (DHCP) |
A server hands out addresses automatically |
Most devices, hands-off management |
| Static |
An address is set manually and does not change |
Servers and devices that must be reliably found |
What Subnetting Does
Subnetting divides one large network into smaller logical networks. It is one of the most important scaling tools in networking.
-
Organization: group devices by department, floor, or function.
-
Efficiency: reduce unnecessary traffic, because local traffic stays local.
-
Security: separate groups so a problem in one subnet does not automatically reach another.
-
Address management: allocate appropriately sized blocks instead of wasting addresses.
When a growing network runs out of addresses or becomes hard to manage, redesigning the subnet plan, not assigning duplicate addresses or disabling services, is the correct fix.
Why Duplicate Addresses Break Things
If two devices share the same address, the network cannot tell them apart, and delivery becomes unreliable or fails. This is why "give everything the same address to save space" is always wrong, and why DHCP is designed to avoid handing out the same address twice.
Practice Questions
A growing network has run out of addresses in its current scheme. Which action MOST directly fixes the shortage while keeping the network organized?
- A. Assign every device the same address
- B. Redesign the subnet plan to allocate appropriately sized blocks
- C. Disable DNS to free up addresses
- D. Permanently turn off half the devices
Answer: B. Subnetting allocates right-sized blocks per segment, resolving exhaustion and preserving organization. Duplicate addresses cause conflicts, DNS does not consume host addresses that way, and disabling devices avoids the design problem.
Which describes the two parts of an IP address most relevant to AP Networking?
- A. A speed part and a color part
- B. A network portion and a host portion
- C. A password and a username
- D. A name and a date
Answer: B. An IP address has a network portion (which network the device is on) and a host portion (which device on that network). This split is what lets routers decide whether traffic stays local or crosses networks.
Frequently Asked Questions
What is an IP address?
A numerical label identifying a device on a network. It has a network portion (which network) and a host portion (which device on it).
What does subnetting do?
It divides one large network into smaller logical networks for organization, efficiency, security, and better address management.
Why do duplicate IP addresses cause problems?
If two devices share an address, the network cannot tell them apart and delivery fails or becomes unreliable, which is why DHCP avoids handing out the same address twice.