how to create an ssh key code example
Example 1: generate ssh key paitr
$ ssh-keygen -t rsa -b 4096 -C "[email protected]"
Example 2: create a ssh key
ssh-keygen -t rsa -C "[email protected]"
Example 3: ssh with key
ssh -i ~/.ssh/id_rsa.pub [email protected] -p25
Example 4: how to generate ssh key
$ ssh-keygen -t ed25519 -C "[email protected]"