XK0-004 · Question #253
A technician suspects a company's border firewall is down, thus blocking Internet access. The technician executes the following commands: #ping -c 1 firewall.company.com 64 bytes from firewall.company
The correct answer is D. traceroute. The ping confirms the firewall itself is reachable, so traceroute is needed to identify which hop beyond the firewall is dropping packets and causing the Internet outage.
Question
A technician suspects a company's border firewall is down, thus blocking Internet access. The technician executes the following commands:
#ping -c 1 firewall.company.com 64 bytes from firewall.company.com (192.168.1.1): icmp_seq=1 ttl=64 time=0.061ms 16 packets transmitted, 0 received, 100% packet loss, time 14999ms Which of the following commands should the technician use to BEST determine the source of this outage?
Options
- Atcpdump
- Bnmap
- Cdig
- Dtraceroute
How the community answered
(19 responses)- A11% (2)
- B5% (1)
- C5% (1)
- D79% (15)
Why each option
The ping confirms the firewall itself is reachable, so traceroute is needed to identify which hop beyond the firewall is dropping packets and causing the Internet outage.
tcpdump captures raw packet traffic on a network interface for analysis but does not probe routing paths or identify where packets are being dropped in the network.
nmap scans hosts and open ports; it does not trace routing hops or identify where along a network path connectivity is lost.
dig performs DNS lookups to resolve hostnames to IP addresses; it does not trace network paths or reveal routing failures between hops.
traceroute sends probe packets with incrementally increasing TTL values, recording each router along the path until the destination or failure point is reached. Since ping confirmed the firewall responds at 192.168.1.1, traceroute reveals exactly which downstream hop - such as an ISP gateway - is failing. This makes it the best tool to pinpoint the source of the outage.
Concept tested: Network path tracing with traceroute
Source: https://linux.die.net/man/8/traceroute
Topics
Community Discussion
No community discussion yet for this question.