-1

flash(mySQLから取得したファイルへのパス)を使用してローカルIP経由でオーディオを取得するWebアプリケーション(php)があります。これは問題ありませんが、ローカルネットワーク上にいない限りファイルにアクセスできません(明らかに)。次に、リモートオフィスにも同様のソリューションを設定する必要がありますが、これは明らかに現在の設定では機能しません。

主な目標は、ホストされている(Rackspace)Webアプリケーションに移動し、2つのリモートロケーション(こことリモートオフィス)にあるオーディオサーバーと通信できるようにすることです。

私たちはVPN(OpenVPN)ソリューションを検討していますが、それらは複雑で、潜在的にやり過ぎのようです(非常に安全ですが)。Webアプリからオーディオに安全にアクセスし、フラッシュでストリーミングできるようにするにはどうすればよいですか?私が提供できる詳細情報。どのような情報が必要かわからない。

4

1 に答える 1

0

You could open an SSH proxy to the remote server from the local box like so:

ssh -ND 9999 user@host.com

Use that as a SOCKS proxy (and it's encrypted over SSH) on port 9999. Any request will pop out on the remote server.

If the web browser is streaming audio then you'll need the browser to request the file from the local server, which in turn fetches it from the remote server over the SOCKS proxy. This can be achieved with a PHP script. I can expand further if needed.

Hope that helps!

于 2011-07-01T19:14:47.783 に答える