Configuring Advanced Networking for AEM as a Cloud Service configuring-advanced-networking

This article introduces the different advanced networking features in AEM as a Cloud Service, including self-service and API provisioning of VPN, non-standard ports, and dedicated egress IP addresses.

TIP
In addition to this documentation, there is also a series of tutorials designed to walk you through each of the advanced networking options at this location.

Overview overview

AEM as a Cloud Service offers the following advanced networking options:

This article describes each of these options in detail and why you might use them, before describing how they are configured using the Cloud Manager UI and by using the API. The article concludes with some advanced use cases.

CAUTION
If you are already provisioned with legacy dedicated egress technology and want to configure one of these advanced networking options, contact Adobe Client Care.
Attempting to configure advanced networking with legacy egress technology can impact site connectivity.

Requirements and Limitations requirements

When configuring advanced networking features, the following restrictions apply.

  • A program can provision a single advanced networking option (flexible port egress, dedicated egress IP address, or VPN).

  • Advanced networking is not available for sandbox programs.

  • A user in must have the Administrator role to add and configure network infrastructure in your program.

  • The production environment must be created before network infrastructure can be added in your program.

  • Your network infrastructure must be in the same region as your production environment’s primary region.

    • In the case where your production environment has extra publish regions, you may create another network infrastructure mirroring each additional region.
    • You are not allowed to create more network infrastructures than the maximum number of regions configured in your production environment.
    • You can define as many network infrastructures as available regions in your production environment, but new infrastructure must be the same type as the previously created infrastructure.
    • When creating multiple infrastructures, you are permitted to select from only those regions in which advanced networking infrastructure has not been created.

Configuring and Enabling Advanced Networking configuring-enabling

Using advanced networking features requires two steps:

  1. Configuration of the advanced networking option, whether flexible port egress, dedicated egress IP address, or VPN, must first be done at the program level.
  2. To be used, the advanced networking option must then be enabled at the environment level.

Both steps can be done either using the Cloud Manager UI or the Cloud Manager API.

  • When using the Cloud Manager UI, this means creating advanced network configurations using a wizard at the program level and then editing each environment where you want to enable the configuration.

  • When using the Cloud Manager API, the /networkInfrastructures API endpoint is invoked at the program level to declare the desired type of advanced networking. It is followed by a call to the /advancedNetworking endpoint for each environment to enable the infrastructure and configure environment-specific parameters.

Flexible Port Egress flexible-port-egress

This advanced networking feature lets you configure AEM as a Cloud Service to egress traffic through ports other than HTTP (port 80) and HTTPS (port 443), which are open by default.

TIP
When deciding between flexible port egress and dedicated egress IP address, it is recommended you choose flexible port egress if a specific IP address is not required. The reason is because Adobe can optimize performance of flexible port egress traffic.
NOTE
After creation, flexible port egress infrastructure types cannot be edited. The only way to change configuration values is to delete and recreate them.

UI Configuration configuring-flexible-port-egress-provision-ui

  1. Log into Cloud Manager at my.cloudmanager.adobe.com and select the appropriate organization.

  2. On the My Programs console, select the program.

  3. From the Program Overview page, navigate to the Environments tab and select Network Infrastructure in the left panel.

    Adding network infrastructure

  4. In the Add network infrastructure wizard, select Flexible port egress and the region where it should be created from the Region drop-down menu and click Continue.

    Configuring flexible port egress

  5. The Confirmation tab summarizes your selection and the next steps. Click Save to create the infrastructure.

    Confirming configuration of flexible port egress

A new record appears below the Network Infrastructure heading in the side panel including details of the type of infrastructure, status, region, and environments on which it has been enabled.

New entry under Network Infrastructure

NOTE
Creation of the infrastructure for flexible port egress can take up to an hour after which it can be configured at the environment level.

API Configuration configuring-flexible-port-egress-provision-api

