我计划使用站点到站点连接启用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?
答案 0 :(得分:1)
基本上,您需要一个带有VPN的虚拟网络到您的内部部署。之后,您将把云服务添加到此虚拟网络。您可以编辑ServiceConfiguration(.cscfg文件)
<ServiceConfiguration serviceName="<service-name>" osFamily="<osfamily-number>" osVersion="<os-version>" schemaVersion="<schema-version>">
<Role …>
…
</Role>
<NetworkConfiguration>
…
</NetworkConfiguration>
</ServiceConfiguration>
要监控您只需观看虚拟网络信息中心的流量。您将看到数据输入/输出以及VPN的连接是否已关闭。
此处有更多信息: