SSH Command
Every Jetson has an assigned port mapped to its ID (xx matches host sjsujetson-xx):
ssh student@headscale.forgengi.org -p 200xx
Example for device sjsujetson-03:
ssh student@headscale.forgengi.org -p 20003
SSH Config Shortcut
Add this block to your computer's ~/.ssh/config to simplify connection and prevent timeouts:
Host jetson-home-03
HostName headscale.forgengi.org
User student
Port 20003
ServerAliveInterval 30
StrictHostKeyChecking no
UserKnownHostsFile /dev/null
Then log in directly from your terminal:
ssh jetson-home-03