fix(docs): mask Tailscale IPs with placeholder variables

Replace live 100.x IPs with ,
per SOUL.md convention. Removed stale device IP from
network-ssh-wifi-diagnostics reference.
This commit is contained in:
Sam & Claude 2026-06-21 20:12:45 +02:00
parent 1cfec71dca
commit c3056ac489
2 changed files with 2 additions and 2 deletions

View file

@ -100,7 +100,7 @@ Requires ImageMagick (`ImageMagick7` in the ISO package list; `magick` or
│ Clawdie OS │
│ │
│ hostname osa │
│ tailscale 100.72.229.63
│ tailscale ${OSA_TS_IP}
│ colibri socket 9190 │
│ jail 15.0-RELEASE-p4 │
│ │

View file

@ -81,7 +81,7 @@ LOG="$HOME/.local/state/hermes/net-tests/ssh-wifi-$(date +%Y%m%d-%H%M%S).log"
ss -nti '( sport = :22 or dport = :22 )' 2>/dev/null || true
GW=$(ip route show default | awk '{print $3; exit}')
for target in "$GW" 1.1.1.1 ${DOMEDOG_TS_IP} 100.110.184.11; do
for target in "$GW" 1.1.1.1 ${DOMEDOG_TS_IP}; do
echo "--- ping $target"
ping -c 30 -i 0.2 "$target" 2>&1 | tail -8 || true
done