0

我还没有完全深入研究,但我想弄清楚新的 Azure VPN 产品是否仅适用于您自己的虚拟机,或者它们是否允许云服务连接到您的公司网络。例如,我可以使用它将我的工作角色打印到公司网络上的网络打印机上。

4

2 回答 2

2

As long as your cloud service is part of a virtual network, it will have an IP address of the VPN subnet assigned to it, and all addresses are accessible (subject to your own networking configuration). Two things to be careful of:

  1. The VPN IP address of the individual instances are subject to change. Every time a role recycles, or you redeploy, the instance IP address will change. This may be a problem if your security requires specific IP addresses. This can be helped by maintaining these ip addresses in your own DNS.
  2. The cloud service load balancer is 'external' and cannot be placed on the virtual network. This means that your cloud service is not addressable as a single endpoint. You have to communicate with each individual role and load balance yourself. Similarly, outgoing data comes from individual roles, not the cloud service (see 1 above).
于 2013-06-11T20:52:14.703 回答
1

我没有亲自尝试过,但是您应该能够通过将云服务加入虚拟网络来做到这一点。有关如何执行此操作的详细信息,请参阅本文: http: //convective.wordpress.com/2012/08/26/windows-azure-cloud-services-and-virtual-networks/

于 2013-06-11T18:59:34.740 回答