Azure和站点到站点VPN

时间:2014-09-16 17:21:58

标签: azure azure-cloud-services azure-vpn

我计划使用站点到站点连接启用Azure Cloud Service和On Premise环境连接。

以下是我想知道的具体细节

   1. What would be required from On Premise network team in terms of
enabling the connection?
   2. How do i setup and enable the connection on every deployment build that i do for my Azure cloud service?
   3. What are the ways to troubleshoot if the connection is down?

1 个答案:

答案 0 :(得分:1)

基本上,您需要一个带有VPN的虚拟网络到您的内部部署。之后,您将把云服务添加到此虚拟网络。您可以编辑ServiceConfiguration(.cscfg文件)

<ServiceConfiguration serviceName="<service-name>" osFamily="<osfamily-number>" osVersion="<os-version>" schemaVersion="<schema-version>">
  <Role …>
         …
  </Role>
  <NetworkConfiguration>  
         …
  </NetworkConfiguration>
</ServiceConfiguration>

要监控您只需观看虚拟网络信息中心的流量。您将看到数据输入/输出以及VPN的连接是否已关闭。

enter image description here

此处有更多信息:

http://blogs.technet.com/b/askpfeplat/archive/2014/03/03/connect-an-on-premises-network-to-azure-via-site-to-site-vpn-and-extend-your-active-directory-onto-an-iaas-vm-dc-in-azure.aspx