Ubuntu

SSH 雙向工作,但 scp 和 rsync 只有一種方式

  • June 4, 2016

我一直在使用 SCP 和 rsync 使用 SSH 密鑰在兩台伺服器之間傳輸一些文件。

突然 SCP 和 rsync 從伺服器 1 到伺服器 2 不再工作。它們沒有給出任何錯誤或資訊。每當我嘗試使用它們時,它們就會掛起。

如果我嘗試在伺服器之間進行 SSH 連接,效果會很好。如果我嘗試從伺服器 2 到伺服器 1 的 scp 或 rsync,它會很好。如果我從伺服器 1 嘗試它不會。

這就是我正在嘗試的。

從伺服器 1:(scp /storage/somefile root@server2:/storage不起作用)

從伺服器 2:(scp root@server1:/storage/somefile /storage有效)

有沒有人有任何想法?

我發現了問題。

從伺服器 1 我使用scp /storage/somefile root@server2domain:/storage而不是使用 ip。

奇怪的是,它工作了 6 個多月,昨天突然停止工作。

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