You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/design-implement-private-access-to-azure-services/includes/2-explain-virtual-network-service-endpoints.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,14 +19,17 @@ By default, Azure services are all designed for direct internet access. All Azur
19
19
20
20
:::image type="content" source="../media/service-endpoint-e15a99ae.png" alt-text="Diagram showing web server, database server, and Service Endpoint within a VNet.":::
21
21
22
-
Service Endpoints can connect certain services directly to your private address space in Azure. Azure Service Endpoints are available for many services, such as:
22
+
Service Endpoints can connect certain services directly to your private address space in Azure. Azure Service Endpoints are available for many services, including:
23
23
24
24
- Azure Storage
25
25
- Azure SQL Database
26
26
- Azure Cosmos DB
27
27
- Azure Key Vault
28
28
- Azure Service Bus
29
-
- Azure Data Lake
29
+
- Azure Event Hubs
30
+
- Azure App Service
31
+
- Azure Container Registry
32
+
30
33
31
34
## Service Endpoint optimization and security features
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/design-implement-private-access-to-azure-services/includes/3-define-private-link-service-private-endpoint.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,19 +32,28 @@ Private Link provides secure access to Azure services. Private Link achieves tha
32
32
33
33
[Azure private endpoint](/azure/private-link/private-endpoint-overview) is the key technology behind private link. Private endpoint is a network interface that enables a private and secure connection between your virtual network and an Azure service. In other words, private endpoint is the network interface that replaces the resource's public endpoint.
34
34
35
+
Private Link provides secure access to Azure services. Private Link achieves that security by replacing a resource's public endpoint with a private network interface. Private Endpoint uses the private IP address for services into the virtual network.
35
36
37
+
:::image type="content" source="../media/private-link-71e02d03.png" alt-text="Diagram showing private endpoint and private link zone.":::
36
38
39
+
[Network policies](/azure/private-link/disable-private-endpoint-network-policy/) are disabled by default for private endpoint subnets. You can selectively enable support for:
37
40
38
-
Private Link provides secure access to Azure services. Private Link achieves that security by replacing a resource's public endpoint with a private network interface. Private Endpoint uses the private IP address for services into the virtual network.
41
+
-**Network Security Groups (NSG)**: Control inbound traffic to the private endpoint from specific sources.
39
42
40
-
:::image type="content" source="../media/private-link-71e02d03.png" alt-text="Diagram showing private endpoint and private link zone.":::
43
+
-**User Defined Routes (UDR)**: Override the default /32 route to redirect traffic through an NVA or firewall.
44
+
45
+
-**Application Security Groups (ASG)**: Group private endpoints for policy application.
41
46
42
47
43
48
## How is Azure Private Endpoint different from a service endpoint?
44
49
45
-
Private Endpoints grant network access to specific resources behind a given service providing granular segmentation. Traffic can reach the service resource from on premises without using public endpoints.
46
50
47
-
A service endpoint remains a publicly routable IP address. A private endpoint is a private IP in the address space of the virtual network where the private endpoint is configured.
51
+
52
+
Azure Private Endpoint lets you connect to an Azure service using a private IP address from your own virtual network. This process ensures all traffic on Microsoft's network and means you don't need the public internet to access the service.
53
+
54
+
In contrast, Service Endpoints secure access to an Azure service’s public endpoint by allowing traffic from specific VNets or subnets, but the service itself still uses a public IP.
55
+
56
+
Private Endpoints offer full isolation and higher security, while Service Endpoints are easier to set up but provide less isolation.
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/design-implement-private-access-to-azure-services/includes/4-integrate-private-link-dns.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Private Link gives you private access from your Azure virtual network to PaaS se
6
6
7
7
Yes, by using [Azure Private Link Service](/azure/private-link/private-link-service-overview). This service lets you offer Private Link connections to your custom Azure services. Consumers of your custom services can then access those services privately—that is, without using the internet—from their own Azure virtual networks.
8
8
9
-
Azure Private Link service is the reference to your own service that is powered by Azure Private Link. Your service that is running behind Azure standard load balancer can be enabled for Private Link access so that consumers to your service can access it privately from their own VNets. Your customers can create a private endpoint inside their VNet and map it to this service. A Private Link service receives connections from multiple private endpoints. A private endpoint connects to one Private Link service.
9
+
Azure Private Link service is the reference to your own service that's powered by Azure Private Link. Your service that's running behind Azure standard load balancer can be enabled for Private Link access so that consumers to your service can access it privately from their own VNets. Your customers can create a private endpoint inside their VNet and map it to this service. A Private Link service receives connections from multiple private endpoints. A private endpoint connects to one Private Link service.
10
10
11
11
:::image type="content" source="../media/consumer-provider-endpoint.png" alt-text="Diagram of the private link service workflow." lightbox="../media/consumer-provider-endpoint.png":::
12
12
@@ -18,10 +18,16 @@ The following diagram shows a typical [high-level architecture](/azure/architect
18
18
19
19
In the previous diagram, it's important to highlight:
20
20
21
-
1. All Azure virtual networks use the DNS private resolver that is hosted in the hub virtual network.
21
+
1. All Azure virtual networks use the DNS private resolver that's hosted in the hub virtual network.
22
+
22
23
1. On-premises DNS servers have conditional forwarders configured for each private endpoint public DNS zone, pointing to the DNS private resolver hosted in the hub virtual network.
23
-
1. The DNS private resolver hosted in the hub virtual network uses the Azure-provided DNS (168.63.129.16) as a forwarder. IP address 168.63.129.16 is a virtual public IP address that facilitates a communication channel to Azure platform resources.
24
-
1. The hub virtual network must be linked to the Private DNS zone names for Azure services, such as privatelink.blob.core.windows.net, as shown in the diagram.
24
+
25
+
1. The DNS private resolver hosted in the hub virtual network uses the Azure-provided DNS (168.63.129.16) as a forwarder. IP address 168.63.129.16 is a virtual public IP address that facilitates a communication channel to Azure platform resources.
26
+
27
+
1. The hub virtual network must be linked to the Private DNS zone names for Azure services, such as privatelink.blob.core.windows.net.
28
+
29
+
> [!Note]
30
+
> A DNS zone group is automatically created when integrating a private endpoint with a private DNS zone. The group links the endpoint to DNS zones and manages DNS records automatically. This automation reduces manual work and prevents configuration drift.
0 commit comments