The diagnostics page lets you run standard network troubleshooting tools directly on the router without opening a terminal. Commands are executed on the router over SSH, so results show connectivity and DNS resolution from the router’s perspective — not the web server’s.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/KevinCruz-cell/Redes-de-comunicaciones-/llms.txt
Use this file to discover all available pages before exploring further.
Accessing diagnostics
Navigate to/router3/diagnosticos. You must be logged in to access this page.
Available tools
Ping
Tests reachability of a host by sending ICMP packets. Reports round-trip time and packet loss.
Traceroute
Maps each hop between the router and the destination. Output is numeric — no DNS lookups are performed during the trace.
Nslookup
Resolves a hostname or IP address using the router’s configured DNS servers.
How to run a diagnostic
Enter a destination
Type a hostname (e.g.
google.com) or an IP address (e.g. 8.8.8.8) into the destination field. The destination field is required.Command reference
Each tool maps to a specific shell command executed on the router.- Ping
- Traceroute
- Nslookup
Command:
ping -c 5 -W 2 <destination>Sends 5 ICMP echo requests with a 2-second wait timeout per packet.-c 5— send exactly 5 packets-W 2— wait up to 2 seconds for each reply before marking a packet lost
Input validation
The server validates both fields before opening an SSH connection:| Field | Rule |
|---|---|
accion | Must be one of ping, traceroute, or nslookup |
destino | Required; accepts hostnames or IP addresses |
422 response with details about which field is invalid.
Understanding results
All output comes from the router, not the web server. A successful ping result means the router can reach the destination. If the router is behind NAT or has restricted routing, results may differ from what you see on your local machine.