Forked from grenade/01-generate-ed25519-ssh-key.sh
Last active
December 3, 2018 10:40
-
-
Save WickyNilliams/9ad1757f46d76207a315e09c98619371 to your computer and use it in GitHub Desktop.
Correct file permissions for ssh keys and config.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eval "$(ssh-agent -s)" | |
ssh-add ~/.ssh/id_rsa | |
ssh-add ~/.ssh/github_rsa | |
ssh-add ~/.ssh/mozilla_rsa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
chmod 700 ~/.ssh | |
chmod 644 ~/.ssh/* 600 | |
chmod 644 ~/.ssh/*.pub 644 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment