Ssh

使用 SSHFS 通過雙 SSH 隧道使用 Nautilus 訪問遠端伺服器

  • July 20, 2010

我正在嘗試從家裡訪問我的工作電腦。我們應該通過 SSH 連接到伺服器,例如 ssh.company.com,然後從那里通過 ssh 連接到 xhost 以工作,例如 xhost04.company.com。xhost04 不能直接訪問。如何使用帶有 SSHFS 的 nautilus(在 ubuntu 中)從我的家用電腦瀏覽 xhost04 上的文件。

要訪問 SSH 主機,我將使用:

ssh -t -X ssh.company.com ssh -X internalserver

如何為 SSHFS 修改它?如果沒有雙隧道,我有以下內容:

sshfs user@ssh.company.com: ~/far_projects

在 ssh.company.com 上安裝,並按如下nc方式設置一個節:~/.ssh/config

Host internalserver
   ProxyCommand ssh user@ssh.company.com nc internalserver 22

然後連接到internalserver您選擇的使用者。

引用自:https://serverfault.com/questions/162033