CompTIA A+ Core 2 (220-1202), Domain 1, Objective 1.7, focuses on client network configuration, meaning the basic settings a computer uses to connect to local networks and the internet. When these values are wrong or missing, everyday problems show up fast, no internet access, slow Wi-Fi, a printer that won't load, or a website that won't let you sign in. For troubleshooting, these settings give you a direct way to test whether the issue is the device, the router, or name resolution.
This post breaks client network configuration into five items you can verify on any workstation. First, the IP address identifies the device on the network, and the subnet mask defines what "local" means. Next, the default gateway is the route off the local network, so a bad gateway often looks like "local works, internet fails." DNS settings matter because people type names (like intranet.company.local), not IPs, so wrong DNS can make sites "disappear" even when connectivity is fine. Finally, you'll compare static versus dynamic addressing (DHCP), since a static IP can fix a device in place, but it can also cause conflicts after network changes.
Reachability Settings
For CompTIA A+ Core 2 (220-1202), Domain 1, Objective 1.7, you need to recognize the five client network settings that decide whether a device can reach local resources and the internet. In practice, these values answer simple questions: Who am I on this network, who is nearby, how do I leave, and who can translate names. When one setting is missing or wrong, the failure pattern often points to the cause.
IP address, your device's location on a network
An IPv4 address is four numbers separated by dots (called octets), such as 192.168.1.25. Think of it as your device's street address. Without it, other devices cannot reliably send traffic back to you, because they don't know where you "live" on the network.
Most client devices use either private or public IPv4 addresses:
- Private IPs are used inside homes and businesses, and they don't route across the public internet.
- Public IPs are reachable on the internet and are usually assigned by an ISP (often to the router, not each client).
Here are the common private ranges you will see on clients:
| Type | Common IPv4 ranges | Where you see it |
|---|---|---|
| Private (RFC 1918) | 10.0.0.0 to 10.255.255.255 | Larger networks, some homes |
| Private (RFC 1918) | 172.16.0.0 to 172.31.255.255 | Business networks |
| Private (RFC 1918) | 192.168.0.0 to 192.168.255.255 | Home and small office routers |
Another address range matters for troubleshooting: APIPA. If a Windows client shows 169.254.x.x, it likely failed to get an address from DHCP. The device assigns itself an Automatic Private IP Address so it can sometimes talk to nearby hosts, but it usually cannot reach the router or internet.
A wrong IP address can put the client on the wrong network, so local devices and the gateway may seem to "vanish." A duplicate IP causes a collision, because two devices claim the same address. As a result, traffic may land on the wrong machine, connections will drop, and you may see intermittent failures that look random.
Most networks hand out IPs with DHCP leases (time-limited assignments). That lease system reduces mistakes, but it also means a client's IP can change after reconnects or after the lease renews.
If you see
169.254.x.x, treat it as a strong hint: the client did not receive a usable DHCP address.
Subnet mask, what counts as local and what doesn't
The subnet mask tells your device which IPs are "local neighbors" and which IPs require routing through a gateway. A simple way to picture it is a neighborhood boundary. Houses inside the boundary can be reached directly. Houses outside require you to drive to the main road first.
A very common mask is 255.255.255.0, also written as /24. On a typical home network, a client like 192.168.1.25 with a /24 mask treats 192.168.1.1 through 192.168.1.254 as local. In other words, the first three numbers define the neighborhood, and the last number identifies a specific device.
Other masks exist, but for client troubleshooting you often focus on recognizing what "normal" looks like for the site. When the mask is wrong, the symptoms can be confusing:
- Sometimes you can reach some local devices but not others, because the client mislabels part of the local subnet as remote.
- In other cases, the client thinks a remote host is local, so it tries to ARP for it on the local LAN. Since that remote host is not actually on the LAN, the connection fails.
- You may also see slow timeouts, because the client wastes time attempting local delivery before giving up.
The key point is that the subnet mask does not "block" traffic by itself. Instead, it changes the client's decision about how to send traffic. That decision controls whether the client sends frames directly to a neighbor, or forwards packets to the default gateway.
When you troubleshoot, compare three values together: the IP address, the subnet mask, and the default gateway. If the gateway's IP does not look local under the mask, the client cannot reach it reliably.
Default gateway, the exit door to other networks
The default gateway is the router address the client uses to reach anything outside the local subnet. On most networks, it is the router's interface IP on that LAN, such as 192.168.1.1 or 10.0.0.1. If the subnet is your neighborhood, the gateway is the exit road.
The classic symptom of a missing or bad gateway is simple: local access works, internet access fails. You might still print to a local printer or open a shared folder on a nearby PC, yet web pages will not load.
Two common failure modes stand out:
- Missing gateway: The client can talk to local IPs, but it has no "next hop" for off-subnet traffic. As a result, packets to the internet never leave the LAN.
- Wrong gateway: The client sends off-subnet traffic to an address that is not a router, or not reachable. The traffic goes nowhere, and timeouts follow.
Because the gateway is so central, a quick mental check helps: the gateway IP should sit in the same subnet as the client's IP. If a client is 192.168.1.25/24 but the gateway is 192.168.0.1, the client may fail to reach it even though both addresses look similar.
In short, when only off-network destinations fail, the default gateway deserves attention early in the process.
DNS settings, how names turn into IP addresses
DNS (Domain Name System) translates human-friendly names into IP addresses. People type intranet.company.local or www.example.com, not 93.184.216.34. DNS makes that name-based workflow possible.
The resolution process is straightforward:
- You enter a name in a browser or an app.
- The client asks its configured DNS server for the IP address.
- The client connects to that IP address using normal routing.
This is why DNS problems often look like "the internet is down," even when routing is fine. A strong troubleshooting clue is the contrast between name and IP behavior:
- If you cannot browse by name, but you can reach a site by IP, your network path likely works, and DNS is the issue.
- If you cannot reach by IP either, the problem is more likely IP addressing, subnetting, gateway, or upstream connectivity.
Most clients support a primary and secondary DNS server. The secondary is not faster by default. It is simply a backup if the primary does not respond. Misconfigured DNS settings can also cause uneven results, where some names resolve and others fail, depending on which server answers.
Public DNS servers are sometimes used for reliability or for testing, especially when you suspect an internal DNS server is down. Still, on business networks, internal DNS often hosts internal zones and records. If you swap to public DNS, internal names may stop resolving even though public sites work.
Static vs. dynamic addressing, when to set it and what can go wrong
A client can get network settings in two main ways: dynamic addressing (DHCP) or static addressing.
With DHCP, the client requests an IP configuration from a DHCP server (often the router on small networks). It typically receives an IP address, subnet mask, default gateway, DNS servers, and a lease time. DHCP reduces manual errors and fits devices that move between networks, such as laptops and phones.
With static addressing, you enter the settings manually. Static makes sense when you need a predictable address, for example:
- Printers, so users and print servers always find them
- Servers, so services remain reachable at a known IP
- Management interfaces (switches, access points, firewalls), so admins can consistently sign in
Static settings fail most often because of avoidable mismatches:
- A static IP set outside the subnet (for example,
192.168.2.50on a192.168.1.0/24network), which breaks local reachability and gateway access. - A static IP set inside the DHCP pool, which can cause IP conflicts when DHCP later assigns that same address to another device.
- Manually set wrong DNS servers, which makes name lookups fail even when basic connectivity works.
A good practice is to keep a clear plan: either reserve addresses in DHCP (common for printers), or use static addresses that sit outside the DHCP pool but still inside the correct subnet. That single decision prevents many "it worked yesterday" tickets.
DHCP vs Static
For CompTIA A+ Core 2 (220-1202), Domain 1, Objective 1.7, you need to choose between DHCP and static network settings based on the device's role and the cost of downtime. In most client environments, the safest default is the one that reduces human error. At the same time, some devices must stay reachable at a known address, even after reboots or power loss.
A practical rule helps: use DHCP for devices that move or change often, and use fixed addressing (static or reserved) for devices that others depend on. The goal is not control for its own sake, it is predictable service with fewer support tickets.
When DHCP is the right default for clients
DHCP works well as the default for most endpoints because it removes manual steps. Every manual field you type is another chance to enter the wrong subnet mask, gateway, or DNS server. With DHCP, the client asks a DHCP server (often the router) for a complete configuration, so setup stays consistent across the site.
In a typical DHCP exchange, the client receives the key values required for basic connectivity:
- IP address: the host's unique address on that subnet.
- Subnet mask: defines what the client treats as local.
- Default gateway: the route off the local network.
- DNS servers: the servers that resolve names to IP addresses.
This matters for troubleshooting because DHCP often fixes "mystery" issues that come from mismatched settings. For example, if a user manually set public DNS on a business laptop, internal names may fail. When you switch the client back to DHCP, it can pick up the correct internal DNS again.
Lease time is the other basic concept to understand. A DHCP server does not give an address forever. Instead, it assigns an address for a lease period, such as a few hours or days. Midway through that period, the client tries to renew the lease. If the network changed since the original lease (new gateway, new DNS, different scope options), a renewal can pull in the updated values without you touching each device.
When a client behaves oddly after a network change, renewing the DHCP lease can act like a "fresh set of directions" from the network.
From a support standpoint, DHCP also improves recovery. If a client grabs a bad configuration due to a transient issue, a lease renew can replace it with a clean set of parameters. As a result, DHCP reduces downtime on common devices like laptops, tablets, and conference-room PCs, especially when users move between VLANs, Wi-Fi networks, or docking stations.
When static settings are worth the extra work
Static addressing takes more effort because you must enter the IP address, subnet mask, gateway, and DNS manually. Still, the extra work pays off when a device must remain easy to find. In these cases, the cost of an address change is higher than the cost of maintaining the configuration.
Common scenarios where static settings make sense include:
- Printers: Users, print servers, and scan-to-folder workflows often store a printer's IP.