从 HP-UX 到远程 FTP 服务器的安全 FTP
我有一个安全的 FTP 服务器,需要从 HP-UX 机器连接到。这将通过脚本进行。使用终端从 HP-UX 盒尝试失败,因为它不是 SFTP 连接。
如果我从另一个盒子启动浏览器&输入 https://ftp-servers-address 我已连接并;提示输入凭据。
如何从 HP-UX 机器到此外部站点进行 SFTP?
TIA。
I have a secure FTP server I need to connect to from a HP-UX box. This will be via a script. An attempt from the HP-UX box using the terminal fails because it is not a SFTP connection.
If I fire up a browser from another box & type in https://ftp-servers-address I get connected & prompted for credentials.
How to do SFTP from a HP-UX box to this external site?
TIA.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您谈论的是两种不同的事物:SFTP 与 FTPS。 SFTP 是 SSH FTP,FTPS 是基于 SSL 的 FTP。尽管使用不同的加密技术实现,但两者都是安全 FTP 的形式。
根据您的 URL,您需要 FTPS 客户端(而不是 SFTP 客户端)。为此,您可以使用 LFTP 或您想要的任何其他 FTPS 客户端,然后计算出 SSL 证书。如果您确实想要 SFTP 客户端,那么您可以使用 OpenSSH 并计算出 SSH 密钥。
我希望这有帮助。
You're talking about two different things: SFTP vs FTPS. SFTP is SSH FTP, and FTPS is FTP over SSL. Both are forms of secure FTP although implemented using different encryption techniques.
According to your URL, you want a FTPS client (not a SFTP client). For that you could use LFTP or any other FTPS client you want and then work out the SSL certificates. In case you really want a SFTP client, then you could use OpenSSH and work out the SSH keys.
I hope this helps.