ssh 隧道本地访问文件

ssh 隧道本地访问文件

客户端:Mac OSX 10.9

NAS 服务器:Debian(Lenny linux)

我的 NAS 上有 mp3 文件,我想从我的桌面播放它们,但使用 mpg321(在我的桌面上)。我可以通过 ssh 访问我的 NAS。

我尝试了两种不同的方法,这里我在远程服务器(Debian)上使用 smb 端口 445

 ssh -f [email protected] -L 15549:127.0.0.1:445 sleep 6000

并在新的终端选项卡上(OSX)

 ssh -v localhost -p 15549

它运行正常,没有任何错误,但我该如何访问我的文件呢?我还尝试通过 finder smb://localhost:15549/ 通过 smb 进行连接,但不起作用

以下以“ssh_exchange_identification:远程主机关闭连接”结尾,也许我理解得不是太清楚。

 ssh -ND 8080 [email protected]

或者

 ssh -v localhost -p 8080

这给了我问题

 OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011
  debug1: Reading configuration data /etc/ssh_config
  debug1: /etc/ssh_config line 20: Applying options for *
  debug1: Connecting to localhost [127.0.0.1] port 8080.
  debug1: Connection established.
  debug1: identity file /Users/name/.ssh/id_rsa type 1
  debug1: identity file /Users/name/.ssh/id_rsa-cert type -1
  debug1: identity file /Users/name/.ssh/id_dsa type -1
  debug1: identity file /Users/name/.ssh/id_dsa-cert type -1
  debug1: Enabling compatibility mode for protocol 2.0
  debug1: Local version string SSH-2.0-OpenSSH_6.2
  ssh_exchange_identification: Connection closed by remote host

我正在谷歌搜索如何修复这个错误,但没有成功,以下是我尝试过的一些方法

   echo 'SSHD: ALL' >> /etc/hosts.allow
   chmod -R 755 /var/
   remove hosts.deny

还是没有运气

任何帮助都将不胜感激,谢谢

答案1

如果您的 nas 本身不支持 smb(当然,没有理由不支持),那么 sshfs 或 fish 通常是您的最佳选择。

来源是小的异常但据它称,OS X 的 fuse 会允许您使用 SSHFS。您可以在他们的网站上获取这两个套餐。然后就是创建一个本地挂载点,并用正确的命令挂载它

sshfs -p 22 username@remoteserver:/source_on_remote_system/ ~/mountpoint_on_local_system -oauto_cache,reconnect,defer_permissions,noappledouble,negative_vncache,volname=myVolName

应该可以工作。

答案2

Smb 是一种复杂的协议,我认为很难通过 ssh 运行。

sshfs 的实现可能会解决您的问题。对于 Windows,我发现了以下建议:

https://stackoverflow.com/questions/13741207/whats-the-best-free-windows-software-to-mount-drive-over-ssh

相关内容