freebsd-dev/crypto/openssh/README.smartcard

86 lines
1.9 KiB
Plaintext
Raw Normal View History

2002-03-18 09:55:03 +00:00
How to use smartcards with OpenSSH?
2002-06-27 22:31:32 +00:00
OpenSSH contains experimental support for authentication using Cyberflex
smartcards and TODOS card readers, in addition to the cards with PKCS#15
structure supported by OpenSC.
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
WARNING: Smartcard support is still in development.
Keyfile formats, etc are still subject to change.
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
To enable sectok support:
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
(1) install sectok:
Sources and instructions are available from
http://www.citi.umich.edu/projects/smartcard/sectok.html
(2) enable sectok support in OpenSSH:
$ ./configure --with-sectok[=/path/to/libsectok] [options]
(3) load the Java Cardlet to the Cyberflex card:
2002-03-18 09:55:03 +00:00
$ sectok
sectok> login -d
2002-06-27 22:31:32 +00:00
sectok> jload /usr/libdata/ssh/Ssh.bin
2002-03-18 09:55:03 +00:00
sectok> quit
2002-06-27 22:31:32 +00:00
(4) load a RSA key to the card:
Please don't use your production RSA keys, since
with the current version of sectok/ssh-keygen
the private key file is still readable.
$ ssh-keygen -f /path/to/rsakey -U <readernum, eg. 0>
In spite of the name, this does not generate a key.
It just loads an already existing key on to the card.
(5) optional:
Change the card password so that only you can
read the private key:
2002-03-18 09:55:03 +00:00
$ sectok
sectok> login -d
sectok> setpass
sectok> quit
2002-06-27 22:31:32 +00:00
This prevents reading the key but not use of the
key by the card applet.
2002-03-18 09:55:03 +00:00
Do not forget the passphrase. There is no way to
recover if you do.
IMPORTANT WARNING: If you attempt to login with the
wrong passphrase three times in a row, you will
destroy your card.
2002-06-27 22:31:32 +00:00
To enable OpenSC support:
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
(1) install OpenSC:
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
Sources and instructions are available from
http://www.opensc.org/
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
(2) enable OpenSC support in OpenSSH:
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
$ ./configure --with-opensc[=/path/to/opensc] [options]
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
(3) load a RSA key to the card:
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
Not supported yet.
2002-03-18 09:55:03 +00:00
2002-06-27 22:31:32 +00:00
Common smartcard options:
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
(1) tell the ssh client to use the card reader:
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
$ ssh -I <readernum, eg. 0> otherhost
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
(2) or tell the agent (don't forget to restart) to use the smartcard:
$ ssh-add -s <readernum, eg. 0>
2002-06-23 14:01:54 +00:00
2002-06-27 22:31:32 +00:00
-markus,
Sat Apr 13 13:48:10 EEST 2002