我正在自动部署多个Azure VM,我希望WinRM进入每个Azure VM以完成部署。如何从创建VM的脚本中找到VM的FQDN?
我正在寻找:
$psVirtualMachine = Add-AzureRmVMNetworkInterface -VM $psVirtualMachine -Id $Nic.Id
$CreateNewVM = New-AzureRMVM -ResourceGroupName $ResourceGroupName -Location $GeoLocation -VM $psVirtualMachine
Enter-PSSession -ConnectionUri https://<-- $CreateNewVM.FQDN -->:5986 -Credential $Cred -SessionOption (New-PSSessionOption -SkipCACheck -SkipCNCheck -SkipRevocationCheck) -Authentication Negotiate
答案 0 :(得分:0)
如何从创建VM的脚本中找到VM的FQDN?
默认情况下,Azure不会为Azure VM创建FQDN,我们可以使用powershell设置公共IP地址设置来为Azure VM设置FQDN。
我们可以使用此命令获取FQDN:
$FQDN = (Get-AzureRmPublicIpAddress -Name 'name of public IP' -ResourceGroupName jasonvm).DnsSettings.Fqdn
像这样:
PS C:\Users> (Get-AzureRmPublicIpAddress -Name 'jasonvm-ip' -ResourceGroupName jasonvm).DnsSettings.Fqdn
jasontest321.japaneast.cloudapp.azure.com
要为Azure VM设置FQDN,我们可以使用此powershell
New-AzureRmPublicIpAddress -Name -ResourceGroupName -Location -DomainNameLabel