Skip to content

Instantly share code, notes, and snippets.

@dmytroony
Forked from denisgolius/generate-ssh-key.sh
Created December 20, 2022 09:45
Show Gist options
  • Select an option

  • Save dmytroony/09b07d7a24d60dca22bbafa1a00fa0bc to your computer and use it in GitHub Desktop.

Select an option

Save dmytroony/09b07d7a24d60dca22bbafa1a00fa0bc to your computer and use it in GitHub Desktop.
Correct file permissions for ssh keys and config.
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/id_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/github_rsa
ssh-keygen -t rsa -b 4096 -N '' -C "[email protected]" -f ~/.ssh/mozilla_rsa
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
ssh-add ~/.ssh/github_rsa
ssh-add ~/.ssh/mozilla_rsa
chmod 700 ~/.ssh
chmod 644 ~/.ssh/authorized_keys
chmod 644 ~/.ssh/known_hosts
chmod 644 ~/.ssh/config
chmod 600 ~/.ssh/id_rsa
chmod 644 ~/.ssh/id_rsa.pub
chmod 600 ~/.ssh/github_rsa
chmod 644 ~/.ssh/github_rsa.pub
chmod 600 ~/.ssh/mozilla_rsa
chmod 644 ~/.ssh/mozilla_rsa.pub
@dmytroony
Copy link
Author

chmod 600 ~/.gitconfig

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment