[16800] | 1 | How to use smartcards with OpenSSH? |
---|
| 2 | |
---|
[18758] | 3 | OpenSSH contains experimental support for authentication using Cyberflex |
---|
| 4 | smartcards and TODOS card readers, in addition to the cards with PKCS#15 |
---|
| 5 | structure supported by OpenSC. |
---|
[16800] | 6 | |
---|
[18758] | 7 | WARNING: Smartcard support is still in development. |
---|
| 8 | Keyfile formats, etc are still subject to change. |
---|
[16800] | 9 | |
---|
[18758] | 10 | To enable sectok support: |
---|
[16800] | 11 | |
---|
[18758] | 12 | (1) install sectok: |
---|
[16800] | 13 | |
---|
[18758] | 14 | Sources and instructions are available from |
---|
[16800] | 15 | http://www.citi.umich.edu/projects/smartcard/sectok.html |
---|
| 16 | |
---|
[18758] | 17 | (2) enable sectok support in OpenSSH: |
---|
[16800] | 18 | |
---|
[18758] | 19 | $ ./configure --with-sectok[=/path/to/libsectok] [options] |
---|
[16800] | 20 | |
---|
| 21 | (3) load the Java Cardlet to the Cyberflex card: |
---|
| 22 | |
---|
| 23 | $ sectok |
---|
| 24 | sectok> login -d |
---|
| 25 | sectok> jload /usr/libdata/ssh/Ssh.bin |
---|
| 26 | sectok> quit |
---|
| 27 | |
---|
| 28 | (4) load a RSA key to the card: |
---|
| 29 | |
---|
[18758] | 30 | Please don't use your production RSA keys, since |
---|
[16800] | 31 | with the current version of sectok/ssh-keygen |
---|
[18758] | 32 | the private key file is still readable. |
---|
[16800] | 33 | |
---|
[18758] | 34 | $ ssh-keygen -f /path/to/rsakey -U <readernum, eg. 0> |
---|
[16800] | 35 | |
---|
| 36 | In spite of the name, this does not generate a key. |
---|
| 37 | It just loads an already existing key on to the card. |
---|
| 38 | |
---|
| 39 | (5) optional: |
---|
| 40 | |
---|
| 41 | Change the card password so that only you can |
---|
| 42 | read the private key: |
---|
| 43 | |
---|
| 44 | $ sectok |
---|
| 45 | sectok> login -d |
---|
| 46 | sectok> setpass |
---|
| 47 | sectok> quit |
---|
| 48 | |
---|
| 49 | This prevents reading the key but not use of the |
---|
| 50 | key by the card applet. |
---|
| 51 | |
---|
| 52 | Do not forget the passphrase. There is no way to |
---|
| 53 | recover if you do. |
---|
| 54 | |
---|
| 55 | IMPORTANT WARNING: If you attempt to login with the |
---|
| 56 | wrong passphrase three times in a row, you will |
---|
| 57 | destroy your card. |
---|
| 58 | |
---|
[18758] | 59 | To enable OpenSC support: |
---|
[16800] | 60 | |
---|
[18758] | 61 | (1) install OpenSC: |
---|
[16800] | 62 | |
---|
[18758] | 63 | Sources and instructions are available from |
---|
| 64 | http://www.opensc.org/ |
---|
[16800] | 65 | |
---|
[18758] | 66 | (2) enable OpenSC support in OpenSSH: |
---|
[16800] | 67 | |
---|
[18758] | 68 | $ ./configure --with-opensc[=/path/to/opensc] [options] |
---|
| 69 | |
---|
| 70 | (3) load a RSA key to the card: |
---|
| 71 | |
---|
| 72 | Not supported yet. |
---|
| 73 | |
---|
| 74 | Common smartcard options: |
---|
| 75 | |
---|
| 76 | (1) tell the ssh client to use the card reader: |
---|
| 77 | |
---|
| 78 | $ ssh -I <readernum, eg. 0> otherhost |
---|
| 79 | |
---|
| 80 | (2) or tell the agent (don't forget to restart) to use the smartcard: |
---|
| 81 | |
---|
| 82 | $ ssh-add -s <readernum, eg. 0> |
---|
| 83 | |
---|
[16800] | 84 | -markus, |
---|
[18758] | 85 | Sat Apr 13 13:48:10 EEST 2002 |
---|