Ssh

沒有互動式會話的SSH socks代理隧道?

  • June 19, 2012

我用

ssh -D 1080 myhost.org

…打開從我的工作機器到我的家庭機器的 SSH 隧道,以繞過公司防火牆上的愚蠢內容過濾器。然而,這也創建了一個互動式 SSH 會話,該會話在我使用隧道的整個過程中都存在。有沒有辦法告訴 SSH 只是創建隧道而不打擾互動式會話?

好像你想要 -N 標誌。

ssh -D 1080 -N myhost.org

來自 ssh 手冊頁:

 -N      Do not execute a remote command. This is
         useful for just forwarding ports (protocol version 2 only).

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