1. 關於傳輸協議:
SSH Secure Shell安全外殼協議
SFTP Secure File Transfer Protocal安全文件傳送協議
2. WinScp與Putty的作用:
Putty遠程連接UNIX;
WinScp用於在Windows與UNIX之間進行文件傳輸;
3. 查看/啟動/停止UNIX上SSH服務的命令:
systemct1 status/start/stop sshd.services
4. 文件的傳送:
A. 打開連接:open sftp://root:password@192.168.137.137
B. 上傳文件到UNIX:put D:\FilePath\FileName /root/
獲取文件到Windows上:get /root/FileName D:\FilePath\FilePath
5. 注意事項:
A. 安裝WinScp后,要在WinScp中配置對Putty的引用;
B. 要想在兩者之間進行文件傳送,首先要啟動UNIX上的ssh服務;