Once per program, the POST /program/<programId>/networkInfrastructures endpoint is invoked, simply passing the value of flexiblePortEgress for the kind parameter and region. The endpoint responds with the network_id, and other information including the status.

Once called, it typically takes approximately 15 minutes for the networking infrastructure to be provisioned. A call to the Cloud Manager’s network infrastructure GET endpoint would show a status of ready.

TIP
The full set of parameters, exact syntax, and important information like what parameters cannot be changed later, can be referenced in the API documentation.

Traffic Routing flexible-port-egress-traffic-routing

For http or https traffic going to ports other than 80 or 443 a proxy should be configured using the following host and port environment variables:

  • for HTTP: AEM_PROXY_HOST / AEM_HTTP_PROXY_PORT (default to proxy.tunnel:3128 in AEM releases < 6094)
  • for HTTPS: AEM_PROXY_HOST / AEM_HTTPS_PROXY_PORT (default to proxy.tunnel:3128 in AEM releases < 6094)

For example, here’s sample code to send a request to www.example.com:8443:

String url = "www.example.com:8443"
String proxyHost = System.getenv().getOrDefault("AEM_PROXY_HOST", "proxy.tunnel");
int proxyPort = Integer.parseInt(System.getenv().getOrDefault("AEM_HTTPS_PROXY_PORT", "3128"));
HttpClient client = HttpClient.newBuilder()
      .proxy(ProxySelector.of(new InetSocketAddress(proxyHost, proxyPort)))
      .build();

HttpRequest request = HttpRequest.newBuilder().uri(URI.create(url)).build();
HttpResponse<String> response = client.send(request, BodyHandlers.ofString());

If using non-standard Java™ networking libraries, configure proxies using the properties above, for all traffic.

Non-http/s traffic with destinations through ports declared in the portForwards parameter should reference a property called AEM_PROXY_HOST, along with the mapped port. For example:

DriverManager.getConnection("jdbc:mysql://" + System.getenv("AEM_PROXY_HOST") + ":53306/test");

The table below describes traffic routing:

Traffic
Destination condition
Port
Connection
External destination example
Http or https protocol
Standard http/s traffic
80 or 443
Allowed

Non-standard traffic (on other ports outside 80 or 443) through http proxy configured using the following environment variable and proxy port number. Do not declare the destination port in the Cloud Manager API call's portForwards parameter:

  • AEM_PROXY_HOST (default to `proxy.tunnel` in AEM releases < 6094)
  • AEM_HTTPS_PROXY_PORT (default to port 3128 in AEM releases < 6094)
Ports outside 80 or 443
Allowed
example.com:8443
Non-standard traffic (on other ports outside of ports 80 or 443) not using http proxy
Ports outside 80 or 443
Blocked
Non-http or non-https
Client connects to the AEM_PROXY_HOST environment variable using a portOrig declared in the portForwards API parameter.
Any
Allowed
mysql.example.com:3306
Everything else
Any
Blocked
db.example.com:5555

Apache / Dispatcher Configuration apache-dispatcher

The AEM Cloud Service Apache/Dispatcher tier’s mod_proxy directive can be configured using the properties described above.

ProxyRemote "http://example.com:8080" "http://${AEM_PROXY_HOST}:3128"
ProxyPass "/somepath" "http://example.com:8080"
ProxyPassReverse "/somepath" "http://example.com:8080"
SSLProxyEngine on //needed for https backends

ProxyRemote "https://example.com:8443" "http://${AEM_PROXY_HOST}:3128"
ProxyPass "/somepath" "https://example.com:8443"
ProxyPassReverse "/somepath" "https://example.com:8443"

Dedicated Egress IP Address dedicated-egress-ip-address

A dedicated IP address can enhance security when integrating with SaaS vendors (like a CRM vendor) or other integrations outside of AEM as a Cloud Service that offer an allowlist of IP addresses. By adding the dedicated IP address to the allowlist, it ensures that only traffic from the AEM Cloud Service is permitted to flow into the external service. This is in addition to traffic from any other IPs allowed.

