Announcement

Collapse
No announcement yet.

Using SFTP in Dolphin with

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Using SFTP in Dolphin with

    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:

    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
    When using Ubuntu 16.10, I can enter the address in to the Nautilus address bar as follows:

    Code:
    sftp://hud
    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:

    Code:
    sftp://homeserver.com
    I can also use:

    Code:
    ssh hud
    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?
Working...
X