LicScript Softwares

SMARTROUTE

Intelligent Network Path Visualizer — run path diagnostics from Linux or Windows and get a shareable result page.

0 trace results generated

Quick start · Linux

On a Linux server, run as root (or with sudo). Replace 8.8.8.8 with any IP or hostname you are allowed to test:

bash <(curl -fsSL https://licscript.com/smartroute/run/) 8.8.8.8

Uses mtr. Needs outbound HTTPS; the script can install curl/jq/mtr when a package manager is available.

Quick start · Windows

Open PowerShell (no admin required). Built-in tracert is used — no extra installs:

& ([scriptblock]::Create((iwr -useb https://licscript.com/smartroute/run/win.ps1).Content)) 8.8.8.8

If script download is blocked by policy, save then run:

iwr -useb https://licscript.com/smartroute/run/win.ps1 -OutFile $env:TEMP\smartroute.ps1; powershell -NoProfile -ExecutionPolicy Bypass -File $env:TEMP\smartroute.ps1 8.8.8.8

If you see an execution-policy error, use -ExecutionPolicy Bypass as in the save-then-run command above.

How to use

  1. Open a terminal on the host that should source the path (Linux root shell or Windows PowerShell).
  2. Paste the one-liner for your OS and set the target (IP or domain).
  3. Wait for the trace — Linux uses mtr; Windows uses tracert. Hops are geo/ASN enriched server-side.
  4. Open the result URL printed in the terminal (looks like /smartroute/TOKEN). Share that link with your team.

What you get

Requirements

More Linux examples

bash <(curl -fsSL https://licscript.com/smartroute/run/) 1.1.1.1
bash <(curl -fsSL https://licscript.com/smartroute/run/) example.com

If process substitution is blocked, fetch then run:

curl -fsSL https://licscript.com/smartroute/run/ -o /tmp/smartroute.sh && bash /tmp/smartroute.sh 8.8.8.8