# Raspberry pi easy ssh tunneling

Date: 2018-04-27

Short note for that.

Raspberry Pi:
```shell
ssh -N -R 2222:localhost:22 [username]@[server]
```

Server:
```shell
ssh -l pi -p 2222 localhost
```