The same dedicated IP is applied to all programs in your Adobe Organization and for all environments in each of your programs. It applies to both Author and Publish services.

Without the dedicated IP address feature enabled, traffic coming out of AEM as a Cloud Service flows through a set of IPs shared with other customers of AEM as a Cloud Service.

Configuring dedicated egress IP address is similar to flexible port egress. The main difference is that after configuration, traffic will always egress from a dedicated, unique IP. To find that IP, use a DNS resolver to identify the IP address associated with p{PROGRAM_ID}.external.adobeaemcloud.com. The IP address is not expected to change, but if it must change, advanced notification is provided.

TIP
When deciding between flexible port egress and dedicated egress IP address, choose flexible port egress if a specific IP address is not required. The reason is because Adobe can optimize performance of flexible port egress traffic.
NOTE
If you were provisioned with a dedicated egress IP before 2021.09.30 (that is, before the September 2021 release), your dedicated egress IP feature only supports HTTP and HTTPS ports.
This includes HTTP/1.1, and HTTP/2 when encrypted. Also, one dedicated egress endpoint can talk to any target only over HTTP/HTTPS on ports 80/443 respectively.
NOTE
Once created, dedicated egress IP address infrastructure types cannot be edited. The only way to change configuration values is to delete and recreate them.
INFO
The Splunk forwarding capability is not possible from a dedicated egress IP address.

UI Configuration configuring-dedicated-egress-provision-ui

  1. Log into Cloud Manager at my.cloudmanager.adobe.com and select the appropriate organization.

  2. On the My Programs console, select the program.

  3. From the Program Overview page, navigate to the Environments tab and select Network Infrastructure in the left panel.

    Adding network infrastructure

  4. In the Add network infrastructure wizard that starts, select Dedicated egress IP address and the region where it should be created from the Region drop-down menu and click Continue.

    Configuring dedicated egress IP address

  5. The Confirmation tab summarizes your selection and the next steps. Click Save to create the infrastructure.

    Confirming configuration of flexible port egress

A new record appears below the Network Infrastructure heading in the side panel including details of the type of infrastructure, status, region, and environments on which it has been enabled.

New entry under Network Infrastructure

NOTE
Creation of the infrastructure for flexible port egress can take up to an hour after which it can be configured at the environment level.

API Configuration configuring-dedicated-egress-provision-api

Once per program, the POST /program/<programId>/networkInfrastructures endpoint is invoked, simply passing the value of dedicatedEgressIp for the kind parameter and region. The endpoint responds with the network_id, and other information including the status.

Once called, it typically takes approximately 15 minutes for the networking infrastructure to be provisioned. A call to the Cloud Manager’s network infrastructure GET endpoint would show a status of ready.

TIP
The full set of parameters, exact syntax, and important information like what parameters cannot be changed later, can be referenced in the API documentation.

Traffic Routing dedicated-egress-ip-traffic-routing

Http or https traffic go through a preconfigured proxy, provided they use standard Java™ system properties for proxy configurations.

Non-http/s traffic with destinations through ports declared in the portForwards parameter should reference a property called AEM_PROXY_HOST, along with the mapped port. For example:

DriverManager.getConnection("jdbc:mysql://" + System.getenv("AEM_PROXY_HOST") + ":53306/test");
Traffic
Destination condition
Port
Connection
External destination example
Http or https protocol
Traffic to Azure or Adobe services
Any
Through the shared cluster IPs (not the dedicated IP)
adobe.io
api.windows.net
Host matching the nonProxyHosts parameter
80 or 443
Through the shared cluster IPs
Host matching the nonProxyHosts parameter
Ports outside 80 or 443
Blocked
Through http proxy configuration, configured by default for http/s traffic using standard Java™ HTTP client library
Any
Through the dedicated egress IP
Ignores http proxy configuration (for example, if explicitly removed from standard Java™ HTTP client library or if a Java™ library that ignores standard proxy configuration is used)
80 or 443
Through the shared cluster IPs
Ignores http proxy configuration (for example, if explicitly removed from standard Java™ HTTP client library or if a Java™ library that ignores standard proxy configuration is used)
Ports outside 80 or 443
Blocked
Non-http or non-https
The client connects to AEM_PROXY_HOST env variable using a portOrig declared in the portForwards API parameter
Any
Through the dedicated egress IP
mysql.example.com:3306
Anything else
Blocked

