0

我计划使用站点到站点连接启用 Azure 云服务和本地环境连接。

这是我想知道的具体细节

   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?
4

1 回答 1

1

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

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

要监控流量,您只需要查看虚拟网络仪表板。您将看到数据输入/输出以及 VPN 连接是否断开。

在此处输入图像描述

更多信息在这里:

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

于 2014-09-16T18:04:33.173 回答