Ssh
ssh 隧道的奇怪輸出:輸出失敗;連接失敗:連接超時;
我使用
ssh user@xx.yy.zz.41 -p 1234 -D 9898
命令進行隧道傳輸,並將 firefox socks5 ip 設置為 127.0.0.1 並將其埠設置為 9898。它工作成功,但在終端我有輸出錯誤:channel 39: open failed: connect failed: Connection timed out channel 41: open failed: connect failed: Connection timed out channel 42: open failed: connect failed: Connection timed out channel 43: open failed: connect failed: Connection timed out channel 44: open failed: connect failed: Connection timed out
它定期發生。這是什麼?這是個問題嗎?我能做些什麼?
我遇到過類似的問題。如果您通過 ssh 與 Firefox 建立隧道,一些 http 連接可能會由於伺服器負載或配置不當而簡單地超時。當連接實際超時時,您將收到一條錯誤消息,如您所指示的那樣。
您可以使用以下命令抑制這些消息
ssh user@xx.yy.zz.41 -p 1234 -D 9898 -q
從手冊頁
ssh(1)
-q Quiet mode. Causes most warning and diagnostic messages to be sup- pressed.
抑制消息將使警告不會弄亂您的 ssh 或螢幕會話。