I have the private DSA key in PEM format. What do I do next to access SSH without a password?
Sample certificate in PEM format: http://ospkibook.sourceforge.net/docs/OSPKI-2.4.7/OSPKI-html/sample-priv-key.htm
|
I have the private DSA key in PEM format. What do I do next to access SSH without a password? Sample certificate in PEM format: http://ospkibook.sourceforge.net/docs/OSPKI-2.4.7/OSPKI-html/sample-priv-key.htm |
|||
|
|
|
Ah -- I think you are confusing ssh certificates and ssl certificates. ssh uses two forms of two main forms of two-factor authentication keys: 1) standard RSA or DSA key pairs (public, private) or 2) ssh certificates which (according to
it goes on to say:
To generate a normal ssh keypair, do something like the following:
It is advisable to protect the private key with a password. Then, by placing the public key (
To generate an ssh certificate, do something like the following:
Assuming this has all proceeded properly, ssh certificates are a new feature and still need some usability aspects shaken out. The benefits of them include a central signing key, an alternative to constraining connections through authorized_keys and the possibility of limiting the validity timeperiods of ssh certificates. |
|||
|