network-traceroute
Trace the network path to any host, showing each hop and response time. Diagnose slow or broken connections by locating where packets are delayed or dropped.
Instructions
Trace the route that packets take to reach a destination host.
USE CASES:
- Identify network path between source and destination
- Diagnose where network latency is occurring
- Find broken or slow network hops
- Understand network topology for debugging
WHAT IT DOES:
- Sends packets with increasing TTL (Time To Live) values
- Each router along the path decrements TTL and returns its IP
- Shows all intermediate hops between your machine and target
PARAMETERS:
- host: Required. The hostname or IP address to trace (e.g., 'cloudflare.com')
- max_hops: Optional. Maximum number of hops to trace (default: 30)
- timeout: Optional. Seconds to wait for each hop response (default: 5)
OUTPUT:
- List of all hops (routers) along the path
- IP address of each hop
- Round-trip time for each hop
- Shows '* * *' for hops that don't respond
NOTE: On Windows, this command is called 'tracert' instead of 'traceroute'Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | Yes | The hostname or IP address to trace route to (e.g., 'example.com') | |
| timeout | No | Seconds to wait for each hop response (default: 5) | |
| max_hops | No | Maximum number of hops to trace (default: 30) |