Network: 100.64.0.0/10 MagicDNS: Enabled (optional) ACLs: Default (all nodes can reach each other)
Known IPs
Node
Tailscale IP
Last Seen
Legion
100.81.208.117
2026-02-22
MacBook Air
(dynamic)
Current
VPS1
TBD
TBD
Commands
# Check Tailscale statustailscale status# List all nodestailscale status --json | jq '.Peer[] | .HostName, .TailscaleIPs'# SSH via Tailscaletailscale ssh user@hostname
SSH Config
Location:~/.ssh/config
# Legion (Fedora jump host)
Host legion
HostName 100.81.208.117
User nosos
IdentityFile ~/.ssh/id_ed25519
# VPS1 via Legion
Host vps1
HostName [vps1-tailscale-ip or public-ip]
User [username]
ProxyJump legion
IdentityFile ~/.ssh/id_ed25519
# VPS2
Host vps2
HostName [vps2-ip]
User [username]
ProxyJump legion
# Lenovo
Host lenovo
HostName [lenovo-tailscale-ip]
User [username]
Quick Commands
Check All Nodes
# Ping all Tailscale nodestailscale ping legiontailscale ping vps1
Check VPS Gateway
# From Mac (via Legion)ssh legion "ssh vps1 'curl -s http://127.0.0.1:18789/status'"# Direct (if on Tailscale)curl http://[vps1-tailscale-ip]:18789/status