Skip to content

Latest commit

 

History

History
86 lines (58 loc) · 5.23 KB

how-to-configure-customer-premises-equipment.md

File metadata and controls

86 lines (58 loc) · 5.23 KB
title description author ms.author manager ms.topic ms.date ms.service
How to configure routers for remote networks
Learn how to configure the connectivity between your customer premises equipment and the Global Secure Access (preview) network.
kenwith
kenwith
amycolannino
how-to
03/22/2024
global-secure-access

Configure customer premises equipment for Global Secure Access (preview)

IPSec tunnel is a bidirectional communication. One side of the communication is established when adding a device link to a remote network in Global Secure Access (preview). During that process, you enter your public IP address and border gateway protocol (BGP) addresses in the Microsoft Entra admin center to tell us about your network configurations.

This article provides the steps to set up the other side of the communication channel.

Prerequisites

To configure your customer premises equipment (CPE), you must have:

  • A Global Secure Access Administrator role in Microsoft Entra ID.
  • The preview requires a Microsoft Entra ID P1 license. If needed, you can purchase licenses or get trial licenses.
  • To configure your CPE, you must have completed the Global Secure Access onboarding process.

How to configure your customer premises equipment

You can set up the CPE using the Microsoft Entra admin center or using the Microsoft Graph API. When you create a remote network and add your device link information, configuration details are generated. These details are needed to configure your CPE.

  1. Sign in to the Microsoft Entra admin center as a Global Secure Access Administrator.

  2. Browse to Global Secure Access > Devices > Remote network.

  3. Select View configuration for the remote network you need to configure.

    :::image type="content" source="media/how-to-configure-customer-premises-equipment/remote-network-view-configuration.png" alt-text="Screenshot of the configuration details with the Microsoft information highlighted." lightbox="media/how-to-configure-customer-premises-equipment/remote-network-view-configuration-expanded.png":::

  4. Locate and save Microsoft's public IP address endpoint from the panel that opens.

    Screenshot of the view configuration details panel.

  5. In the preferred interface for your CPE, enter the IP address you saved in the previous step. This step completes the IPSec tunnel configuration.

The following diagram highlights each of the major sections of the device configuration details. Text descriptions of each section follow the diagram.

:::image type="content" source="media/how-to-configure-customer-premises-equipment/device-configuration-map.png" alt-text="Diagram of the configuration details with each section highlighted." lightbox="media/how-to-configure-customer-premises-equipment/device-configuration-map-expanded.png":::

  • The branchId and branchName represent the remote network details.
  • The displayName is the device link name.
  • The endpoint, asn, bgpAddress, and region represent the Microsoft connectivity details. Enter these details on your CPE.
  • For zone redundant device links, a second set of details are generated.
  • PeerConfiguration and the subsequent details represent the CPE connectivity details.
  • If you've configured more devices, their details follow.

Important

The crypto profile you specified for the device link should match with what you specify on your CPE. If you chose the "default" IKE policy when configuring the device link, use the configurations described in the Remote network configurations article.

Follow these instructions to download the connectivity information for your remote network.

  1. Sign in to Graph Explorer.

  2. Select GET as the HTTP method from the dropdown.

  3. Set the API version to beta.

  4. Run the following query to list your remote networks and their device links:

    GET https://graph.microsoft.com/beta/networkaccess/connectivity/branches
  5. Run the following query to get the connectivity information, replacing {branchSiteId} with the ID of your remote network and {deviceLinkId} with the ID of your device link:

    GET https://graph.microsoft.com/beta/networkAccess/connectivity/branches/{branchSiteId}/deviceLinks/{deviceLinkId}

The details in the response are similar to the device configuration details found in the Microsoft Entra admin center.


[!INCLUDE Public preview important note]

Next steps