Ssh

ssh -NfR 等同於 dropbear

  • February 20, 2013

我想在後台打開一個反向隧道。使用 OpenSSH 時ssh -NfR 9022:127.0.0.1:22 <target>始終有效。當我在路由器上使用 dropbear 執行此操作時,它失敗了:

# ssh -NfR 9022:127.0.0.1:22 <target>
ssh: Exited: Error resolving '9022:localhost:22' port '22'. Name or service not known

ssh -R 工作正常,但不在後台啟動。離開“f”或“R”都沒有幫助。它列印了同樣的錯誤。更換127.0.0.1withlocalhost也沒有幫助。

SF,請幫幫我!:)

Dropbear 不支持短形式的選項,請嘗試以下操作:

ssh -N -f -R 9022:127.0.0.1:22 <target>

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