Reputation: 350
I am planning to enable Azure Cloud Service and On Premise environment connection using Site To Site Connectivity.
Here are specific details that i want to know
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?
Upvotes: 0
Views: 298
Reputation: 18387
Basically you'll need a Virtual Network with a VPN to your on premise. After that, you'll add your cloud service to this virtual network. You can do that editting your ServiceConfiguration (.cscfg file)
<ServiceConfiguration serviceName="<service-name>" osFamily="<osfamily-number>" osVersion="<os-version>" schemaVersion="<schema-version>">
<Role …>
…
</Role>
<NetworkConfiguration>
…
</NetworkConfiguration>
</ServiceConfiguration>
To monitor the traffic you'll just need to watch the Virtual Network dashboard. You'll see data in / out and if connection of the VPN is down.
More info in here:
Upvotes: 1