Common problems

4.5 Given a scenario, troubleshoot network connectivity issues.

📘CompTIA Server+ (SK0-005) 


Network connectivity problems happen when a device (server, computer, or network appliance) cannot communicate with other devices, the internet, or specific resources on a network. Troubleshooting these issues requires a methodical approach to identify the root cause and fix it.

Here are the common network connectivity problems and how to understand and troubleshoot them:


1. Lack of Internet Connectivity

What it means: The device cannot access the internet at all.

Causes:

  • Network cable unplugged or damaged
  • Incorrect IP settings (IP address, subnet mask, gateway)
  • Router or switch failure
  • Firewall blocking traffic
  • ISP (Internet Service Provider) outage

Troubleshooting steps:

  1. Check if the network cable is connected and the link light on the NIC (Network Interface Card) is on.
  2. Verify IP configuration using commands like:
    • ipconfig (Windows)
    • ifconfig or ip addr (Linux)
  3. Test local network connectivity:
    • Ping the gateway (ping 192.168.1.1) to see if you can reach the router.
  4. Test external connectivity:
    • Ping an external IP (like 8.8.8.8) to check if the internet works.
  5. Check firewall settings or antivirus that may block connections.
  6. Contact ISP if all internal checks are fine.

2. Resource Unavailable

What it means: A specific server, share, or service cannot be accessed.

Causes:

  • The target device is offline
  • Service is stopped on the target server
  • Incorrect permissions
  • Network route to the device is broken

Troubleshooting steps:

  1. Check if the device hosting the resource is powered on.
  2. Verify that the service is running (like DNS, HTTP, or file sharing service).
  3. Check permissions and access rights.
  4. Use ping or tracert to see if the path to the resource is reachable.

3. Receiving Incorrect DHCP Information

What it means: Your device is getting wrong IP settings from DHCP, causing connectivity problems.

Causes:

  • DHCP server misconfigured
  • Multiple DHCP servers on the same network
  • IP address conflicts

Troubleshooting steps:

  1. Check the IP address and subnet mask received:
    • ipconfig /all (Windows)
    • cat /etc/network/interfaces or ip addr (Linux)
  2. Release and renew IP from DHCP:
    • ipconfig /release then ipconfig /renew
  3. Verify that only the intended DHCP server is active.
  4. Check for IP conflicts using arp -a.

4. Non-functional or Unreachable Network

What it means: The device is connected but cannot reach other devices.

Causes:

  • Network cable or port failure
  • Switch or router failure
  • Incorrect VLAN assignment
  • IP misconfiguration

Troubleshooting steps:

  1. Verify NIC status and link lights.
  2. Check IP configuration.
  3. Test connectivity to immediate network devices (gateway, switch) using ping.
  4. Verify VLAN assignment and switch port configuration.
  5. Replace cables or test different ports if needed.

5. Destination Host Unreachable

What it means: When you ping a device, the system reports that the destination cannot be reached.

Causes:

  • Device is powered off or disconnected
  • Routing issues
  • Firewall blocking ICMP (ping)
  • Incorrect subnet mask or gateway configuration

Troubleshooting steps:

  1. Check if the target device is online.
  2. Verify the routing table:
    • route print (Windows)
    • ip route (Linux)
  3. Ensure firewalls allow ICMP for testing.
  4. Verify subnet masks on both source and target.

6. Unknown Host

What it means: The hostname or FQDN cannot be resolved to an IP address.

Causes:

  • DNS server unavailable
  • Typo in hostname
  • Incorrect DNS configuration
  • Missing DNS record

Troubleshooting steps:

  1. Test with ping hostname or nslookup hostname.
  2. Check DNS server settings in IP configuration.
  3. Verify that the DNS server has the correct record.
  4. Test DNS resolution with a public DNS (like 8.8.8.8) to isolate if it’s local DNS or network-wide.

7. Unable to Reach Remote Subnets

What it means: Devices on a local network cannot communicate with devices on a different subnet.

Causes:

  • Missing or incorrect routes
  • Router or firewall blocking traffic
  • Wrong gateway configuration

Troubleshooting steps:

  1. Check default gateway settings.
  2. Use tracert or traceroute to identify where the packets fail.
  3. Verify routing tables on routers and firewalls.
  4. Confirm subnet masks and network addresses are correctly set.

8. Failure of Service Provider

What it means: The ISP or upstream service that provides network access is down.

Causes:

  • ISP outage
  • Fiber/cable cut or degraded signal
  • ISP DNS issues

Troubleshooting steps:

  1. Check connectivity to ISP’s gateway.
  2. Test with external IP addresses (ping 8.8.8.8) to see if the issue is DNS or full internet.
  3. Contact ISP if the problem is outside your network.

9. Cannot Reach Server by Hostname/FQDN

What it means: You can access a server by IP, but not by its hostname.

Causes:

  • DNS resolution failure
  • Hosts file misconfigured
  • Cache issues

Troubleshooting steps:

  1. Test with ping hostname and ping IP.
  2. Check DNS server configuration.
  3. Flush DNS cache:
    • ipconfig /flushdns (Windows)
    • systemd-resolve --flush-caches (Linux)
  4. Confirm that the hostname is correctly registered in DNS.

Tips for Exam Success

  • Always start troubleshooting from the client device toward the server or service.
  • Use commands like ping, tracert/traceroute, ipconfig/ifconfig, and nslookup.
  • Understand the difference between physical issues (cables, NICs, switches) and logical issues (IP settings, DNS, routing).
  • Remember key error messages like “Destination host unreachable” or “Unknown host” and what they indicate.
Buy Me a Coffee