1.7 Given a scenario, configure Microsoft Windows networking features on a client/desktop
📘CompTIA A+ Core 2 (220-1202)
Client network configuration defines how a Windows computer connects to a network and the internet.
Without correct configuration, a client cannot:
- Access the internet
- Reach file servers
- Connect to printers
- Communicate with domain resources
For the exam, you must understand what each setting does, how they work together, and when to use static or dynamic settings.
1. Internet Protocol (IP) Addressing Scheme
What is an IP address?
An IP address is a unique number assigned to a device on a network.
It identifies:
- The device itself
- The network it belongs to
Windows clients need an IP address to communicate with:
- Other computers
- Servers
- Network devices
- The internet
IPv4 (Exam Focus)
CompTIA A+ focuses mainly on IPv4.
An IPv4 address:
- Uses 32 bits
- Written as four numbers separated by dots
- Each number ranges from 0 to 255
Example format:
192.168.1.10
Parts of an IP Address
An IPv4 address has two parts:
- Network portion – Identifies the network
- Host portion – Identifies the device on that network
The subnet mask determines which part is network and which is host.
Common Private IP Ranges (Know for Exam)
Private IP addresses are used inside internal networks.
| Class | Range |
|---|---|
| Class A | 10.0.0.0 – 10.255.255.255 |
| Class B | 172.16.0.0 – 172.31.255.255 |
| Class C | 192.168.0.0 – 192.168.255.255 |
These do not route on the internet and are commonly used in corporate and home networks.
2. Subnet Mask
What is a Subnet Mask?
A subnet mask tells the computer:
- Which part of the IP address is the network
- Which part is the host
Without a subnet mask, the client does not know:
- Which devices are local
- Which traffic must go to the gateway
Common Subnet Masks (Exam Critical)
| Subnet Mask | CIDR | Meaning |
|---|---|---|
| 255.255.255.0 | /24 | Most common for small networks |
| 255.255.0.0 | /16 | Larger internal networks |
| 255.0.0.0 | /8 | Very large networks |
Example:
IP Address: 192.168.1.20
Subnet Mask: 255.255.255.0
This means:
- Network = 192.168.1.0
- Host range = 192.168.1.1 to 192.168.1.254
Why Subnet Mask Is Important
- Determines if traffic is local or remote
- Prevents network communication errors
- Required for proper routing
3. Default Gateway
What is a Gateway?
A default gateway is the device that connects the local network to other networks, including the internet.
Usually, the gateway is:
- A router
- A firewall appliance
What Does the Gateway Do?
If a Windows client wants to communicate:
- Inside the same network → Direct communication
- Outside the network → Traffic is sent to the gateway
Without a gateway:
- Local network access works
- Internet access fails
Example Gateway Address
192.168.1.1
Typically:
- First usable IP address in the network
- Configured on routers or firewalls
Exam Tip
If a computer:
- Can access local resources
- Cannot access the internet
👉 Gateway is missing or incorrect
4. Domain Name System (DNS) Settings
What is DNS?
DNS translates names into IP addresses.
Humans use names like:
fileserver.company.local
www.microsoft.com
Computers use IP addresses:
10.0.0.5
20.112.52.29
DNS connects the two.
Why DNS Is Critical
Without DNS:
- Websites will not load using names
- Domain resources may not work
- Email servers may fail
DNS Server Configuration
A Windows client must know:
- Primary DNS server
- Optional secondary DNS server
These are usually:
- Domain controllers (in a domain)
- ISP DNS servers
- Internal DNS servers
DNS in a Domain Environment (Exam Important)
When a computer is domain-joined:
- DNS must point to the domain controller
- External DNS is handled by forwarding
Incorrect DNS causes:
- Domain login failures
- Group Policy not applying
- Server name resolution errors
Exam Tip
If a domain-joined PC:
- Can access the internet
- Cannot access domain resources
👉 DNS is misconfigured
5. Static vs. Dynamic Configuration
Dynamic IP Addressing (DHCP)
What is DHCP?
Dynamic Host Configuration Protocol (DHCP) automatically assigns:
- IP address
- Subnet mask
- Gateway
- DNS servers
How DHCP Works (High Level)
- Client boots
- Requests network configuration
- DHCP server responds
- Client receives settings automatically
Advantages of DHCP
- Easy to manage
- Reduces configuration errors
- Centralized control
- Best for most client computers
Exam Use Case
- End-user workstations
- Laptops
- General client devices
Static IP Addressing
What is Static Configuration?
IP settings are:
- Manually entered
- Do not change automatically
When Static IP Is Used
- Servers
- Printers
- Network devices
- Systems that must always have the same IP
Disadvantages of Static IP
- More administrative work
- Higher risk of IP conflicts
- Not scalable for large networks
Comparison Table (Exam Ready)
| Feature | Static | Dynamic (DHCP) |
|---|---|---|
| Manual setup | Yes | No |
| Automatic assignment | No | Yes |
| Risk of conflict | Higher | Lower |
| Common use | Servers, printers | Client PCs |
| Easy to manage | No | Yes |
6. Windows Client Network Configuration Locations (Exam Awareness)
You should know where these settings are configured:
Graphical Interface
Settings → Network & Internet → Advanced network settings → More network adapter options
Then:
- Open adapter properties
- Configure IPv4 settings
Command-Line Tools (Know Names)
ipconfig– View IP configurationipconfig /all– Detailed informationping– Test connectivitynslookup– Test DNS resolution
7. Common Client Network Issues (Exam Scenarios)
| Problem | Likely Cause |
|---|---|
| No internet | Missing/incorrect gateway |
| Can’t access websites by name | DNS issue |
| IP starts with 169.254.x.x | DHCP failure |
| Can’t access domain resources | DNS misconfiguration |
| Duplicate IP warning | Static IP conflict |
Key Exam Takeaways
- IP address identifies the device
- Subnet mask defines the network size
- Gateway connects to other networks
- DNS resolves names to IP addresses
- DHCP automatically assigns network settings
- Static IPs are manually configured and fixed
