Expose the new LibreTime virtual machine via Reyboz reyboz to director.border-radio.it via an SSH reverse tunnel.
Configured the LibreTime virtual machine as follow:
```
name=Installation
apt install autossh
```
```
name=First connection
ssh-copy-id border-radio-regia@reyboz.it -p 2222
```
```
name=/etc/systemd/system/autossh.service
[Unit]
Description=Expose some Border Radio services to Reyboz infrastructure
After=network.target
Documentation=https://gitpull.it/T594
[Service]
ExecStart=/usr/bin/autossh -M 0 -N -q -o "ServerAliveInterval 45" -o "ServerAliveCountMax 1" -o "ExitOnForwardFailure=yes" -R 2225:localhost:22 -R 8083:localhost:80 -p 2222 border-radio-regia@reyboz.it
# If AUTOSSH_GATETIME is set to 0 autossh will restart even if ssh fails on the first run with an exit status of 1
Environment="AUTOSSH_GATETIME=0"
# restart autossh if something goes wrong
Restart=on-failure
# wait some seconds before retrying
RestartSec=3
# disable any kind of restart rate limiting
# not supported in our version
StartLimitIntervalSec=0
[Install]
WantedBy=multi-user.target
```