Answers for "ssh use key"

3

ssh key

ssh-keygen -t ed25519 -C "[email protected]"
cat ~/.ssh/id_ed25519.pub | clip
Posted by: Guest on January-27-2021
2

ssh with key

ssh -i ~/.ssh/id_rsa.pub [email protected] -p25
Posted by: Guest on April-26-2021
2

create ssh keys

cat ~/.ssh/id_rsa.pub | ssh [email protected] "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >>  ~/.ssh/authorized_keys"
Posted by: Guest on August-20-2020
1

SSH key

$ clip < ~/.ssh/id_ed25519.pub
# Copies the contents of the id_ed25519.pub file to your clipboard
Posted by: Guest on November-30-2020

Browse Popular Code Answers by Language