Discover the hop-by-hop path and the path MTU to a host quickly and without superuser rights. 17.05.2026 | reading time: 2 min Want to see each hop to a remote host and learn the largest packet that can cross the path without fragmentation? Use tracepath to map hops and probe path MTU from an ordinary user account; it reveals latency per hop and reports "pmtu" when discovered. Run it now: a short demo Do this on a shell: ```tracepath example.com 1: 192.168.1.1 1.123ms pmtu 1500 2: 10.0.0.1 5.234ms 3: 203.0.113.5 20.456ms 4: 93.184.216.34 30.789ms reached``` The output shows hop number, address and round‑trip times; "pmtu 1500" marks the discovered path MTU and "reached" marks arrival at the destination. When MTU or reachability breaks things Run tracepath when large packets fail or a service is reachable but data stalls; it actively increases probe sizes until an ICMP "fragmentation needed" (or no reply) reveals a smaller MTU along the path, so you can spot MTU black holes and adjust MSS or MTU settings accordingly. Variants and interpretation Remember tracepath has an IPv6 counterpart called tracepath6 and needs no root privileges, while the numeric IPs and timings help spot slow hops, recurring jitter, or where probes stop being answered; a final "pmtu" line is the key for MTU issues and intermediate starved replies indicate filtering or rate limiting. Complementary utilities Use tracepath as a quick, non‑privileged probe, then follow up with traceroute for protocol choices, mtr for continuous observation, or ping and tcpdump to validate reachability and capture ICMP messages that explain why a particular MTU was reported. Practical next steps Try tracepath to targets inside and outside your LAN, compare results to tracepath6 and traceroute, and when you find MTU mismatches adjust MTU/MSS or firewall rules; deepen skills and prepare for certification by studying routing and troubleshooting, for example with intensive exam training at bitsandbytes.academy toward CompTIA Linux+ or LPIC-1. Join Bits & Bytes Academy First class LINUX exam preparation. network utilities troubleshooting infrastructure