CompTIA Network+ - Network Troubleshooting Tools

By Jordan Blake · Updated Jul 10, 2026

Questions19
Passing Score75%
Format53% Multiple Choice
Sessions Logged555
Your progressLog in / Register to track times taken, best score, questions mastered, and coverage on this quiz.
Rating
Community rating 4.5 out of 5 from 29 ratings.
4.5 (29)

Topics covered

This quiz

Uncategorized19 (100%)

Uncategorized19 questions

Discussion

Log in to post a comment, reply, or expand a question.

Q-5829

Question Q-5829 When using Wireshark to troubleshoot a slow web application, which…

1 comment · last active Jun 3, 2026

  • fafsadude · Jun 3, 6:13 AM

    ipconfig /flushdns clears stale DNS cache — quick fix when only one site fails by name.

Q-5820

Question Q-5820 What information does netstat provide?

1 comment · last active May 9, 2026

  • duther1 · May 9, 1:19 AM

    netstat shows connections/listening ports — pair with Task Manager to find owning process.

Q-5818

Question Q-5818 What does the nslookup command do?

1 comment · last active Apr 29, 2026

  • beamerblue · Apr 29, 7:35 PM

    nslookup/dig for DNS — if nslookup fails but ping IP works, suspect DNS not routing.

Q-5817

Question Q-5817 The traceroute (tracert in Windows) command shows the path packets…

1 comment · last active Feb 22, 2026

  • hamessmith · Feb 22, 2:31 AM

    tracert/traceroute shows each hop RTT — great for finding where latency spikes.

Q-5824

Question Q-5824 What does a packet capture reveal that ping does not?

1 comment · last active Feb 20, 2026

  • samanthamurphy · Feb 20, 6:21 AM

    Packet capture sees retransmits, TLS issues, malformed packets — ping only says up/down.

Q-5816

Question Q-5816 Which command displays your computer's IP address, subnet mask, and…

1 comment · last active Feb 18, 2026

  • Orbo · Feb 18, 4:48 AM

    ipconfig on Windows, ifconfig/ip on Linux. Default gateway wrong = can't leave subnet.

    +1 votes
Q-5822

Question Q-5822 What is the primary use of nmap?

1 comment · last active Feb 9, 2026

  • LostBoy611 · Feb 9, 10:13 PM

    nmap discovers hosts/ports/services — SYN scan is stealthier than full TCP connect.

    +1 votes
Q-5815

Question Q-5815 What does the ping command test?

1 comment · last active Feb 5, 2026

  • gijoejane · Feb 5, 11:24 PM

    ping tests ICMP reachability — doesn't mean the app works (firewall can block ICMP but allow HTTPS).

Question catalog for this preview

Catalog listing of the 5 preview questions for this quiz.

Question 1

?? Multiple Choice (Hard)

When running "netstat -an" and observing a LISTENING TCP port you don't recognize, what is your next troubleshooting step?

Answer choices

  • A. Immediately block the port in the firewall

  • B. Identify the process using the port via "netstat -anb" (Windows) or "ss -tulnp" (Linux), then investigate (Correct)

  • C. Reboot the server to clear all connections

  • D. Disable the network adapter to prevent further activity

Explanation

netstat -anb (Windows admin) or ss -tulnp (Linux) shows the process (PID and name) bound to each port. Then use: Task Manager / ps aux to see full process details; check process hash against VirusTotal; verify with vendor if it's a known legitimate service. If confirmed malicious: isolate the system, document, follow incident response procedures.

Question 2

?? True/False (Hard)

A protocol analyzer (like Wireshark) placed between two network devices can detect a man-in-the-middle attack in progress by revealing unexpected certificate changes.

Answer choices

  • A. True (Correct)

  • B. False

Explanation

A packet capture can reveal MITM indicators: unexpected certificate serial numbers or issuer chains, certificate validity period mismatches, or encrypted traffic using unexpected cipher suites. HTTP traffic shows cleartext credential theft directly. IDS/IPS systems and SIEM tools automate this detection. Certificate pinning in applications prevents MITM even when CAs are compromised.

Question 3

?? True/False (Easy)

The traceroute (tracert in Windows) command shows the path packets take to reach a destination and the delay at each hop.

Answer choices

  • A. True (Correct)

  • B. False

Explanation

Traceroute works by sending packets with increasing TTL values (starting at 1). Each router decrements TTL; when it reaches 0, the router discards the packet and sends an ICMP Time Exceeded message back — revealing that router's IP. Traceroute identifies network bottlenecks, routing loops, and points of packet loss.

Question 4

?? Multiple Choice (Easy)

What does the ping command test?

Answer choices

  • A. DNS resolution of a hostname

  • B. Basic network connectivity and round-trip time to a host using ICMP echo requests (Correct)

  • C. The route packets take to a destination

  • D. Open TCP ports on a remote host

Explanation

Ping sends ICMP Echo Request packets to a target and waits for Echo Reply responses. It reports: round-trip time (RTT), packet loss, and TTL. Useful for verifying basic connectivity. If ping fails, check: host reachability, firewall blocking ICMP, IP routing. Some firewalls block ICMP, causing false failures.

Question 5

?? Multiple Choice (Easy)

Which command displays your computer's IP address, subnet mask, and default gateway in Windows?

Answer choices

  • A. ifconfig

  • B. ipconfig (Correct)

  • C. ip addr

  • D. netstat -i

Explanation

ipconfig (Windows) displays IP configuration for all adapters. ipconfig /all shows full details including MAC address, DNS servers, DHCP status. ipconfig /release and /renew manage DHCP leases. ipconfig /flushdns clears the DNS cache. Linux/macOS equivalents: ifconfig (deprecated) and ip addr (iproute2).