有没有人知道如何通过Azure PowerShell获取Azure中的vms的Mac地址? 我知道我可以通过WMI或虚拟机内的其他东西来获取它,但我不知道如何在不登录虚拟机的情况下这样做。
答案 0 :(得分:2)
使用Get-AzureRmNetworkInterface
命令和结果对象具有的MacAddress
属性:
(Get-AzureRmNetworkInterface -ResourceGroupName %rgName%).MacAddress
这将列出资源组中网络接口的所有mac,更具体地说,您可以添加-Name
参数。
(Get-AzureRmNetworkInterface -ResourceGroupName %rgName% -Name %nicName%).MacAddress