灵活的端口出口
了解如何设置和使用灵活的端口出口,以支持从AEM as a Cloud Service到外部服务的外部连接。
什么是灵活端口出口?
灵活的端口出口允许将自定义、特定的端口转发规则附加到AEM as a Cloud Service,从而允许建立从AEM到外部服务的连接。
Cloud Manager程序只能具有 单个 网络基础架构类型。 在执行以下命令之前,请确保灵活端口出口是AEM as a Cloud Service最适合的网络基础架构类型。
先决条件
使用Cloud Manager API设置或配置灵活端口出口时,需要满足以下条件:
-
启用了Cloud Manager API且Cloud Manager业务负责人权限的Adobe Developer Console项目
-
- 组织ID (又称IMS组织ID)
- 客户端ID(又称API密钥)
- 访问令牌(又称持有者令牌)
-
Cloud Manager项目ID
-
Cloud Manager环境ID
有关更多详细信息,请查看如何设置、配置和获取Cloud Manger API凭据,以使用这些凭据进行Cloud Manager API调用。
本教程使用curl
来进行Cloud Manager API配置。 提供的curl
命令采用Linux/macOS语法。 如果使用Windows命令提示符,请将\
换行符替换为^
。
为每个程序启用灵活端口出口
首先在AEM as a Cloud Service上启用灵活端口出口。
可以使用Cloud Manager启用灵活端口出口。 以下步骤概述了如何使用Cloud Manager在AEM as a Cloud Service上启用灵活端口出口。
-
以Cloud Manager业务负责人身份登录到Adobe Experience Manager Cloud Manager。
-
导航到所需的项目。
-
在左侧菜单中,导航到 服务>网络基础架构。
-
选择 添加网络基础架构 按钮。
-
在 添加网络基础架构 对话框中,选择 灵活端口出口 选项,然后选择 区域 以创建专用出口IP地址。
-
选择 保存 以确认添加灵活端口出口。
-
等待创建网络基础结构并标记为 就绪。 此过程最多可能需要1小时。
通过创建的灵活端口出口,您现在可以使用Cloud Manager API配置端口转发规则,如下所述。
可以使用Cloud Manager API启用灵活端口出口。 以下步骤概述了如何使用Cloud Manager API在AEM as a Cloud Service上启用灵活端口出口。
-
首先,通过使用Cloud Manager API listRegions操作确定在中设置了高级联网的地区。 进行后续Cloud Manager API调用需要
region name
。 通常,会使用生产环境所在的区域。在环境的详细信息下的Cloud Manager中查找您的AEM as a Cloud Service环境所在的地区。 Cloud Manager中显示的地区名称可以是映射到Cloud Manager API中使用的地区代码。
listRegions HTTP请求
code language-shell $ curl -X GET https://cloudmanager.adobe.io/api/program/{programId}/regions \ -H 'x-gw-ims-org-id: <ORGANIZATION_ID>' \ -H 'x-api-key: <CLIENT_ID>' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Content-Type: application/json'
-
使用Cloud Manager API createNetworkInfrastructure操作为Cloud Manager程序启用灵活端口出口。 使用从Cloud Manager API
listRegions
操作获得的相应region
代码。createNetworkInfrastructure HTTP请求
code language-shell $ curl -X POST https://cloudmanager.adobe.io/api/program/{programId}/networkInfrastructures \ -H 'x-gw-ims-org-id: <ORGANIZATION_ID>' \ -H 'x-api-key: <CLIENT_ID>' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Content-Type: application/json' \ -d '{ "kind": "flexiblePortEgress", "region": "va7" }'
等待15分钟,让Cloud Manager计划配置网络基础设施。
-
检查环境是否已使用上一步中从
createNetworkInfrastructure
HTTP请求返回的id
完成使用Cloud Manager API getNetworkInfrastructure操作的 灵活端口出口 配置。getNetworkInfrastructure HTTP请求
code language-shell $ curl -X GET https://cloudmanager.adobe.io/api/program/{programId}/networkInfrastructure/{networkInfrastructureId} \ -H 'x-gw-ims-org-id: <ORGANIZATION_ID>' \ -H 'x-api-key: <CLIENT_ID>' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Content-Type: application/json'
验证HTTP响应是否包含 就绪 的 状态。 如果尚未准备就绪,请每隔几分钟重新检查一次状态。
通过创建的灵活端口出口,您现在可以使用Cloud Manager API配置端口转发规则,如下所述。
为每个环境配置灵活的端口出口代理
-
使用Cloud Manager API enableEnvironmentAdvancedNetworkingConfiguration操作在每个AEM as a Cloud Service环境中启用和配置 灵活端口出口 配置。
enableEnvironmentAdvancedNetworkingConfiguration HTTP请求
code language-shell $ curl -X PUT https://cloudmanager.adobe.io/api/program/{programId}/environment/{environmentId}/advancedNetworking \ -H 'x-gw-ims-org-id: <ORGANIZATION_ID>' \ -H 'x-api-key: <CLIENT_ID>' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Content-Type: application/json' \ -d @./flexible-port-egress.json
在
flexible-port-egress.json
中定义JSON参数,并通过... -d @./flexible-port-egress.json
提供给curl。下载示例flexible-port-egress.json。 此文件只是一个示例。 根据enableEnvironmentAdvancedNetworkingConfiguration中记录的可选/必填字段根据需要配置文件。
code language-json { "portForwards": [ { "name": "mysql.example.com", "portDest": 3306, "portOrig": 30001 }, { "name": "smtp.sendgrid.com", "portDest": 465, "portOrig": 30002 } ] }
对于每个
portForwards
映射,高级联网定义以下转发规则:table 0-row-5 1-row-5 代理主机 代理端口 外部主机 外部端口 AEM_PROXY_HOST
portForwards.portOrig
→ portForwards.name
portForwards.portDest
如果您的AEM部署 仅 需要与外部服务的HTTP/HTTPS连接(端口80/443),请将
portForwards
数组留空,因为只有非HTTP/HTTPS请求才需要这些规则。 -
对于每个环境,使用Cloud Manager API getEnvironmentAdvancedNetworkingConfiguration操作验证出口规则是否有效。
getEnvironmentAdvancedNetworkingConfiguration HTTP请求
code language-shell $ curl -X GET https://cloudmanager.adobe.io/api/program/{programId}/environment/{environmentId}/advancedNetworking \ -H 'x-gw-ims-org-id: <ORGANIZATION_ID>' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'x-api-key: <CLIENT_ID>' \ -H 'Content-Type: application/json'
-
可以使用Cloud Manager API enableEnvironmentAdvancedNetworkingConfiguration操作更新灵活的端口出口配置。 请记住
enableEnvironmentAdvancedNetworkingConfiguration
是PUT
操作,因此必须随每次调用此操作提供所有规则。 -
现在,您可以在自定义AEM代码和配置中使用灵活的端口出口配置。
通过灵活的端口出口连接到外部服务
启用灵活端口出口代理后,AEM代码和配置可以使用它们调用外部服务。 AEM对两种外部调用的处理方式有所不同:
- 对非标准端口上的外部服务的HTTP/HTTPS调用
- 包括对在标准80或443端口以外的端口上运行的服务发出的HTTP/HTTPS调用。
- 对外部服务的非HTTP/HTTPS调用
- 包括任何非HTTP调用,例如与Mail服务器、SQL数据库或在其他非HTTP/HTTPS协议上运行的服务的连接。
默认情况下,允许来自标准端口(80/443)上AEM的HTTP/HTTPS请求,而无需额外的配置或注意事项。
非标准端口上的HTTP/HTTPS
在从AEM创建到非标准端口(非80/443)的HTTP/HTTPS连接时,必须通过通过占位符提供的特殊主机和端口建立连接。
AEM提供两组特殊的Java™系统变量,这些变量映射到AEM的HTTP/HTTPS代理。
AEM_PROXY_HOST
System.getenv().getOrDefault("AEM_PROXY_HOST", "proxy.tunnel")
$[env:AEM_PROXY_HOST;default=proxy.tunnel]
AEM_HTTP_PROXY_PORT
3128
)System.getenv().getOrDefault("AEM_HTTP_PROXY_PORT", 3128)
$[env:AEM_HTTP_PROXY_PORT;default=3128]
AEM_HTTPS_PROXY_PORT
3128
)System.getenv().getOrDefault("AEM_HTTPS_PROXY_PORT", 3128)
$[env:AEM_HTTPS_PROXY_PORT;default=3128]
对非标准端口上的外部服务进行HTTP/HTTPS调用时,必须使用Cloud Manager API enableEnvironmentAdvancedNetworkingConfiguration
操作定义相应的portForwards
,因为端口转发“规则”定义在“代码中”。
代码示例
与外部服务的非HTTP/HTTPS连接
创建非HTTP/HTTPS连接时(例如 AEM SQL、SMTP等),必须通过AEM提供的特殊主机名建立连接。
AEM_PROXY_HOST
System.getenv().getOrDefault("AEM_PROXY_HOST", "proxy.tunnel")
$[env:AEM_PROXY_HOST;default=proxy.tunnel]
然后,通过AEM_PROXY_HOST
和映射端口(portForwards.portOrig
)调用与外部服务的连接,AEM随后将其路由到映射的外部主机名(portForwards.name
)和端口(portForwards.portDest
)。
AEM_PROXY_HOST
portForwards.portOrig
portForwards.name
portForwards.portDest