Applications of SSH

From Computing and Software Wiki

(Difference between revisions)
Jump to: navigation, search
Line 7: Line 7:
==SSH Tunneling==
==SSH Tunneling==
 +
One of the many benefits of SSH is that you can create an encrypted tunnel from a port on the client machine to
 +
 +
[[Image:sshtunnel.jpg|right|500px|thumb|SSH Tunnel]]
==See Also==
==See Also==
Line 13: Line 16:
==External Links==
==External Links==
-
[http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY] - A free Telnet/SSH client
+
*[http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY] - A free Telnet/SSH client
-
[http://winscp.net/eng/index.php WinSCP] - A free SCP/SFTP client for Windows
+
*[http://winscp.net/eng/index.php WinSCP] - A free SCP/SFTP client for Windows
-
[http://sourceforge.net/projects/xming Xming] - A free X server for Windows
+
*[http://sourceforge.net/projects/xming Xming] - A free X server for Windows
-
[http://cygwin.com/ Cygwin] - A linux like environment for Windows that contains an SSH package and an X server
+
*[http://cygwin.com/ Cygwin] - A linux like environment for Windows that contains an SSH package and an X server
-
[http://www.openssh.org/ OpenSSH] - Open source implementation of SSH
+
*[http://www.openssh.org/ OpenSSH] - Open source implementation of SSH

Revision as of 00:53, 15 March 2008

SSH (Secure Shell) is an encrypted network protocol. It has many useful applications that solve all kinds of communication and security problems.

Contents

Secure Shell

The most obvious use for SSH is to allow remote machines to access a shell on the host computer. The host machine must be running an SSH Daemon (sshd) which usually runs on port 22. The remote machine must use an SSH client to connect to the host. On Unix based systems, the command "ssh hostname" will connect to the host specified by hostname with the same username as the user running the command. Alternatively, the user can type "ssh username@hostname" to log in as a different user. In either case, the user will usually be asked to enter the password for the specified user on the host.

File Transfer Using SCP

SSH Tunneling

One of the many benefits of SSH is that you can create an encrypted tunnel from a port on the client machine to

SSH Tunnel

See Also

References

External Links

  • PuTTY - A free Telnet/SSH client
  • WinSCP - A free SCP/SFTP client for Windows
  • Xming - A free X server for Windows
  • Cygwin - A linux like environment for Windows that contains an SSH package and an X server
  • OpenSSH - Open source implementation of SSH
Personal tools