From 72911b663a3a73b3c9fd650adac30bc9c9cde68c Mon Sep 17 00:00:00 2001 From: Ricardo Pascua Jr Date: Fri, 31 Jan 2014 23:31:35 +0800 Subject: [PATCH] added ssh command --- common/ssh.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 common/ssh.md diff --git a/common/ssh.md b/common/ssh.md new file mode 100644 index 0000000000..0722d63571 --- /dev/null +++ b/common/ssh.md @@ -0,0 +1,12 @@ +SSH, or Secure Shell, is a protocol used to securely log onto remote systems. +> a program used for logging or executing commands on a remote server. + +- connecting to a remote server +`ssh username@remote_host` + +- connecting to a remote server with specific port +`ssh username@remote_host` -P 2222 + +- ssh tunneling +`ssh -D 9999 -C username@remote_host` +~