Redhat:ssh user config files
Jump to navigation
Jump to search
SSH user Configuration Files
Each user has several files stored in ~/.ssh that are used to configure how a user can connect to a remote system.
| authorized_keys | List of public keys from remote systems. Users with the matching private key can connect to the local system with out authentication |
| id_dsa_key | Users Private DSA key |
| id_dsa_key.pub | User Public DSA key |
| id_rsa_key | Users Private RSA key |
| id_rsa_key.pub | User Public RSA key |
| known_hosts | The RSA keys from remote systems that have been connected to. |