ssh-ident
ssh-ident copied to clipboard
PATTERN_KEYS = r".*" Not finding keys in ~/.ssh
I have created a file ~/.ssh-ident
that contains the following
PATTERN_KEYS = r".*"
However. This is not finding my keys.
If you did not change the default setting for DIR_IDENTITIES
, then ssh-ident will be looking in the directory $HOME/.ssh/identities
for any key files. Changing PATTERN_KEYS
only changes the file name pattern matching that ssh-ident will use.
Either create the folder $HOME/.ssh/identities
and put all of your key files in there, or set DIR_IDENTITIES
in the ssh-ident config file as well.