diff options
Diffstat (limited to 'sshd.8')
-rw-r--r-- | sshd.8 | 37 |
1 files changed, 24 insertions, 13 deletions
@@ -33,8 +33,8 @@ | |||
33 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 33 | .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
34 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 34 | .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
35 | .\" | 35 | .\" |
36 | .\" $OpenBSD: sshd.8,v 1.304 2018/07/22 12:16:59 dtucker Exp $ | 36 | .\" $OpenBSD: sshd.8,v 1.305 2019/11/07 08:38:38 naddy Exp $ |
37 | .Dd $Mdocdate: July 22 2018 $ | 37 | .Dd $Mdocdate: November 7 2019 $ |
38 | .Dt SSHD 8 | 38 | .Dt SSHD 8 |
39 | .Os | 39 | .Os |
40 | .Sh NAME | 40 | .Sh NAME |
@@ -429,24 +429,35 @@ comments). | |||
429 | Public keys consist of the following space-separated fields: | 429 | Public keys consist of the following space-separated fields: |
430 | options, keytype, base64-encoded key, comment. | 430 | options, keytype, base64-encoded key, comment. |
431 | The options field is optional. | 431 | The options field is optional. |
432 | The keytype is | 432 | The supported key types are: |
433 | .Dq ecdsa-sha2-nistp256 , | 433 | .Pp |
434 | .Dq ecdsa-sha2-nistp384 , | 434 | .Bl -item -compact -offset indent |
435 | .Dq ecdsa-sha2-nistp521 , | 435 | .It |
436 | .Dq ssh-ed25519 , | 436 | sk-ecdsa-sha2-nistp256@openssh.com |
437 | .Dq ssh-dss | 437 | .It |
438 | or | 438 | ecdsa-sha2-nistp256 |
439 | .Dq ssh-rsa ; | 439 | .It |
440 | the comment field is not used for anything (but may be convenient for the | 440 | ecdsa-sha2-nistp384 |
441 | .It | ||
442 | ecdsa-sha2-nistp521 | ||
443 | .It | ||
444 | ssh-ed25519 | ||
445 | .It | ||
446 | ssh-dss | ||
447 | .It | ||
448 | ssh-rsa | ||
449 | .El | ||
450 | .Pp | ||
451 | The comment field is not used for anything (but may be convenient for the | ||
441 | user to identify the key). | 452 | user to identify the key). |
442 | .Pp | 453 | .Pp |
443 | Note that lines in this file can be several hundred bytes long | 454 | Note that lines in this file can be several hundred bytes long |
444 | (because of the size of the public key encoding) up to a limit of | 455 | (because of the size of the public key encoding) up to a limit of |
445 | 8 kilobytes, which permits DSA keys up to 8 kilobits and RSA | 456 | 8 kilobytes, which permits RSA keys up to 16 kilobits. |
446 | keys up to 16 kilobits. | ||
447 | You don't want to type them in; instead, copy the | 457 | You don't want to type them in; instead, copy the |
448 | .Pa id_dsa.pub , | 458 | .Pa id_dsa.pub , |
449 | .Pa id_ecdsa.pub , | 459 | .Pa id_ecdsa.pub , |
460 | .Pa id_ecdsa_sk.pub , | ||
450 | .Pa id_ed25519.pub , | 461 | .Pa id_ed25519.pub , |
451 | or the | 462 | or the |
452 | .Pa id_rsa.pub | 463 | .Pa id_rsa.pub |