分配azure VM公共IP(PIP)后,它不会在门户中更新

时间:2016-04-28 22:05:08

标签: azure ilpip

我已经在天蓝色的Linux VM中分配了动态IP。当我在该服务器中运行Web应用程序时,我想为其分配一个ILPIP。 我使用 [Table("TestTable")] public partial class TestTable { [Key] public int IntVal { get; set; } } public partial class Model1 : DbContext { public Model1() : base("name=Model1") { } public virtual DbSet<TestTable> TestTables { get; set; } } class Program { private static void Main(string[] args) { var context = new Model1(); var baseQuery = from entity in context.TestTables select entity; var sortedByInt = baseQuery.ApplyOrdering(x => x.IntVal, true).ToList(); } }

将新PIP保留到现有VM

使用Get-AzureVM -ServiceName <servicename> -Name <vmname> | Set-AzurePublicIP -PublicIPName <ipname> | Update-AzureVM.进行检查时,vm会显示新的公共IP地址,但新IP不会显示在门户中,并且VM中的IP分配状态仍显示为动态。我错过了什么吗?

1 个答案:

答案 0 :(得分:1)

执行PowerShell命令行开关:

obj

您将获得暴露给全世界的VM的保留状态和保留公共IP。

enter image description here