Creating an SSH Key Pair on the Command Line

UNIX and UNIX-like platforms (including Solaris and Linux) include the ssh-keygen utility to generate SSH key pairs. To create an SSH key pair on the command line using ssh-keygen: Open a shell for entering the commands. At the prompt, enter the following: ssh-keygen -t rsa -N “” -b “2048” -C “key comment” -f path/root_name Alternatively, […]

Read More