Feature Usage feature-usage

The feature is compatible with Java™ code or libraries that result in outbound traffic, provided they use standard Java™ system properties for proxy configurations. In practice, this should include most common libraries.

Below is a code sample:

public JSONObject getJsonObject(String relativePath, String queryString) throws IOException, JSONException {
  String relativeUri = queryString.isEmpty() ? relativePath : (relativePath + '?' + queryString);
  URL finalUrl = endpointUri.resolve(relativeUri).toURL();
  URLConnection connection = finalUrl.openConnection();
  connection.addRequestProperty("Accept", "application/json");
  connection.addRequestProperty("X-API-KEY", apiKey);

  try (InputStream responseStream = connection.getInputStream(); Reader responseReader = new BufferedReader(new InputStreamReader(responseStream, Charsets.UTF_8))) {
    return new JSONObject(new JSONTokener(responseReader));
  }
}

Some libraries require explicit configuration to use standard Java™ system properties for proxy configurations.

An example using Apache HttpClient that requires explicit calls to
HttpClientBuilder.useSystemProperties() or use
HttpClients.createSystem():

public JSONObject getJsonObject(String relativePath, String queryString) throws IOException, JSONException {
  String relativeUri = queryString.isEmpty() ? relativePath : (relativePath + '?' + queryString);
  URL finalUrl = endpointUri.resolve(relativeUri).toURL();

  HttpClient httpClient = HttpClientBuilder.create().useSystemProperties().build();
  HttpGet request = new HttpGet(finalUrl.toURI());
  request.setHeader("Accept", "application/json");
  request.setHeader("X-API-KEY", apiKey);
  HttpResponse response = httpClient.execute(request);
  String result = EntityUtils.toString(response.getEntity());
}

Debugging Considerations debugging-considerations

To validate that traffic is indeed outgoing on the expected dedicated IP address, check logs in the destination service, if available. Otherwise, it may be useful to call out to a debugging service such as http://ifconfig.me/ip, which returns the calling IP address.

Virtual Private Network (VPN) vpn

A VPN allows connecting to an on-premise infrastructure or data center from the author, publish, or preview instances. This can be useful, for example, to secure access to a database. It also allows connecting to SaaS vendors such as a CRM vendor that supports VPN or connecting from a corporate network to AEM as a Cloud Service author, preview, or publish instance.

Most VPN devices with IPSec technology are supported. Consult the information in the RouteBased configuration instructions column in this list of devices. Configure the device as described in the table.

NOTE
The following are limitations to a VPN infrastructure:
  • Support is limited to a single VPN connection
  • The Splunk forwarding capability is not possible over a VPN connection.
  • DNS Resolvers must be listed in the Gateway Address space to resolve private host names.

