6

我正在用 Ruby/RoR 编写一个将托管在 Heroku 上的应用程序。

它的要求之一是它连接到位于 Sonicwall VPN 后面的(Active Directory)身份验证服务器。

如何使用 Ruby 建立此 VPN 身份验证来访问此服务器?

4

1 回答 1

4

Heroku is just a service built on top of EC2 that manages deployment using a linux env. You don't have root access on on which means you can connect out to any service using any TCP protocol. But you can only listen for HTTP connections. Unfortunately this rules out setting up VPNs and SSH tunnels. You can do this on Amazon EC2.

于 2012-11-09T19:26:06.130 回答