Testing your SSH connection - giobim/Some-help-from-my-Friends GitHub Wiki

After you've set up your SSH key and added it to your GitHub account, you can test your connection.

Before testing your SSH connection, you should have:

When you test your connection, you'll need to authenticate this action using your password, which is the SSH key passphrase you created earlier. For more information on working with SSH key passphrases, see "Working with SSH key passphrases".

  1. Open a shell
  2. Enter the following y substituting the address of your Login-Node:
$ ssh -T [email protected]
# Attempts to ssh to Login Node Server

You may see one of these warnings:

The authenticity of host 'somehost.com (192.30.252.1)' can't be established.
RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48.
Are you sure you want to continue connecting (yes/no)?

or

The authenticity of host 'somehost.com (192.30.252.1)' can't be established.
RSA key fingerprint is nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
Are you sure you want to continue connecting (yes/no)?
  1. Verify that the fingerprint in the message you see matches the following message, then type yes
  2. If you see a message that contains "access denied," see "Error: Permission denied (publickey)". You can read these instructions for diagnosing the issue.