Remove more references to removed SSHv1 protocol and add current host keys
This commit is contained in:
parent
5ecefabbaf
commit
5637028cfa
1 changed files with 8 additions and 8 deletions
|
|
@ -145,10 +145,10 @@ System-wide SSH configuration information is stored in the `/etc/ssh/` directory
|
|||
|`/etc/ssh/sshd_config`|The configuration file for the [command]#sshd# daemon.
|
||||
|`/etc/ssh/ssh_host_ecdsa_key`|The ECDSA private key used by the [command]#sshd# daemon.
|
||||
|`/etc/ssh/ssh_host_ecdsa_key.pub`|The ECDSA public key used by the [command]#sshd# daemon.
|
||||
|`/etc/ssh/ssh_host_key`|The RSA private key used by the [command]#sshd# daemon for version 1 of the SSH protocol.
|
||||
|`/etc/ssh/ssh_host_key.pub`|The RSA public key used by the [command]#sshd# daemon for version 1 of the SSH protocol.
|
||||
|`/etc/ssh/ssh_host_rsa_key`|The RSA private key used by the [command]#sshd# daemon for version 2 of the SSH protocol.
|
||||
|`/etc/ssh/ssh_host_rsa_key.pub`|The RSA public key used by the [command]#sshd# daemon for version 2 of the SSH protocol.
|
||||
|`/etc/ssh/ssh_host_rsa_key`|The RSA private key used by the [command]#sshd# daemon.
|
||||
|`/etc/ssh/ssh_host_rsa_key.pub`|The RSA public key used by the [command]#sshd# daemon.
|
||||
|`/etc/ssh/ssh_host_ed25519_key`|The EdDSA private key used by the [command]#sshd# daemon.
|
||||
|`/etc/ssh/ssh_host_ed25519_key.pub`|The EdDSA public key used by the [command]#sshd# daemon.
|
||||
|`/etc/pam.d/sshd`|The PAM configuration file for the [command]#sshd# daemon.
|
||||
|`/etc/sysconfig/sshd`|Configuration file for the `sshd` service.
|
||||
|===
|
||||
|
|
@ -162,10 +162,10 @@ System-wide SSH configuration information is stored in the `/etc/ssh/` directory
|
|||
|`~/.ssh/authorized_keys`|Holds a list of authorized public keys for servers. When the client connects to a server, the server authenticates the client by checking its signed public key stored within this file.
|
||||
|`~/.ssh/id_ecdsa`|Contains the ECDSA private key of the user.
|
||||
|`~/.ssh/id_ecdsa.pub`|The ECDSA public key of the user.
|
||||
|`~/.ssh/id_rsa`|The RSA private key used by [command]#ssh# for version 2 of the SSH protocol.
|
||||
|`~/.ssh/id_rsa.pub`|The RSA public key used by [command]#ssh# for version 2 of the SSH protocol.
|
||||
|`~/.ssh/identity`|The RSA private key used by [command]#ssh# for version 1 of the SSH protocol.
|
||||
|`~/.ssh/identity.pub`|The RSA public key used by [command]#ssh# for version 1 of the SSH protocol.
|
||||
|`~/.ssh/id_rsa`|The RSA private key used by [command]#ssh#.
|
||||
|`~/.ssh/id_rsa.pub`|The RSA public key used by [command]#ssh#.
|
||||
|`~/.ssh/id_ed25519`|The EdDSA private key used by [command]#ssh#.
|
||||
|`~/.ssh/id_ed25519.pub`|The EdDSA public key used by [command]#ssh#.
|
||||
|`~/.ssh/known_hosts`|Contains host keys of SSH servers accessed by the user. This file is very important for ensuring that the SSH client is connecting to the correct SSH server.
|
||||
|===
|
||||
|
||||
|
|
|
|||
Reference in a new issue