你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

使用 Azure CLI 创建、更改或删除对等互连服务连接

Azure 对等互连服务是一种网络服务,可增强客户与 Microsoft 云服务(例如 Microsoft 365、Dynamics 365、软件即服务 (SaaS) 服务、Azure 或可通过公共 Internet 访问的任何 Microsoft 服务)建立的连接。

本文介绍如何使用 Azure CLI 创建、更改和删除对等互连服务连接。 若要了解如何使用 Azure 门户或 Azure PowerShell 管理对等互连服务连接,请参阅使用 Azure 门户创建、更改或删除对等互连服务连接使用 PowerShell 创建或更改对等互连服务连接

先决条件

  • 具有活动订阅的 Azure 帐户。 免费创建帐户

  • 本地安装的 Azure Cloud Shell 或 Azure CLI。

    本文中的步骤在 Azure Cloud Shell 中以交互方式运行 Azure CLI 命令。 要在 Cloud Shell 中运行命令,请选择代码块右上角的“打开 Cloudshell”。 选择“复制”以复制代码,并将其粘贴到 Cloud Shell 以运行。 也可以从 Azure 门户中运行 Cloud Shell。

    还可以 在本地安装 Azure CLI 以运行命令。 本文需要 Azure CLI 2.0.28 或更高版本。 运行 az version 以查找安装的版本和依赖库。 若要升级到最新版本,请运行 az upgrade。 如果在本地运行 Azure CLI,请使用 az login 命令登录到 Azure。

  • 连接服务提供商。 有关详细信息,请参阅对等互连服务合作伙伴

将订阅注册到资源提供程序和功能标志

在继续执行创建对等互联服务连接的步骤之前,请使用 az feature registeraz provider register 将订阅注册到资源提供程序和功能标志:

az feature register --namespace Microsoft.Peering --name AllowPeeringService
az provider register --name Microsoft.Peering

列出对等互连服务位置和服务提供商

使用 az peering service country list 列出提供对等互连服务的国家/地区,使用 az peering service location list 列出可在其中获取对等互连服务的特定国家/地区的都市位置:

# List the countries/regions available for Peering Service.
az peering service country list --out table
# List metro locations serviced in a country
az peering service location list --country "united states" --output table

使用 az peering service provider list 获取可用对等互连服务提供商的列表:

az peering service provider list --output table

创建对等互连服务连接

使用 az peering service create 创建对等互连服务连接:

az peering service create --location "eastus" --peering-service-name "myPeeringService" --resource-group "myResourceGroup" --peering-service-location "Virginia" --peering-service-provider "Contoso"

添加对等互连服务前缀

使用 az peering service prefix create 添加连接提供商提供的前缀:

az peering service prefix create --peering-service-name "myPeeringService" --prefix-name "myPrefix" --resource-group "myResourceGroup" --peering-service-prefix-key "00000000-0000-0000-0000-000000000000" --prefix "240.0.0.0/32"

列出所有对等互连服务连接

若要查看所有对等互连服务连接的列表,请使用 az peering service list

az peering service list --resource-group "myresourcegroup" --output "table"

列出所有对等互连服务前缀

若要查看所有对等互连服务前缀的列表,请使用 az peering service prefix list

az peering service prefix list --peering-service-name "myPeeringService" --resource-group "myResourceGroup"

删除对等互连服务前缀

若要删除对等互连服务前缀,请使用 az peering service prefix delete

az peering service prefix delete --peering-service-name "myPeeringService" --prefix-name "myPrefix" --resource-group "myResourceGroup"

删除对等互连服务连接

若要删除对等互连服务连接,请使用 az peering service delete

az peering service delete --peering-service-name "myPeeringService" --resource-group "myResourceGroup"