I have a home server and a handful of Linux machines running on my home network. I have entries in my ~/.ssh/config so I can easily ssh in to any machine on my home network. For example, for machine with IP address 192.168.0.2, I have the following:
When using Ubuntu 16.10, I can enter the address in to the Nautilus address bar as follows:
However, when I try to do the same with Dolphin in Kubuntu 16.10, I get "Socket Error: Disconnected".
The following does work in Dolphin:
I can also use:
on Kubuntu 16.10 from the terminal, and it works fine.
Is there any way I get sftp://hud to work (when there's a "hop") with Dolphin?
Code:
Host hud ServerAliveInterval 60 HostName 192.168.0.2 User andy IdentityFile ~/.ssh/id_rsa ProxyCommand ssh homeserver.com nc -w100000 %h %p 2> /dev/null
Code:
sftp://hud
The following does work in Dolphin:
Code:
sftp://homeserver.com
Code:
ssh hud
Is there any way I get sftp://hud to work (when there's a "hop") with Dolphin?