mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
8 lines
148 B
Markdown
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
|
|
```
|