Hendel
Hendel

Reputation: 61

Azure: Can Public PaaS connect to private network via Express Route?

Can Publicly accessible Azure Mobile Services, hosted via PaaS, access a private internal network if there was an existing Express Route setup?

So basically, a user with a Smart Phone calls an Azure Hosted PaaS Mobile Service, the mobile services then communicates, through the Express Route, with objects (like a database or other services) hosted in the private network and then respond to the caller with some of that data.

Is this currently possible using PaaS and an Express Route?

Upvotes: 3

Views: 1470

Answers (3)

evgenyl
evgenyl

Reputation: 8107


For my understanding, Mobile Services - its your "frontend", On Prem - your backend.

If you need to access DB from your code in Mobile Services, you should provide its location (ip, port,...).

How your application will go out to this location, is configured in "network" configuration of your package.

So,

  1. First step - configure Express Route
  2. Create your vnet and link it to Express Route
  3. Update your package configuration to use this criated vnet

Upvotes: 0

Hendel
Hendel

Reputation: 61

The answer is yes and it is the Application Service Environment which comes with your own vnet.

Upvotes: 1

tripdubroot
tripdubroot

Reputation: 1153

No this functionality isn't and most likely will not be available for Mobile Services... but not all hope is lost. Azure App Services will provide similar functionality to mobile services and can be "bound" to a vnet... which will enable it to access local resources using express route.

Per the docs, App services can provide...

Connectivity to your on-premise resources and VPNs using VNet in addition to Hybrid Connections

ref: https://azure.microsoft.com/en-us/documentation/articles/app-service-mobile-value-prop-migration-from-mobile-services-preview/

Upvotes: 0

Related Questions