1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-03 15:18:01 +00:00
Files
til/unix/ssh-with-port-forwarding.md
2015-10-11 12:23:41 -05:00

8 lines
148 B
Markdown

# SSH With Port Forwarding
Use the `-L` flag with `ssh` to forward a connection to a remote server
```
$ ssh someserver -L3000:localhost:3000
```