1
0
mirror of https://github.com/jbranchaud/til synced 2026-07-05 17:00:17 +00:00
Files
til/unix/ssh-with-port-forwarding.md
T
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
```