Skip to content

Latest commit

 

History

History
79 lines (58 loc) · 4.07 KB

File metadata and controls

79 lines (58 loc) · 4.07 KB
title How to Assign a Remote Network to a Traffic Forwarding Profile for Global Secure Access
description Learn how to assign a remote network to a traffic forwarding profile for Global Secure Access.
ms.topic how-to
ms.date 11/07/2025
ai-usage ai-assisted

Assign a remote network to a traffic forwarding profile for Global Secure Access

If you're tunneling your Microsoft traffic through the Global Secure Access service, you can assign remote networks to the traffic forwarding profile. Your end users can access Microsoft resources by connecting to the service from a remote network, such as a branch office location.

There are multiple ways to assign a remote network to the traffic forwarding profile:

  • When you create or manage a remote network in the Microsoft Entra admin center
  • When you enable or manage the traffic forwarding profile in the Microsoft Entra admin center
  • Using the Microsoft Graph API

Prerequisites

To assign a remote network to a traffic forwarding profile to, you must have:

Known limitations

[!INCLUDE known-limitations-include]

Assign the remote network to Microsoft or the internet traffic profile

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

  2. Browse to Global Secure Access > Connect > Remote networks.

  3. Select a remote network.

  4. Select Traffic profiles.

  5. Select (or unselect) the checkbox for Microsoft traffic profile.

  6. Select Save.

    :::image type="content" source="media/how-to-assign-traffic-profile-to-remote-network/microsoft-traffic-profile-selected.png" alt-text="Screenshot of the Create a remote network page, open to the Traffic profiles tab, with Microsoft traffic profile selected.":::

Assign a remote network to the Microsoft traffic forwarding profile

  1. Browse to Global Secure Access > Connect > Traffic forwarding.

  2. Select Add/edit assignments for Microsoft traffic profile.

    :::image type="content" source="media/how-to-assign-traffic-profile-to-remote-network/microsoft-traffic-profile-remote-network.png" alt-text="Screenshot of the add/edit assignment on the Microsoft traffic profile." lightbox="media/how-to-assign-traffic-profile-to-remote-network/microsoft-traffic-profile-remote-network.png":::

Assign a traffic profile to a remote network using the Microsoft Graph API

Associating a traffic profile to your remote network using the Microsoft Graph API is two-step process. First, you need to get the traffic forwarding profile ID. This ID is unique for all tenants. With the traffic forwarding profile ID, you can assign the traffic forwarding profile with your remote network.

A traffic forwarding profile can be assigned using Microsoft Graph on the /beta endpoint.

  1. Open a web browser and navigate to Graph Explorer at https://aka.ms/ge.
  2. Select GET as the HTTP method from the dropdown.
  3. Select the API version to beta.
  4. Enter the query.
    GET https://graph.microsoft.com/beta/networkaccess/forwardingprofiles 
    
  5. Select Run query.
  6. Find the ID of the desired traffic forwarding profile.
  7. Select PATCH as the HTTP method from the dropdown.
  8. Enter the query.
        PATCH https://graph.microsoft.com/beta/networkaccess/branches/d2b05c5-1e2e-4f1d-ba5a-1a678382ef16/forwardingProfiles
        {
            "@odata.context": "#$delta",
            "value":
            [{
                "ID": "00aa00aa-bb11-cc22-dd33-44ee44ee44ee"
            }]
        }
    
  9. Select Run query to update the branch.

Next steps