如何从sftp服务器下载curl文件

时间:2014-01-28 11:19:53

标签: xml curl

我需要为.xml下载SFTP server个文件。 当我使用命令sftp://username:password@%ipaddress/ram//abc.xml时......它正在工作。

要求下载多个IP地址。我尝试使用curl通过命令下载 curl -f -m 600 -o temp.xml sftp://username:password2%1/ram/abc.xml%1是一个包含多个iP地址的文本文件。

但它没有用......有人建议改变命令......谢谢

1 个答案:

答案 0 :(得分:3)

您可以使用SSH安全地从SFTP服务器获取文件:

curl -u username sftp://server1.cyberciti.biz/path/to/file.txt

或(注意~表示您的$HOME

curl -u vivek sftp://home1.cyberciti.biz/~/docs/resume.pdf

您可以使用SSH使用SCPprivate key服务器获取文件进行身份验证。
 语法是:

curl -u username: --key ~/.ssh/id_rsa --pubkey ~/.ssh/id_rsa.pub scp://home1.cyberciti.biz/~/Videos/rhn_register.ogv

其中,

`-u username` - Specify the user name (and optional password) to use for server authentication.
`-u username:password` - Specify the user name (and optional password) to use for server authentication.
`--key ~/.ssh/id_rsa` - SSL or SSH private key file name. Allows you to provide your private key in this separate file.
`--pubkey ~/.ssh/id_rsa.pub` - SSH Public key file name. Allows you to provide your public key in this separate file.
scp://home1.cyberciti.biz/~/Videos/rhn_register.ogv - Use scp protocol and download file from my home server called home1.cyberciti.biz.