Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 576 Bytes

ssh.md

File metadata and controls

18 lines (10 loc) · 576 Bytes

SSH Proxies

Make a proxy to another server:

ssh -f -N -L <your port>:<remote host from remote>:<remote port from remote> <user>@<remote host> 

For example, to connect from my laptop/desktop to a server foo:

ssh -f -N -L 33060:Stagedb04b:3306 ktrue@foo 

Or to connect to an EC2 instance running tinyproxy:

ssh -f -N -L 7777:localhost:8888 -i $EC2_RSAKEYPAIR [email protected] 

Or to connect to an EMR cluster:

ssh -N -L 9100:localhost:9100 -L 9101:localhost:9101 [email protected]