Openssh files and it's usage in LINUX
-----------------------------------------------------
1. /etc/init.d/sshd - Start script for the sshd on the system.
2. /etc/pam.d/ssh - PAM support for sshd.
3. /etc/ssh/ - This is the primary configuration directory for ssh server as well as server.
4 /etc/ssh/ssh_config - This is the primary configuration for ssh clients.
5. /etc/ssh/sshd_config - Global Configuration of ssh server.
6. /usr/bin/s - Provide non interactivce copy between the servers.
7. /usr/bin/sftp - Provide secure file transfer protocol.
8. /usr/bin/slgin - Symlink to /usr/bin/ssh
9. /usr/bin/ssh-agent - Provides the identity eg: Who you are, Stores private key for pki authentication. Run for each X11 sessions and for other sessions.
10. /usr/bin/ssh-add- Add identity to the ssh-agent.
11. /usr/bin/ssh-copy-id - Copies identity to the remote system for PKI based logins.
12. /usr/bin/ssh-keyconverter - This convert RSA key protocol version1 key to protocol version2.
NOTE: All the cisco routers support SSH version 1 which is based on RSA version1.
13. /usr/sbin/ssh-keygen - Generates unique private key public key pairs. Thease are alos called identities. It support RSA1. RSA, DSA.
14. /usr/bin/ssh-keyscan - Scan network for ssh servers and stores key in ~/.ssh/known-hosts.
11.
-----------------------------------------------------
1. /etc/init.d/sshd - Start script for the sshd on the system.
2. /etc/pam.d/ssh - PAM support for sshd.
3. /etc/ssh/ - This is the primary configuration directory for ssh server as well as server.
4 /etc/ssh/ssh_config - This is the primary configuration for ssh clients.
5. /etc/ssh/sshd_config - Global Configuration of ssh server.
6. /usr/bin/s - Provide non interactivce copy between the servers.
7. /usr/bin/sftp - Provide secure file transfer protocol.
8. /usr/bin/slgin - Symlink to /usr/bin/ssh
9. /usr/bin/ssh-agent - Provides the identity eg: Who you are, Stores private key for pki authentication. Run for each X11 sessions and for other sessions.
10. /usr/bin/ssh-add- Add identity to the ssh-agent.
11. /usr/bin/ssh-copy-id - Copies identity to the remote system for PKI based logins.
12. /usr/bin/ssh-keyconverter - This convert RSA key protocol version1 key to protocol version2.
NOTE: All the cisco routers support SSH version 1 which is based on RSA version1.
13. /usr/sbin/ssh-keygen - Generates unique private key public key pairs. Thease are alos called identities. It support RSA1. RSA, DSA.
14. /usr/bin/ssh-keyscan - Scan network for ssh servers and stores key in ~/.ssh/known-hosts.
11.