Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

What is SSH - the protocol and what is ssh - the utility?

What is SSH - the protocol?
What is ssh - the unix utility and how does it work?

How is SSH protocol related to SFTP?

What is sshd?

Does the command su use ssh or sshd?
by

1 Answer

Amit8z4mc
SSH is a protocol for secure communication over an insecure network. It allows for end to end encryption of all communication such that it cannot (feasibly) be intercepted and decrytped.

ssh the utility is an implementation of the protocol. SFTP is a subsystem of ssh that uses the protocol for secure password and file transfer.

su does not use the ssh protocol.

Login / Signup to Answer the Question.