Once you have registered your SSH key with the Computer Science research labs, you can use it to securely connect to our servers. Follow the steps below to connect using your SSH key:
On your computer, open a terminal window. This can be done by searching for "Terminal" in your applications menu (on Linux or macOS) or by using an SSH client like PuTTY on Windows.
In the terminal, use the following command to connect to the server:
ssh -i ~/.ssh/id_rsa username@server.ad.siu.edu
Replace id_rsa
with the name of your private key file if you used a different name during the key generation process. Also, replace username
with your Dawgtag (e.g., siu123456789
) and server.cs.siu.edu
with the actual server address provided to you.
The first time you connect, you may see a message asking if you want to continue connecting. Type yes
and press Enter to continue.
Once connected, you will have command-line access to the server and can begin working on your projects.
WinSCP is a popular SFTP and FTP client for Windows that also supports SCP protocol. Follow these steps to use your SSH key with WinSCP:
server.cs.siu.edu
), 'Port number' (usually 22
), and your 'User name' (e.g., siu123456789
).id_rsa
or equivalent). Make sure the key is in the .ppk
format. If it isn't, use PuTTYgen to convert it.Cyberduck is a popular FTP and SFTP client for macOS. Follow these steps to use your SSH key with Cyberduck:
server.cs.siu.edu
), 'Port' (usually 22
), and your 'Username' (e.g., siu123456789
).id_rsa
or equivalent). Ensure it has the proper permissions (run chmod 600 ~/.ssh/id_rsa
).If you encounter any issues, ensure that:
600
(you can set this with chmod 600 ~/.ssh/id_rsa
).If you continue to experience problems, please contact the system administrator for assistance.