nerdexam
CompTIA

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.

Troubleshooting and Diagnostics

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)
  • A
    11% (2)
  • B
    5% (1)
  • C
    5% (1)
  • D
    79% (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.

Atcpdump

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.

Bnmap

nmap scans hosts and open ports; it does not trace routing hops or identify where along a network path connectivity is lost.

Cdig

dig performs DNS lookups to resolve hostnames to IP addresses; it does not trace network paths or reveal routing failures between hops.

DtracerouteCorrect

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

#traceroute#network diagnostics#firewall#ping

Community Discussion

No community discussion yet for this question.

Full XK0-004 Practice