gpt4 book ai didi

azure - 如何将 Azure 保留 IP(经典)迁移到 Azure 公共(public) IP (ARM)?

转载 作者:行者123 更新时间:2023-12-04 14:09:09 38 4
gpt4 key购买 nike

将 Azure 中的服务从经典模型迁移到 Azure 资源管理器 (ARM) 时,您的经典模型中可能会有一些保留的 IP 地址。保留 IP 的 ARM 对应部分是公共(public) IP。创建新的公共(public) IP 将产生另一个 IP 地址,并且可能会导致已将您的 IP 地址列入白名单的客户端出现问题。

尽管最好使用基于 FQDN 的白名单。然而,有时这是不可能的,IP 白名单是次优的选择。如何从保留的 IP 地址迁移到公共(public) IP 地址,而不需要获取新的 IP 地址?

最佳答案

此主题的实际学分来自 log entry 中的 Vatsana Kongtakane 。我对这些项目进行了调整,因为我认为大多数人都已经拥有了保留的IP。我把它放在StackOverflow上的原因是为了防止信息丢失。

第 1 步 – 登录并准备您的 ARM 环境

# Login to your ARM account
Add-AzureRmAccount

# Get a list of available subscriptions
Get-AzureRMSubscription

# Select your subscription
Select-AzureRmSubscription -SubscriptionName <SubscriptionName>

# Register migration provider, this can take a couple minuites
Register-AzureRmResourceProvider -ProviderNamespace Microsoft.ClassicInfrastructureMigrate

# View the current RegistrationState status, do not proceed to step 2 until the status says Registered
Get-AzureRmResourceProvider -ProviderNamespace Microsoft.ClassicInfrastructureMigrate

第 2 步 – 登录您的经典帐户

# Login to your ASM account
Add-AzureAccount

# Get a list of available subscriptions
Get-AzureSubscription

# Select your subscription
Select-AzureSubscription –SubscriptionName <SubscriptionName>

第 3 步 – 迁移您保留的 IP 地址

# Show the list of all reserved IP addresses
Get-AzureReservedIP

# De-associate the reserved IP address from your cloud service
# (only necessary if the IP is still assigned to a service)
Remove-AzureReservedIPAssociation -ReservedIPName <ReservedIPName> -ServiceName <ServiceName>

# Check for issues during migration
Move-AzureReservedIP -ReservedIPName <ReservedIPName> -Validate

# Prepare the ReservedIP for migration
Move-AzureReservedIP -ReservedIPName <ReservedIPName> -Prepare

# Commit to migrating the ReservedIP (take a pretty long time)
Move-AzureReservedIP -ReservedIPName <ReservedIPName> -Commit

第 4 步 - 验证和清理

此时如果您登录portal.azure.com ,您应该会在“公共(public) IP 地址”下看到具有正确 IP 地址的资源。它正在转移到新的资源组,但您可以将其移动到您喜欢的资源组。

关于azure - 如何将 Azure 保留 IP(经典)迁移到 Azure 公共(public) IP (ARM)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45190296/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com