Intelligent Network Path Visualizer — run path diagnostics from Linux or Windows and get a shareable result page.
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.
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.
/smartroute/TOKEN). Share that link with your team.curl, jq, mtr (auto-install when possible)tracert, outbound HTTPSbash <(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