UI Configuration configuring-vpn-ui

  1. Log into Cloud Manager at my.cloudmanager.adobe.com and select the appropriate organization.

  2. On the My Programs console, select the program.

  3. From the Program Overview page, navigate to the Environments tab and select Network Infrastructure in the left panel.

    Adding network infrastructure

  4. In the Add network infrastructure wizard that starts, select Virtual private network and provide the necessary information before clicking Continue.

    • Region - This is the region in which infrastructure should be created.

    • Address Space - The address space can only be one /26 CIDR (64 IP addresses) or larger IP range in your own space.

      • This value can’t be changed later.
    • DNS Information - This is a list of remote DNS resolvers.

      • Press Enter after inputting a DNS server address to add another.
      • Click the X after an address to remove it.
    • Shared Key - This is your VPN preshared key.

      • Select Show shared key to reveal the key so you can double-check its value.

    Configuring vpn

  5. On the Connections tab of the wizard, provide a Connection name to identify your VPN connection and click Add Connection.

    Add connection

  6. In the Add connection dialog, define your VPN connection, then click Save.

    • Connection name - This is a descriptive name of your VPN connection, which you provided in the previous step and can be updated here.

    • Address - This is the VPN device IP address.

    • Address space - These are the IP address ranges to route through the VPN.

      • Press Enter after inputting a range to add another.
      • Click the X after a range to remove it.
    • IP Security Policy - Adjust from the default values as required

    Adding a VPN connection

  7. The dialog closes and you return to the Connections tab of the wizard. Click Continue.

    A VPN connection is added

  8. The Confirmation tab summarizes your selection and the next steps. Click Save to create the infrastructure.

    Confirming configuration of flexible port egress

A new record appears below the Network Infrastructure heading in the side panel including details of the type of infrastructure, status, region, and environments on which it has been enabled.

API Configuration configuring-vpn-api

Once per program, the POST /program/<programId>/networkInfrastructures endpoint is invoked. It passes in a payload of configuration information. That information includes the value of vpn for the kind parameter, region, address space (list of CIDRs - note that this cannot be modified later), DNS resolvers (for resolving names in your network). It also includes VPN connection information such as gateway configuration, shared VPN key, and the IP Security policy. The endpoint responds with the network_id, and other information including the status.

Once called, it typically takes from 45 through 60 minutes for the networking infrastructure to be provisioned. The GET method in the API can be called to return the status, which eventually flips from creating to ready. Consult the API documentation for all states.

TIP
The full set of parameters, exact syntax, and important information like what parameters cannot be changed later, can be referenced in the API documentation.

Traffic Routing vpn-traffic-routing

The table below describes traffic routing.

Traffic
Destination Condition
Port
Connection
External destination example
Http or https protocol
Traffic to Azure or Adobe services
Any
Through the shared cluster IPs (not the dedicated IP)
adobe.io
api.windows.net
Host matching the nonProxyHosts parameter
80 or 443
Through the shared cluster IPs
Host matching the nonProxyHosts parameter
Ports outside 80 or 443
Blocked
If the IP falls in the VPN gateway address space range, and through http proxy configuration (configured by default for http/s traffic using standard Java™ HTTP client library)
Any
Through the VPN
10.0.0.1:443
It can be a hostname as well.
If the IP does not fall in the VPN gateway address space range, and through http proxy configuration (configured by default for http/s traffic using standard Java™ HTTP client library)
Any
Through the dedicated egress IP
Ignores http proxy configuration (for example, if explicitly removed from standard Java™ HTTP client library or if using Java™ library that ignores standard proxy configuration)
80 or 443
Through the shared cluster IPs
Ignores http proxy configuration (for example, if explicitly removed from standard Java™ HTTP client library or if using Java™ library that ignores standard proxy configuration)
Ports outside 80 or 443
Blocked
Non-http or non-https
If the IP falls in the VPN gateway address space range and the client connects to AEM_PROXY_HOST env variable using a portOrig declared in the portForwards API parameter
Any
Through the VPN
10.0.0.1:3306
It can be a hostname as well.
If the IP does not fall in the VPN gateway address space range and client connects to AEM_PROXY_HOST env variable using a portOrig declared in the portForwards API parameter
Any
Through the dedicated egress IP
Anything else
Any
Blocked

Useful Domains for Configuration vpn-useful-domains-for-configuration

The diagram below provides a visual representation of a set of domains and associated IPs that are useful for configuration and development. The table further below the diagram describes those domains and IPs.

VPN Domain Configuration

