Skip to content

Commit 2ee61fa

Browse files
committed
Line edits
1 parent 21ccf80 commit 2ee61fa

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
lines changed

learn-pr/azure/intro-to-azure-vpn-gateway/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ You're responsible for networking at Adatum, a home maintenance, security, and a
44

55
Adatum has a large number of remote workers who use laptop computers to interact with these applications. Because the VMs that host the applications are connected to the Adatum on-premises internal network, these remote workers use a third-party VPN to connect to that internal network to access these applications. Users at Adatum's main office make direct connections to the applications. The applications don't require significant amounts of bandwidth to operate successfully and are resilient to fluctuations in latency.
66

7-
You want to ensure that remote workers are able to securely connect to these applications when the migration to Azure is complete. You also want to ensure that workers connected to Adatum's internal network are able to connect to the applications without concern about their network traffic being intercepted. In future, Adatum is also likely to deploy more subnets on its virtual networks, and to also deploy more IaaS workloads on virtual networks around the world. The possibility of an expansion of virtual networks and subnets should be incorporated into any solution that you decide upon.
7+
You want to ensure that remote workers are able to securely connect to these applications when the migration to Azure is complete. You also want to ensure that workers connected to Adatum's internal network are able to connect to the applications without concern about their network traffic being intercepted. In the future, Adatum is also likely to deploy more subnets on its virtual networks, and to also deploy more IaaS workloads on virtual networks around the world. The possibility of an expansion of virtual networks and subnets should be incorporated into any solution that you decide upon.
88

99
This module explains what Azure VPN Gateway does, how it works, and when you should choose to use Azure VPN Gateway as a solution to meet your organization's needs.
1010

learn-pr/azure/intro-to-azure-vpn-gateway/includes/2-what-is-azure-vpn-gateway.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
An Azure VPN gateway is a specific type of virtual network gateway that is used to send and receive encrypted traffic between an Azure virtual network and an on-premises location over the public Internet. Azure VPN gateways can also be used to connect separate Azure virtual networks using an encrypted tunnel across the Microsoft network backbone.
22

3-
:::image type="content" source="../images/vpn-gateway-network-structure.png" alt-text="Diagram that shows how Azure V P N Gateway works with the on-premises network.":::
3+
:::image type="content" source="../images/vpn-gateway-network-structure.png" alt-text="Diagram that shows how Azure VPN Gateway works with the on-premises network.":::
44

55
Azure VPN Gateway supports both point-to-site and site-to-site connections:
66

77
- **Point-to-site VPN connection**: A point-to-site VPN connection can be used to connect a single computer to an Azure virtual network. A P2S connection is established by starting it from the client computer. This type of VPN connection is commonly used by remote workers with portable computers.
88
- **Site-to-site VPN connection**: A site-to-site VPN connection allows you to connect one network to another network with traffic between the two networks passing across an encrypted VPN tunnel. This type of VPN connection is commonly used to connect on-premises sites to Azure or Azure virtual networks to each other.
99

10-
:::image type="content" source="../images/vpn-connection-types.png" alt-text="Diagram that depicts the types of connections Azure V P N Gateway supports.":::
10+
:::image type="content" source="../images/vpn-connection-types.png" alt-text="Diagram that depicts the types of connections Azure VPN Gateway supports.":::
1111

1212
Depending on the SKU chosen, Azure VPN gateways support:
1313

learn-pr/azure/intro-to-azure-vpn-gateway/includes/3-how-vpn-gateway-works.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You can deploy only one VPN gateway in each Azure virtual network. Even though y
55
66
## VPN gateway types
77

8-
When you configure a virtual network gateway, you select a setting that specifies the gateway type. The gateway type determines how the virtual network gateway will be used and the actions that the gateway will take. The gateway type `Vpn` specifies that the type of virtual network gateway created is a `VPN gateway`. This distinguishes it from an ExpressRoute gateway, which uses a different gateway type. An Azure virtual network can have two virtual network gateways: one VPN gateway and one ExpressRoute gateway.
8+
When you configure a virtual network gateway, you select a setting that specifies the gateway type. The gateway type determines how the virtual network gateway will be used and the actions that the gateway will take. The gateway type `Vpn` specifies that the type of virtual network gateway created is a `VPN gateway`. This distinguishes it from an ExpressRoute gateway, which uses a different gateway type. An Azure virtual network can have two virtual network gateways, one VPN gateway and one ExpressRoute gateway.
99

1010
There are two types of Azure VPN gateways:
1111

@@ -18,8 +18,8 @@ Policy-based VPN gateways require that you specify a fixed set of IP addresses o
1818

1919
Key features of policy-based VPN gateways in Azure include:
2020

21-
- Support for IKEv1 only
22-
- Use of static routing
21+
- Support for IKEv1 only.
22+
- Use of static routing.
2323

2424
The source and destination of the tunneled networks are declared in the VPN policy and don't need to be declared in routing tables. Use policy-based VPNs only in specific scenarios that require them, such as for compatibility with legacy on-premises VPN devices.
2525

@@ -36,11 +36,11 @@ Use a route-based VPN gateway if you need any of the following types of connecti
3636

