@akbaraditamasp/ssh-tunnel
Version:
A CLI app to easily create SSH tunnels
27 lines (19 loc) • 390 B
Markdown
Simple NodeJS-based CLI application to easily create SSH tunnels.
```bash
npm install @akbaraditamasp/ssh-tunnel -g
```
```bash
ssh-tunnel -c /PATH_TO_CONFIG <REMOTE_PORT> <LOCAL_PORT>
```
Create a config file to manage SSH connections using JSON.
```json
{
"host": "127.0.0.1",
"port": 22,
"user": "example",
"password": "example"
}
```