bad.horse bad.horse

This commit is contained in:
Malin Freeborn 2025-03-20 13:10:43 +01:00
parent fa9c8edb1d
commit b64d9de0c4
Signed by: andonome
GPG Key ID: 52295D2377F4D70F

20
networking/bad_horse.md Normal file
View File

@ -0,0 +1,20 @@
---
title: "Mapping the Net"
tags: [ "networking", "graph", "fun" ]
---
Find the path to a domain:
```sh
domain=bad.horse
max_hops=50
tracepath -m $maximum_hops $domain
```
If you're on Debian, you can use `graph-easy` and `dothost` to make an instant diagram:
```sh
domain=dice.camp
dothost $domain | graph-easy --boxart
```