You must be on the UCCS campus or connected to VPN to access the system
Do not set your home directory to group or all writeable as it will break ssh strict mode.
Mac or Linux
- Open your preferred terminal
Type the following:
If this is your first time authenticating, you will be prompted with the following message. Type "Yes" to proceed
The authenticity of host 'login.incline.uccs.edu (128.198.15.167)' can't be established. ECDSA key fingerprint is SHA256:+k1f3B62KX4WkpKy1G/JWvm7OGo9xMztPf03+EjYXaY. Are you sure you want to continue connecting (yes/no/[fingerprint])? Yes
- You are now authenticated and connected to INCLINE
Windows using PowerShell (Recommended)
- Open a PowerShell window
Type the following
If this is your first time authenticating, you will be prompted with the following message. Type "Yes" to proceed
The authenticity of host 'login.incline.uccs.edu (128.198.15.167)' can't be established. ECDSA key fingerprint is SHA256:+k1f3B62KX4WkpKy1G/JWvm7OGo9xMztPf03+EjYXaY. Are you sure you want to continue connecting (yes/no/[fingerprint])? Yes
You are now authenticated and connected to INCLINE
Windows using PuTTY
- Launch PuTTY
- Under "Host Name" type: login.incline.uccs.edu
- Expand "Connection" → "SSH" → "Auth" and select "Browse" next to "Private key file for authentication"
- Select the "Private Key" file created when Generating SSH Keys
- Browse back to "Session". Under "Saved Sessions" provide a name to save this connection as, then select "Save".
- Select the newly created session and click "Open"
- Type in your username and hit enter
- You are now authenticated and connected to INCLINE
Troubleshooting Steps
- Problem: ssh is asking for your password to connect.
- If ssh asks for a password, it's because your ssh connection is not utilizing your ssh key. This could be for several reasons. You are responsible for keeping track of your ssh keys and ensuring they're in the appropriate locations on your system in order to connect to INCLINE.
- Windows default location: C:\Users\yourusername\.ssh\id_ed25519
- MacOS default location: /Users/yourusername/.ssh/id_ed25519
- Your key may not be named in a way that your system can automatically choose it while connecting. Run your ssh command adding -vvv to see a very verbose output which should indicate the name of the key file its trying to find. Confirm the name and location of your key file.
- If your key is in the correct location and named correctly but ssh is still asking for a password, force ssh to use your key by adding -i /path/to/key to your command. Example: ssh -i C:\Users\jdougla3\.ssh\mykey [email protected]
- If ssh asks for a password, it's because your ssh connection is not utilizing your ssh key. This could be for several reasons. You are responsible for keeping track of your ssh keys and ensuring they're in the appropriate locations on your system in order to connect to INCLINE.