Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt
nameConfigure SSH Keys on your Linux Box
  1. Unzip the files associated with your login to your .ssh folder:

    Code Block
    unzip <username>.zip -d ~/.ssh/
  2. Test your configuration. If If configured properly, you will be logged in automatically, and will not be prompted for a password (first factor), nor second factor authentication for login.

Note: If you run into permissions errors on the key files (usually errors will take the form of something similar to: "permission 0### too open") we recommend running the following commands then reattempting to ssh using your key files.

Code Block
chmod 0600 -R ~/.ssh              #sets appropriate permissions for the .ssh private keys 
ssh-add                           #configures ssh agent for certs when not natively supported