Domain pattern
Egress (from AEM) meaning
Ingress (to AEM) meaning
p{PROGRAM_ID}.external.adobeaemcloud.com
Dedicated egress IP address for traffic going to the Internet rather than through private networks
Connections from the VPN would show at the CDN as coming from this IP. To only allow connections from the VPN to go into AEM, configure Cloud Manager to only allow this IP and block everything else. See the "Restrict ingress to VPN connections" section for more details.
p{PROGRAM_ID}.{REGION}-gateway.external.adobeaemcloud.com
N/A
The IP of the VPN gateway on the AEM side. Your network engineering team can use this to allow only VPN connections to your VPN gateway from a specific IP address.
p{PROGRAM_ID}.{REGION}.inner.adobeaemcloud.net
The IP of traffic coming from the AEM side of the VPN to your side. This can be allowlisted in your configuration to ensure that the connections are only made from AEM.
If you want to allow VPN access to AEM, you should configure CNAME DNS entries to map your custom domain and/or author-p{PROGRAM_ID}-e{ENVIRONMENT_ID}.adobeaemcloud.com and/or publish-p{PROGRAM_ID}-e{ENVIRONMENT_ID}.adobeaemcloud.com to this.

Restrict VPN to Ingress Connections restrict-vpn-to-ingress-connections

If you want to allow only VPN access to AEM, environment allowlists can be configured in Cloud Manager so that only the IP defined by p{PROGRAM_ID}.external.adobeaemcloud.com is allowed to talk to the environment. This can be done the same way as any other IP-based allowlist in Cloud Manager.

If rules must be path-based, use standard http directives at the Dispatcher level to deny or allow certain IPs. They should ensure that the desired paths are also not cacheable at the CDN so that the request always gets to origin.

Httpd Config Example httpd-example

Order deny,allow
Deny from all
Allow from 192.168.0.1
Header always set Cache-Control private

Enabling Advanced Networking Configurations on Environments enabling

Once you have configured an advanced networking option for a program, whether flexible port egress, dedicated egress IP address, or VPN, to use it, you must enable it at the environment level.

When you enable an advanced networking configuration for an environment, you can also enable optional port forwarding and non-proxy hosts. Parameters are configurable per environment to offer flexibility.

  • Port Forwarding - Port forwarding rules should be declared for any destination ports other than 80/443, but only if not using http or https protocol.

    • Port forwarding rules are defined by specifying the set of destination hosts (names or IP and ports).
    • The client connection that uses port 80/443 over http/https must still use proxy settings in their connection to have the properties of advanced networking applied to the connection.
    • For each destination host, you must map the intended destination port to a port from 30000 through 30999.
    • Port forwarding rules are available for all advanced networking types.
  • Non-Proxy Hosts - Non-proxy hosts let you declare a set of hosts that should route through a shared IPs address range rather than the dedicated IP.

    • This may be useful since traffic egressing through shared IPs may be further optimized.
    • Non-proxy hosts are only available for dedicated egress IP address and VPN advanced networking types.
NOTE
You cannot enable an advanced networking configuration for an environment if the environment is in the Updating status.

Enabling Using the UI enabling-ui

  1. Log into Cloud Manager at my.cloudmanager.adobe.com and select the appropriate organization.

  2. On the My Programs console, select the program.

  3. From the Program Overview page, navigate to the Environments tab and select the environment where you want to enable the advanced networking configuration under the Environments heading in the left panel. Then select the Advanced network configuration tab of the selected environment and click Enable network infrastructure.

    Selecting environment so you can enable advanced networking

  4. The Configure advanced networking dialog opens.

  5. On the Non-proxy hosts tab, for dedicated egress IP addresses and VPNs, you can optionally define a set of hosts. These defined hosts should be routed through a shared IPs address range rather than the dedicated IP, by providing the host name in the Non-Proxy Host field and clicking Add.

    • The host is added to the list of hosts on the tab.
    • Repeat this step if you want to add multiple hosts.
    • Click the X to the right of the row if you wan to remove a host.
    • This tab is not available for flexible port egress configurations.

    Adding non-proxy hosts

  6. On the Port forwards tab, you can optionally define port forwarding rules for any destination ports other than 80/443 if not using HTTP or HTTPS. Provide a Name, Port Orig, and Port Dest and click Add.

    • The rule is added to the list of rules on the tab.
    • Repeat this step if you want to add multiple rules.
    • Click the X to the right of the row if you want to remove a rule.

    Defining optional port forwards

  7. Click Save in the dialog box so you can apply the configuration to the environment.

