AWS Direct Connect 申请流程指南

概述

本文档详细介绍作为终端用户申请AWS Direct Connect专线到香港region的完整流程,包括获取AWS端机房位置、机柜端口和光纤类型等技术信息的步骤。

完整申请流程

1. 查看可用的Direct Connect位置

首先确认AWS香港region支持的Direct Connect位置点:

aws directconnect describe-locations --region ap-east-1

#output example:

{
    "locations": [
        {
            "locationCode": "EQHK1",
            "locationName": "Equinix HK1, Tsuen Wan, N.T., Hong Kong",
            "region": "ap-east-1",
            "availablePortSpeeds": [
                "100G",
                "1G",
                "10G"
            ],
            "availableProviders": [
                "CITIC Telecom CPC",
                "Megaport",
                "Orange Business Services",
                "Equinix, Inc."
            ],
            "availableMacSecPortSpeeds": [
                "100G",
                "10G"
            ]
        }
    ]
}

参考文档: What is AWS Direct Connect?

2. 创建Direct Connect连接请求

通过AWS控制台或CLI创建专线连接请求:

# 创建Direct Connect连接
aws directconnect create-connection \
    --location "location-code" \
    --bandwidth 1Gbps \
    --connection-name "your-connection-name" \
    --region ap-east-1

参考文档: Dedicated AWS Direct Connect connections

3. 等待并下载LOA-CFA文档

AWS会生成LOA-CFA (Letter of Authorization and Connecting Facility Assignment)文档,包含所需的技术信息。

通过控制台下载:

  1. 打开AWS Direct Connect控制台
  2. 选择"Connections"
  3. 选择您的连接,点击"View details"
  4. 点击"Download LOA-CFA"

通过CLI获取:

aws directconnect describe-loa --connection-id "your-connection-id"

核心参考文档: Download the AWS Direct Connect LOA-CFA

4. LOA-CFA文档包含的关键信息

LOA-CFA文档将提供以下您需要的技术信息:

  • 机房地址: 具体的colocation facility地址
  • 机柜位置: rack编号和port分配信息
  • 光纤规格: 连接器类型(通常是单模光纤SM-LC)
  • Cross-connect信息: 用于运营商订购连接

5. 提供LOA-CFA给网络运营商

将LOA-CFA文档提供给您的本地网络运营商或colocation provider,他们将根据此文档为您订购cross-connect连接。

重要注意事项

时间安排

  • 整个流程通常需要2-4周时间
  • LOA-CFA生成可能需要几个工作日
  • 如果LOA-CFA下载链接未启用,AWS Support会创建case请求额外信息,需在7天内响应

技术规格

  • 端口速度: 支持1 Gbps, 10 Gbps, 100 Gbps, 400 Gbps
  • 光纤类型: 通常为单模光纤(SM),LC连接器
  • 连接创建后无法更改端口速度,需要重新创建连接

支持渠道

如果LOA-CFA无法下载或需要额外支持:

  • 联系AWS Support创建case
  • 选择"Account and Billing" > "Direct Connect"类别
  • 或联系AWS销售代表

相关AWS CLI命令汇总

# 查看所有可用位置
aws directconnect describe-locations

# 查看连接状态
aws directconnect describe-connections

# 查看连接详情
aws directconnect describe-connections --connection-id "your-connection-id"

# 获取LOA-CFA
aws directconnect describe-loa --connection-id "your-connection-id"

官方文档链接汇总

核心文档

管理文档

API参考

冗余和高可用性建议

建议同时准备备用连接方案以确保冗余:

  • 考虑在不同的Direct Connect位置建立第二条连接
  • 参考AWS Direct Connect Resiliency Toolkit获取高可用性指导
Previous Post ›
No Comment
Add Comment
comment url
⬆️