【发布时间】:2020-06-21 17:02:15
【问题描述】:
我想在 Ubuntu 18.4.04 上使用 Nautilus 连接到服务器。
此服务器需要.ssh/config 中描述的隧道,如下所示:
Host serveurA
Hostname server_to_connect
User myself
ProxyCommand ssh myself@tunnel_server -W %h:%p
ForwardX11 yes
IdentityFile ~/.ssh/id_rsa
IdentitiesOnly yes
此设置在我可以连接到ssh serverA 的终端上运行良好,很好。现在我尝试按照此处https://stackoverflow.com/a/11551068/13032783 和此处https://smashingweb.info/connect-remote-server-nautilus-using-key-file-pem-file/ 的建议通过ssh://serverA 和sftp://serverA 从Nautilus 连接,但它不起作用,我不明白为什么,知道吗?
【问题讨论】:
标签: ssh remote-server ssh-tunnel nautilus