没有 HTTP 的 SSL
所有,
可以使用 IIS(或类似的)来处理 https 通信的 ssl 端。是否有类似的东西可以处理 TCP/IP 消息的 ssl 端?
基本上,我有一个客户端设备通过 TCP 连接发送非 http 消息,并且想要一个可以为我处理 SSL 的加密和证书端并将纯文本转发到另一台服务器的服务器。
openSSL s_server 命令似乎是正确的,但文档指出“它仅用于测试目的”,而我需要一些强大的东西。文档是否已过时?
谢谢, 帕特里克
All,
It is possible to use IIS (or similar) to handle the ssl side of https communications. Is there something similar that can handle the ssl side of a TCP/IP message?
Basically I have a client device sending a non-http message over a TCP connection and want a server that can handle the crypto and certificate side of SSL for me and forward the plain text on to another server.
The openSSL s_server command seems correct but the documentation states "It's intended for testing purposes only" while I need something robust. Is the documentation out of date?
Thanks,
Patrick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您正在寻找 stunnel 计划:
You are after the stunnel program:
我不认为该文档已经过时。 “仅用于测试目的”是他们的责任免除。
I don't think the documentation is out of date. "For testing purposes only" is their release from liability.
听起来您想要一个 SSL 隧道。您可以设置到 SSL 服务器的隧道,通过隧道发送数据包,然后让该服务器转发结果。有很多关于使用 SSH 通过 SSL 设置隧道的教程。
It sounds like you want an SSL tunnel. You could setup a tunnel to the SSL server, send the packets through the tunnel, and then have that server forward the result on. There are lots of tutorials on using SSH to setup tunnels over SSL.