Problem Statement
Which command generates SSH key pairs for passwordless login?
Explanation
ssh-keygen creates public and private SSH keys for secure, passwordless authentication.
The generated keys are stored by default under ~/.ssh directory.
Code Solution
SolutionRead Only
ssh-keygen -t rsa -b 4096
Practice Sets
This question appears in the following practice sets: