Putty

如何使用 PuTTY 通過 ssh 將本地文件傳輸到遠端伺服器?

  • November 23, 2017

我已經為 Windows 10 安裝了 puTTY 並通過 SSH 訪問遠端伺服器。我想將文件從本地 Windows 機器發送到遠端伺服器。我怎樣才能做到這一點?

我正在使用 puTTY,但 psftp、pscp 等也是一種選擇。

我用這個。

pscp.exe i F:\.ssh\anotherprivate.ppk "F:\xss vulnerability.txt" utkarsh@52.42.74.119.

得到了這個:

More than one remote source not supported

我認為你有兩個錯誤:

第一個錯字,您應該使用-i F:\.ssh\anotherprivate.ppk(注意連字元)。

其次,您可以指定目標系統上的文件夾(或以冒號結尾的使用者主文件夾):utkarsh@52.42.74.119:/tmp/

這導致了整個命令:

pscp.exe -i F:\.ssh\anotherprivate.ppk "F:\xss vulnerability.txt" utkarsh@52.42.74.119:/tmp/

使用WinSCP(兼容 Windows 10)將文件下載/上傳到遠端伺服器:

在此處輸入圖像描述

你也可以使用 putty 作為 WinSCP 的一部分:

在此處輸入圖像描述

引用自:https://unix.stackexchange.com/questions/406335