Enable the SSH daemon and connect to a host (server or service) using your config aliases.
sudo systemctl enable --now sshdYour SSH aliases live in ~/.ssh/config. Instead of repeating the block here, see the annotated
example in SSH Keys → Set nickname of ssh key.
Each Host block maps a short alias (e.g. dojo) to a real HostName (e.g. dojo.pwn.college),
so you can type the alias instead of the full address.
# Test the connection
ssh -T <Host/HostName>
# Actually connect to the service
ssh <Host/HostName>NOTE:
- GitHub shows a "successfully authenticated" message but doesn't provide a shell.
- pwn.college provides a shell when there is an active challenge.