标签 sftp 下的文章

SFTP, which stands for SSH File Transfer Protocol, or Secure File Transfer Protocol, is a separate protocol packaged with SSH that works in a similar way over a secure connection. The advantage is the ability to leverage a secure connection to transfer files and traverse the filesystem on both the local and remote system.

https://www.digitalocean.com/community/tutorials/how-to-use-sftp-to-securely-transfer-files-with-a-remote-server

Login

SFTP直接可以使用SSH账户登录:

sftp user@romoteIP
sftp -oPort=custom_port ser@romoteIP

查看帮助:

help

阅读全文