albertyw/albertyw.com

View on GitHub
app/notes/20160919-0244.md

Summary

Maintainability
Test Coverage
SSH Tunnel

ssh-tunnel

1474253059

This is a handy command to memorize:

```bash
ssh -fN -L $port1:$host1:$port2 $host2
```

This allows you to make requests to `$host1` on `$port1` to instead hit `$host2` on `$port2`.