0

PowerShell で次の 2 つのコマンドを使用して、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 Web サイトには表示されません。表示させるために何か特別なことをする必要がありますか? 正しく追加できませんでしたか?それともなんとなく半分追加?他のもの (すべて Web サイトから追加されたもの) にはすべて 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