ssh connection through tunnel

gkraemer

Cadet
Joined
Jan 12, 2022
Messages
1
I want to set up replication between two TrueNAS boxes. box02 pulls from box01. box01 can only be reached tunneling via ssh through a different server, gate01. If I want to do work on the network I usually use `.ssh/config` with an entry like:

```
Host box01
ProxyCommand ssh gate01 -W %h:%p
```

In TrueNAS I can edit `.ssh/config` and it is being used if I use ssh from the CLI but if I use the web interface, the configuration is being ignored. Is it possible to configure an ssh connection between two TrueNAS boxes through an ssh tunnel?
 
Top