Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stefansundin/traceroute-mapper

Map your traceroutes easily.
https://github.com/stefansundin/traceroute-mapper

map traceroute webapp

Last synced: 3 days ago
JSON representation

Map your traceroutes easily.

Awesome Lists containing this project

README

        

# traceroute-mapper

Run it from your terminal:

### Linux

Put this in your `.bashrc`:

```bash
function traceroute-mapper {
xdg-open "https://stefansundin.github.io/traceroute-mapper/?trace=$(traceroute -q1 $* | sed ':a;N;$!ba;s/\n/%0A/g')"
}
```

Then simply run: `traceroute-mapper example.com`

### Mac

Put this in your `.bash_profile`:

```bash
function traceroute-mapper {
open "https://stefansundin.github.io/traceroute-mapper/?trace=$(traceroute -q1 $*)"
}
```

Then simply run: `traceroute-mapper example.com`

### Windows

Put [traceroute-mapper.bat](https://stefansundin.github.io/traceroute-mapper/traceroute-mapper.bat) in your `%PATH%` (e.g. `C:\Windows\`).

Then open cmd and run: `traceroute-mapper example.com`