gpt4 book ai didi

azure - 尝试获取附加到 NIC 的 ip 列表

转载 作者:行者123 更新时间:2023-12-03 03:53:04 25 4
gpt4 key购买 nike

我正在尝试获取附加到 NIC 的 Ip 列表。尝试使用

获取 NetIPAddress。没有得到名单。我的网卡有一个主要 IP 和多个辅助 IP。正在尝试一种方法来获取所有这些。 enter image description here

最佳答案

如果您想获取虚拟机的所有私有(private)IP地址,请尝试下面的PS命令:

$vm = get-azvm -VMName <vm name> -ResourceGroupName <resource Group name>
#get network interface information of vm
$nicRes = Get-AzResource -ResourceId $vm.NetworkProfile.NetworkInterfaces.Id
#get network interface object
$nic = Get-AzNetworkInterface -name $nicRes.name -ResourceGroupName $nicRes.ResourceGroupName
#read ip configs of this network interface
foreach($ipConfig in $nic.IpConfigurations){
$ipConfig.PrivateIpAddress
}

我的网卡IP配置: enter image description here

结果: enter image description here

关于azure - 尝试获取附加到 NIC 的 ip 列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65893601/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com