The advanced networking configuration is applied to the selected environment. Back on the Environments tab, you can see the details of the configuration applied to the selected environment and their status.

Environment configured with advanced networking

Enabling Using the API enabling-api

To enable an advanced networking configuration for an environment, the PUT /program/<program_id>/environment/<environment_id>/advancedNetworking endpoint must be invoked per environment.

The API should respond in just a few seconds, indicating a status of updating. After about 10 minutes, a call to the Cloud Manager’s environment GET endpoint shows a status of ready, indicating that the update to the environment is applied.

Per environment port forwarding rules can be updated by invoking the PUT /program/{programId}/environment/{environmentId}/advancedNetworking endpoint, and including the full set of configuration parameters, rather than a subset.

Dedicated egress IP address and VPN advanced networking types support a nonProxyHosts parameter. This lets you declare a set of hosts that should route through a shared IPs address range rather than the dedicated IP. The nonProxyHost URLs may follow the patterns of example.com or *.example.com, where the wildcard is only supported at the start of the domain.

Even if there are no environment traffic routing rules (hosts or bypasses), PUT /program/<program_id>/environment/<environment_id>/advancedNetworking must still be called, just with an empty payload.

TIP
The full set of parameters, exact syntax, and important information like what parameters cannot be changed later, can be referenced in the API documentation.

Editing and Deleting Advanced Networking Configurations on Environments editing-deleting-environments

After enabling advanced networking configurations to environments, you can update the details of those configurations or delete them.

NOTE
You cannot edit network infrastructure if it has the status Creating, Updating, or Deleting.

Editing or Deleting using the UI editing-ui

  1. Log into Cloud Manager at my.cloudmanager.adobe.com and select the appropriate organization.

  2. On the My Programs console, select the program.

  3. From the Program Overview page, navigate to the Environments tab and select the environment where you want to enable the advanced networking configuration under the Environments heading in the left panel. Then select the Advanced network configuration tab of the selected environment and click the ellipsis button.

    Selecting edit or delete of advanced networking at the program level

  4. In the ellipsis menu, select either Edit or Delete.

    • If you choose Edit, update the information per the steps described in the previous section, Enabling Using the UI, and click Save.
    • If you choose Delete, confirm the deletion in the Delete network configuration dialog with Delete or abort with Cancel.

The changes are reflected on the Environments tab.

Editing or Deleting using the API editing-api

To delete advanced networking for a particular environment, invoke DELETE [/program/{programId}/environment/{environmentId}/advancedNetworking]().

TIP
The full set of parameters, exact syntax, and important information like what parameters cannot be changed later, can be referenced in the API documentation.

Editing and Deleting a Program’s Network Infrastructure editing-deleting-program

Once network infrastructure is created for a program, only limited properties can be edited. If you no loner require it, you can delete the advanced networking infrastructure for your entire program.

NOTE
The following are limitations to editing and deleting network infrastructure:
  • Delete only deletes the infrastructure if all environments have their advanced networking disabled.
  • You cannot edit network infrastructure if it has the status Creating, Updating, or Deleting.
  • Only the VPN advanced networking infrastructure type can be edited once created and then only limited fields.
  • For security reasons, the Shared key must always be provided when editing an advanced VPN networking infrastructure, even if you are not editing the key itself.

Editing and Deleting with the UI delete-ui

  1. Log into Cloud Manager at my.cloudmanager.adobe.com and select the appropriate organization

  2. On the My Programs console, select the program.

  3. From the Program Overview page, navigate to the Environments tab and select Network Infrastructure heading in the left panel. Then click the ellipsis button next to the infrastructure that you want to delete.

    Selecting edit or delete of advanced networking at the program level

  4. In the ellipsis menu, select either Edit or Delete.

  5. If you choose Edit, the Edit network infrastructure wizard opens. Edit as required following the steps as described when creating the infrastructure.

  6. If you choose Delete, confirm the deletion in the Delete network configuration dialog box with Delete or abort with Cancel.

