Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/stefansundin/traceroute-mapper
- Owner: stefansundin
- License: agpl-3.0
- Created: 2015-12-18T07:40:09.000Z (almost 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2024-10-22T01:18:24.000Z (14 days ago)
- Last Synced: 2024-10-23T00:37:18.850Z (13 days ago)
- Topics: map, traceroute, webapp
- Language: HTML
- Homepage: https://stefansundin.github.io/traceroute-mapper/
- Size: 86.9 KB
- Stars: 286
- Watchers: 6
- Forks: 27
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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`