0

我在 PowerShell 中使用以下两个命令将端点添加到 Azure 中的 VM:

Add-AzureEndpoint -Name "foo" -Protocol "UDP" -LocalPort "12345" -VM $vm
Set-AzureEndpoint -LocalPort "12345" -Name "foo" -Protocol "UDP" -PublicPort "12345" -VM $vm

我可以使用 powershell(下面的输出)看到端点,但在 manage.windowsazure.com 网站上看不到它。我需要做一些特别的事情才能让它出现吗?我没有正确添加它吗?或者以某种方式加一半?我注意到其他人(都是通过网站添加的)都有 VIP 条目,而我的没有。我在文档中没有看到有关如何设置 VIP 的任何内容。我需要一个吗?

Get-AzureEndpoint -VM $vm


LBSetName                :
LocalPort                : 5986
Name                     : PowerShell
Port                     : 5986
Protocol                 : tcp
Vip                      : abc.def.ghi.jkl
ProbePath                :
ProbePort                : 0
ProbeProtocol            :
ProbeIntervalInSeconds   :
ProbeTimeoutInSeconds    :
EnableDirectServerReturn : False
Acl                      : {}

LBSetName                :
LocalPort                : 3389
Name                     : Remote Desktop
Port                     : 51578
Protocol                 : tcp
Vip                      : abc.def.ghi.jkl
ProbePath                :
ProbePort                : 0
ProbeProtocol            :
ProbeIntervalInSeconds   :
ProbeTimeoutInSeconds    :
EnableDirectServerReturn : False
Acl                      : {}

LBSetName                :
LocalPort                : 445
Name                     : smb
Port                     : 445
Protocol                 : tcp
Vip                      : abc.def.ghi.jkl
ProbePath                :
ProbePort                : 0
ProbeProtocol            :
ProbeIntervalInSeconds   :
ProbeTimeoutInSeconds    :
EnableDirectServerReturn : False
Acl                      : {}

LBSetName                :
LocalPort                : 139
Name                     : smb2
Port                     : 139
Protocol                 : tcp
Vip                      : abc.def.ghi.jkl
ProbePath                :
ProbePort                : 0
ProbeProtocol            :
ProbeIntervalInSeconds   :
ProbeTimeoutInSeconds    :
EnableDirectServerReturn : False
Acl                      : {}

LBSetName                :
LocalPort                : 12345
Name                     : foo
Port                     : 12345
Protocol                 : UDP
Vip                      :
ProbePath                :
ProbePort                : 0
ProbeProtocol            :
ProbeIntervalInSeconds   :
ProbeTimeoutInSeconds    :
EnableDirectServerReturn :
Acl                      : {}
4

1 回答 1

1

您需要在更改端点后更新您的 VM 对象。用这个调用完成你的脚本:

$vm | Update-AzureVM
于 2013-10-03T09:37:15.083 回答