The changes are reflected on the Environments tab.

Editing and Deleting with the API delete-api

To delete the network infrastructure for a program, invoke DELETE /program/{program ID}/networkinfrastructure/{networkinfrastructureID}.

Changing a Program’s Advanced Networking Infrastructure Type changing-program

It is only possible to have one type of advanced networking infrastructure configured for a program at a time, The advanced networking infrastructure must either flexible port egress, dedicated egress IP address, or VPN.

If you decide that you need another advanced networking infrastructure type than the one you have already configured, delete the existing one, and create another one. Do the following:

WARNING
This procedure results in a downtime of advanced networking services between deletion and recreation.
If downtime would cause significant business impact, contact customer support for assistance, describing what has already been created and the reason for the change.

Advanced Networking Configuration for Other Publish Regions advanced-networking-configuration-for-additional-publish-regions

When an additional region is added to an environment that already has advanced networking configured, traffic from the additional publish region that matches the advanced networking rules route through the primary region by default. However, if the primary region becomes unavailable, the advanced networking traffic is dropped if advanced networking hasn’t been enabled in the additional region. If you want to optimize latency and increase availability in case one of the regions undergoes an outage, it is necessary to enable advanced networking for the additional publish regions. Two different scenarios are described in the following sections.

NOTE
All regions share environment advanced networking configuration, so it is not possible to route traffic to different destinations based on the region the traffic is egressing out of.

Dedicated Egress IP Addresses additional-publish-regions-dedicated-egress

Advanced networking already enabled in the primary region already-enabled

If an advanced networking configuration is already enabled in the primary region, follow these steps:

  1. If you locked down your infrastructure such that the dedicated AEM IP address is allowlisted, temporarily disable any deny rules in that infrastructure. If this is not done, there is a short period where requests from the new region’s IP addresses are denied by your own infrastructure. This is not necessary if you have locked down your infrastructure by way of a FullyQualified Domain Name (FQDN), (p1234.external.adobeaemcloud.com, for example), because all AEM regions egress advanced networking traffic from the same FQDN
  2. Create the program-scoped networking infrastructure for the secondary region through a POST call to the Cloud Manager Create Network Infrastructure API, as described in advanced networking documentation. The only difference in the payload’s JSON configuration relative to primary region is the region property
  3. If your infrastructure must be locked down by IP to allow AEM traffic, add the IPs that match p1234.external.adobeaemcloud.com. There should be one per region.

Advanced networking not yet configured in any region not-yet-configured

The procedure is mostly similar to the previous instructions. However, if the production environment has not yet been enabled for advanced networking, there is an opportunity to test the configuration by first enabling it in a staging environment:

  1. Create networking infrastructure for all regions through POST call to the Cloud Manager Create Network Infrastructure API. The only difference in the payload’s JSON configuration relative to primary region is the region property.
  2. For the staging environment, enable and configure the environment scoped advanced networking by running PUT api/program/{programId}/environment/{environmentId}/advancedNetworking. For more information, see the API documentation here
  3. If necessary, lock down external infrastructure, preferably by FQDN (for example, p1234.external.adobeaemcloud.com). You can otherwise do it by IP address
  4. If the staging environment works as expected, enable and configure the environment-scoped advanced networking configuration for production.

VPN vpn-regions

The procedure is nearly identical to the dedicated egress IP addresses instructions. The only difference is that in addition to the region property being configured differently from the primary region, the connections.gateway field can optionally be configured. The configuration can route to a different VPN endpoint operated by your organization, geographically closer to the new region.

recommendation-more-help
fbcff2a9-b6fe-4574-b04a-21e75df764ab