Challenge - 5 Problems
Traceroute Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
💻 Command Output
intermediate1:30remaining
What is the output of this traceroute command?
You run the command
traceroute -m 3 example.com. What does the -m 3 option do?Linux CLI
traceroute -m 3 example.comAttempts:
2 left
💡 Hint
Think about what 'max hops' means in network path tracing.
✗ Incorrect
The
-m option sets the maximum number of hops traceroute will probe before stopping. Here, it limits the trace to 3 hops.💻 Command Output
intermediate1:30remaining
What does this traceroute output indicate?
You run
What does this line mean?
traceroute example.com and see this output for the first hop:1 192.168.1.1 1.123 ms 1.045 ms 1.012 ms
What does this line mean?
Linux CLI
traceroute example.com
Attempts:
2 left
💡 Hint
The first hop is usually your local router or gateway.
✗ Incorrect
The first hop IP is the first device traceroute reaches, usually your router. The times show how long each probe took.
🔧 Debug
advanced1:30remaining
Why does this traceroute command fail with 'command not found'?
You type
traceoute example.com but get bash: traceoute: command not found. What is the problem?Linux CLI
traceoute example.com
Attempts:
2 left
💡 Hint
Check the spelling carefully.
✗ Incorrect
The command is misspelled as 'traceoute' instead of 'traceroute'.
🚀 Application
advanced2:00remaining
How to save traceroute output to a file for later analysis?
You want to run
traceroute example.com and save the output to a file named trace.txt. Which command does this correctly?Attempts:
2 left
💡 Hint
Think about how output redirection and tee work.
✗ Incorrect
All options save output to a file: '>' overwrites, '>>' appends, and 'tee' writes and shows output.
🧠 Conceptual
expert2:00remaining
What does an asterisk (*) mean in traceroute output?
In traceroute output, sometimes you see lines like:
What does this mean?
4 * * *
What does this mean?
Attempts:
2 left
💡 Hint
Think about what no response means in network tracing.
✗ Incorrect
Asterisks mean the probe did not get a reply within the timeout period from that hop.