静态IP到Azure VM

时间:2015-12-18 17:59:32

标签: azure ip public

我在Azure中设置了三个虚拟服务器。它们是三个Windows 2008 R2服务器。

他们都有私人和公共IP,我可以从互联网访问它们没有问题。我已经在它们上设置了私有静态IP。

我想在VM计算机上保留公共IP,以便在服务器关闭或重新启动时不会更改它们。

我尝试关注"如何将ILPIP添加到现有VM"通过访问网站https://azure.microsoft.com/en-us/documentation/articles/virtual-networks-instance-level-public-ip/,但在shell命令后遇到问题。

Get-AzureVM -ServiceName FTPService -Name FTPInstance 
| Set-AzurePublicIP -PublicIPName ftpip2 
| Update-AzureVM

它们是独立服务器。我稍后会安装第三方软件。他们没有运行任何ftp服务器和ftp实例。所以问题是如何将公共静态IP分配给VM机器

谢谢

1 个答案:

答案 0 :(得分:0)

您不能仅为静态VIP分配静态PIP,并且VIP将分配给云服务,或者如果您使用ARM负载均衡器而不是VM本身。

据我所知,您只能在创建云服务时分配静态VIP。

#get a new static IP    
New-AzureReservedIP –ReservedIPName "MyReservedIP" –Location "AzureRegionName"

#create a new vm and cloud service and assign the static IP
New-AzureVM -ServiceName "NewServiceName" -ReservedIPName "MyReservedIP" -Location "AzureRegionName"

在答案中发帖太长了,但我在Azure here上详细解释了不同类型的IP。