>
WISP connects to CARRAMint via ttyd over your Tailscale mesh.
Ensure ttyd is running on the target host, then click Connect.
# On CARRAMint (one-time setup):
sudo apt install ttyd
# Generate self-signed cert (or use tailscale cert):
openssl req -x509 -newkey rsa:2048 -nodes \
-keyout ~/.ttyd/key.pem -out ~/.ttyd/cert.pem \
-days 365 -subj '/CN=100.69.17.20'
# Launch with TLS:
ttyd -p 7681 -i 100.69.17.20 \
--ssl-cert ~/.ttyd/cert.pem \
--ssl-key ~/.ttyd/key.pem bash
# Or use the systemd service:
sudo systemctl start wisp-ttyd