3737
Key features of route-based VPN gateways in Azure include:
3838

39-
- Supports IKEv2
40-
- Uses any-to-any (wildcard) traffic selectors
41-
- Can use dynamic routing protocols, where routing/forwarding tables direct traffic to different IPsec tunnels
39+
- Supports IKEv2.
40+
- Uses any-to-any (wildcard) traffic selectors.
41+
- Can use dynamic routing protocols, where routing/forwarding tables direct traffic to different IPsec tunnels.
4242

43-
When configured to use dynamic routing, the source and destination networks are not statically defined because they are in policy-based VPNs, or even in route-based VPNs with static routing. Instead, data packets are encrypted based on network routing tables that are created dynamically using routing protocols such as Border Gateway Protocol (BGP).
43+
When configured to use dynamic routing, the source and destination networks are not statically defined because they are in policy-based VPNs or even in route-based VPNs with static routing. Instead, data packets are encrypted based on network routing tables that are created dynamically using routing protocols such as Border Gateway Protocol (BGP).
4444

4545
Azure VPN gateways only support the use pre-shared key method of authentication. Both route-based and policy-based types also rely on Internet Key Exchange (IKE) in either version 1 or version 2 and Internet Protocol Security (IPsec). IKE is used to set up a security association (an agreement of the encryption) between two endpoints. This association is then passed to the IPsec suite, which encrypts and decrypts data packets encapsulated in the VPN tunnel.
4646

@@ -64,7 +64,7 @@ The following Azure resources need to be present before you can deploy an operat
6464
- **Virtual network**: An Azure virtual network with enough address space for the additional subnet that you'll need for the VPN gateway. The address space for this virtual network must not overlap with the on-premises network to which you'll be connecting.
6565
- **GatewaySubnet**: A subnet called GatewaySubnet for the VPN gateway. Requires at least a /27 address mask. This subnet cannot be used for any other services.
6666
- **Public IP address**: A Basic-SKU dynamic public IP address if using a non-zone-aware gateway. This address provides a public-routable IP address as the target for your on-premises VPN device. This IP address is dynamic, but it won't change unless you delete and re-create the VPN gateway.
67-
- **Local network gateway**: Create a local network gateway to define the on-premises network's configuration: where the VPN gateway will connect and to what it will connect. This configuration includes the on-premises VPN device's public IPv4 address and the on-premises routable networks. This information is used by the VPN gateway to route packets that are destined for on-premises networks through the IPsec tunnel.
67+
- **Local network gateway**: Create a local network gateway to define the on-premises network's configuration, where the VPN gateway will connect and to what it will connect. This configuration includes the on-premises VPN device's public IPv4 address and the on-premises routable networks. This information is used by the VPN gateway to route packets that are destined for on-premises networks through the IPsec tunnel.
6868

6969
When these prerequisite components are present, you can create the virtual network gateway to route traffic between the virtual network and the on-premises datacenter or other virtual networks. After the virtual network gateway is deployed, you can then create a connection resource to create a logical connection between the VPN gateway and the local network gateway:
7070

learn-pr/azure/intro-to-azure-vpn-gateway/includes/4-vpn-gateway-scenarios.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Azure VPN gateways allow you to set up the following connections:
22

3-
- Connect on-premises datacenters to Azure virtual networks through a site-to-site connection
4-
- Connect individual devices to Azure virtual networks through a point-to-site connection
5-
- Connect Azure virtual networks to other Azure virtual networks through a network-to-network connection
3+
- Connect on-premises datacenters to Azure virtual networks through a site-to-site connection.
4+
- Connect individual devices to Azure virtual networks through a point-to-site connection.
5+
- Connect Azure virtual networks to other Azure virtual networks through a network-to-network connection.
66

77
Azure VPN gateways are suitable for Adatum for the following reasons:
88

learn-pr/azure/intro-to-azure-vpn-gateway/includes/6-summary.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You learned about the different options that are available to you when you deplo
55
## Learn more
66

77
- [VPN Gateway documentation](/azure/vpn-gateway/?azure-portal=true)
8-
- [What is VPN Gateway?](/azure/vpn-gateway/vpn-gateway-about-vpngateways?azure-portal=true)
9-
- [About VPN Gateway SKUs and configuration settings](/azure/vpn-gateway/vpn-gateway-about-vpn-gateway-settings?azure-portal=true)
10-
- [Configure VPN Gateway](/azure/vpn-gateway/tutorial-site-to-site-portal?azure-portal=true)
8+
- [What is Azure VPN Gateway?](/azure/vpn-gateway/vpn-gateway-about-vpngateways?azure-portal=true)
9+
- [About VPN Gateway configuration settings](/azure/vpn-gateway/vpn-gateway-about-vpn-gateway-settings?azure-portal=true)
10+
- [Tutorial: Create a site-to-site VPN connection in the Azure portal](/azure/vpn-gateway/tutorial-site-to-site-portal?azure-portal=true)
1111
- [Connect your on-premises network to Azure with VPN gateway](/training/modules/connect-on-premises-network-with-vpn-gateway/?azure-portal=true)

0 commit comments

Comments
 (0)