2014-02-01 05:48:38 +00:00
|
|
|
# SSH
|
|
|
|
|
|
|
|
> Secure Shell is a protocol used to securely log onto remote systems.
|
|
|
|
> It can be used for logging or executing commands on a remote server.
|
2014-01-31 15:31:35 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Connecting to a remote server:
|
2014-02-01 05:48:38 +00:00
|
|
|
|
|
|
|
`ssh {{username}}@{{remote_host}}`
|
2014-01-31 15:31:35 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Connecting to a remote server with a specific identity (private key):
|
2014-02-28 12:12:10 +00:00
|
|
|
|
|
|
|
`ssh -i {{/path/to/key_file}} {{username}}@{{remote_host}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Connecting to a remote server with specific port:
|
2014-02-01 05:48:38 +00:00
|
|
|
|
2014-03-01 06:16:48 +00:00
|
|
|
`ssh {{username}}@{{remote_host}} -p {{2222}}`
|
2014-01-31 15:31:35 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Run a command on a remote server:
|
2015-10-22 08:31:52 +01:00
|
|
|
|
2016-01-05 18:37:25 +00:00
|
|
|
`ssh {{remote_host}} {{command -with -flags}}`
|
2014-02-18 01:31:59 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Ssh tunneling: dynamic port forwarding (SOCKS proxy on localhost:9999):
|
2014-02-01 05:48:38 +00:00
|
|
|
|
|
|
|
`ssh -D {{9999}} -C {{username}}@{{remote_host}}`
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Ssh tunneling: forward a specific port (localhost:9999 to slashdot.org:80):
|
A bunch of new pages:
common/: dig, gzip, rm, sort, zfs, zpool
linux/: apt-get, shutdown
osx/: airport, caffeinate, diskutil, networksetup open, pgrep, qlmanage, say, shutdown, sysctl, system_profiler
Edits to existing pages:
curl: Added simple download example
find: Added iname and size exmaples
grep: Edited -c description
ps: Added wide lines example
ssh: edited -D description, added simple port forwarding example
unzip: added list option
2014-02-10 20:36:05 +00:00
|
|
|
|
|
|
|
`ssh -L {{9999}}:slashdot.org:80 {{username}}@{{remote_host}}`
|
2014-08-26 23:33:18 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Ssh enable agent forward:
|
2014-08-26 23:36:49 +01:00
|
|
|
|
2014-08-26 23:33:18 +01:00
|
|
|
`ssh -A {{username}}@{{remote_host}}`
|