December 2018
Beginner
826 pages
22h 54m
English
When using an agent, you might like the SSH config file option AddKeysToAgent, which will automatically add used keys to your ssh-agent for future use.
Consider the following; we're starting with no keys in our agent:
[vagrant@centos1 ~]$ ssh CentOS2-V4Enter passphrase for key '/home/vagrant/.ssh/id_ed25519': Last login: Thu Aug 9 15:58:01 2018 from 192.168.33.10[vagrant@centos2 ~]$ logoutConnection to 192.168.33.11 closed.[vagrant@centos1 ~]$ ssh CentOS2-V4Last login: Thu Aug 9 16:12:04 2018 from 192.168.33.10[vagrant@centos2 ~]$
Note that the first time, we're prompted for our key's passphrase. The second time, we're not.
It is now loaded into our agent:
[vagrant@centos1 ~]$ ssh-add -l256 SHA256:P7FdkmbQQFoy37avbKBfzMpEhVUaBY0TljwYJyNxzUI ...