# Generate SSH KEY:ssh-keygen -t ed25519 -C "Default key"# Copy ssh key to serverssh-copy-id -i ~/.ssh/id_ed25519.pub 172.16.3.106
# Use specific SSH keyssh -i /.ssh/ansible 172.16.3.106
# get PID from ssh agenteval$(ssh-agent)# see of the ssh agent is runningps aux | grep 2362# add key phrase to ssh agent (works onlly for that terminal windows life)ssh agent
# make alias from ssh agentaliasssha='eval $(ssh-agent) && ssh-ad'# add alias to .bashrc file to save the alias