A user reports that they cannot reach a website. The administrator wants to check the path that packets take to the destination server. Which command should be used?
Trap 1: ip addr
ip addr shows IP addresses on the local host.
Trap 2: ss
ss shows socket statistics, not routing path.
Trap 3: ping
ping only tests connectivity, not the path.
- A
ip addr
Why wrong: ip addr shows IP addresses on the local host.
- B
ss
Why wrong: ss shows socket statistics, not routing path.
- C
traceroute
traceroute shows the hop-by-hop path to the destination.
- D
ping
Why wrong: ping only tests connectivity, not the path.