2 examples for traceroute

{{ score }}
  # Traceroute show the packet path from your computer to a specified IP address or hostname
traceroute IP_ADDR\HOSTNAME 

# -n : Disable DNS lookup to speed up queries.
# -w seconds : Set the time (in seconds) to wait for a response to a probe (default 5.0 sec).
# -q NUMBER : Sets the number of probe packets per hop. The default is 3.
# The following example will wait 3 seconds (instead of 5), only send out 1 query to each hop (ineader of 3):
traceroute -n -w 3 -q 1 www.cyberciti.biz
        
{{ score }}
  # trace with TCP packets on port 80
traceroute -P TCP -p 80 heise.de