# - - # # - - # # - - # :A # - - # # - Connecting with Thunar through two layers of sftp - # https://askubuntu.com/questions/908748/connecting-with-thunar-through-two-layers-of-sftp :Option 1 # - Using sshfs - # :a # - On uServerHome (HostOne) mount uServerVBox's (HostTwo) directory - # ssh is_derayo@192.168.1.100; sudo apt install sshfs; mkdir -p /home/Data2/Images/cVandembergData; sshfs is_derayo@192.168.1.60:/home/Data/cVandembergData/Images /home/Data2/Images/cVandembergData; :b # - Access uServerHome mount point - # sftp://is_derayo@www.isdevelopment.us/home/Data2/Images/cVandembergData Sshfs uses libfuse to mount filesystem in userspace. It is not needed to have superuser permissions. It is mostly enough to be in fuse usergroup. :Option 2 # - Port redirection (Not working) - # :a # - ssh "directly" connect - # ssh is_derayo@192.168.1.60; sudo apt install sshfs; ssh is_derayo@www.isdevelopment.us -L 2022:host2:22; ssh is_derayo@www.isdevelopment.us -L 2022:192.168.1.60:22; ssh is_derayo@192.168.1.60 -p 2022; ssh cvandemberg@192.168.1.60 -p 2022; sftp://is_derayo@192.168.1.60:2022/home/Data/cVandembergData/Images # - eof - #