CCST Network Troubleshooting & Tools 2 — Questions and Answers
Question 1: A user reports intermittent connectivity drops every few minutes. Which tool would BEST help identify whether the issue is packet loss or latency spikes?
- ipconfig
- ping with extended count (Correct answer)
- arp -a
- netstat -r
Correct answer: ping with extended count
Running ping with a high count (e.g., ping -n 100) over time reveals packet loss percentages and latency variations.
Question 2: Which command displays the current ARP cache on a Windows system?
- arp -d
- arp -a (Correct answer)
- arp -s
- arp -n
Correct answer: arp -a
The arp -a command displays all current ARP cache entries mapping IP addresses to MAC addresses.
Question 3: A technician uses traceroute and sees that hop 5 shows '* * *' but hop 6 responds normally. What does this most likely indicate?
- The route is broken at hop 5
- Hop 5 blocks ICMP/UDP but forwards traffic (Correct answer)
- Hop 6 is misconfigured
- The destination is unreachable
Correct answer: Hop 5 blocks ICMP/UDP but forwards traffic
A router can be configured to drop ICMP TTL-exceeded messages while still forwarding traffic normally, causing asterisks in traceroute output.
Question 4: Which Cisco IOS command shows the status of all interfaces including IP addresses and line/protocol state?
- show ip route
- show interfaces
- show ip interface brief (Correct answer)
- show running-config
Correct answer: show ip interface brief
The 'show ip interface brief' command provides a concise summary of all interfaces with their IP address, status, and protocol state.
Question 5: A workstation can ping its default gateway but cannot reach the internet. What should the technician check NEXT?
- Check if DHCP is running on the workstation
- Verify the default gateway's routing table and WAN connectivity (Correct answer)
- Re-image the workstation
- Replace the network cable
Correct answer: Verify the default gateway's routing table and WAN connectivity
Since the gateway is reachable, the issue is likely upstream — the gateway's WAN link or routing table should be checked next.
Question 6: What does the output 'Request timed out' from a Windows ping command indicate?
- The DNS name could not be resolved
- The destination did not respond within the timeout period (Correct answer)
- The local NIC is disabled
- The TTL reached zero before arriving
Correct answer: The destination did not respond within the timeout period
'Request timed out' means the ICMP echo reply was not received within the default timeout, indicating the host may be unreachable or blocking ICMP.
Question 7: Which tool captures packets on a network interface for deep protocol analysis?
- Nmap
- Wireshark (Correct answer)
- Netstat
- Ipconfig
Correct answer: Wireshark
Wireshark is a packet capture and protocol analysis tool that records all traffic on a network interface for detailed inspection.
A user reports intermittent connectivity drops every few minutes.
Which tool would BEST help identify whether the issue is packet loss or latency spikes?