搜索 FTP over SSH(不是 SFTP)服务器和 Java 库
由于客户项目的要求是支持 FTP over SSH,我目前正在寻找两件事:
1。用于测试目的的 SecureFTP 服务器
2。一个支持 SSH 上的 FTP 的 Java 库。
在寻找解决方案时,主要问题是所有实现也在传输加密文件(因此实现 SSH FTP) - 这不是我正在寻找的。如此处所述(http://de.wikipedia.org/wiki/Secure_File_Transfer_Protocol - 仅德语),只有身份验证和文件列表应加密 - 文件传输本身不加密。
请不要试图说服我使用 SSH FTP(或其他安全协议,如 FTPS) - 我需要在客户使用时使用更不安全的版本...
编辑: FTP over SSH 准确描述了我正在搜索的内容。
As a requirement in a customer project is to support FTP over SSH I'm currently looking for 2 things:
1. A SecureFTP-Server for testing purpose
2. A Java library which supports FTP over SSH.
When searching for a solution the main problem is that ALL implementations are also transfering the files encrypted (and therefore implementing SSH FTP) - this is NOT what I'm looking for. As described here (http://de.wikipedia.org/wiki/Secure_File_Transfer_Protocol - german only) only the authentication and file listing should be encrypted - the file transfer itself is not encrypted.
Please don't try to convince me to use SSH FTP (or other secure protocolls like FTPS) - I need to use the more insecure version as the customer uses it...
EDIT: FTP over SSH exactly describs what I'm searching for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您需要的是 SSH 上的 FTP,请参阅维基百科页面 FTP over SSH 是FONC,它既是客户端又是服务器,用 Java 编写,并根据 GPLv2 获得许可。
这看起来像您正在寻找的内容,请检查许可证是否适用于您的项目。
If FTP over SSH is what you're after, one of the projects mentioned at the Wikipedia page on FTP over SSH is FONC, which is both a client and a server, written in Java, and licensed under GPLv2.
This looks like what you're looking for, check if the license is applicable to your project.