gpt4 book ai didi

azure - Azure 实例如何确定其实例级公共(public) IP 地址 (ILPIP)?

转载 作者:行者123 更新时间:2023-12-03 00:32:46 28 4
gpt4 key购买 nike

Azure 提供了获取实例级公共(public) IP 地址 (ILPIP) 的功能:

https://azure.microsoft.com/en-us/documentation/articles/virtual-networks-instance-level-public-ip/

是否有办法让每个实例确定分配给它的公共(public) IP 地址?

最佳答案

您可以使用 VM 内的 Azure PowerShell 模块来检查 ILPIP,如下所示:

#Get the associated Public IP Name for a virtual machine
Get-AzureVM -ServiceName "YourCloudServiceDomain" -Name "YourVMName" | Get-AzurePublicIP

or

#Get the assigned Public IP Address for a virtual machine
$instance = Get-AzureVM -ServiceName "YourCloudServiceDomain" -Name "YourVMName"
$instance.PublicIPAddress

如果您更喜欢 REST Api,您可以查看“列出保留 IP 地址”调用 https://msdn.microsoft.com/library/azure/dn722418.aspx/

关于azure - Azure 实例如何确定其实例级公共(public) IP 地址 (ILPIP)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30920039/

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