我需要为.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地址的文本文件。
但它没有用......有人建议改变命令......谢谢
答案 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
使用SCP
从private 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.