| Server IP : 45.40.142.9 / Your IP : 216.73.216.250 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/ssl/share/doc/openssh-5.3p1/ |
Upload File : |
How to use NSS tokens with OpenSSH? This version of OpenSSH contains experimental support for authentication using keys stored in tokens stored in NSS database. This for example includes any PKCS#11 tokens which are installed in your NSS database. As the code is experimental and preliminary only SSH protocol 2 is supported. The NSS certificate and token databases are looked for in the ~/.ssh directory or in a directory specified by environment variable NSS_DB_PATH. Common operations: (1) tell the ssh client to use the NSS keys: $ ssh -o 'UseNSS yes' otherhost if you want to use a specific token: $ ssh -o 'UseNSS yes' -o 'NSS Token My PKCS11 Token' otherhost (2) or tell the agent to use the NSS keys: $ ssh-add -n if you want to use a specific token: $ ssh-add -n -T 'My PKCS11 Token' (3) extract the public key from token so it can be added to the server: $ ssh-keygen -n if you want to use a specific token and/or key: $ ssh-keygen -n -D 'My PKCS11 Token' 'My Key ID' Tomas Mraz, Red Hat, Inc.