Difference between revisions of "Redhat:ssh user config files"
Jump to navigation
Jump to search
(Created page with "== 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. {| class="wikitable" | ...") |
(No difference)
|
Latest revision as of 16:29, 26 August 2013
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. |