#Set the variables
$SubscriptionID = "<Subscription ID>"
$ResourceGroup = "<Resource Group>"
$NetInter="<The Network interface of the VM>"
$VNET = "<Virtual network>"
$subnet= "<The virtual network subnet>"
$PrivateIP = "<New Private IP>"
#You can ignore the publicIP variable if the VM does not have a public IP associated.
$publicIP =Get-AzPublicIpAddress -Name <the public IP name> -ResourceGroupName $ResourceGroup
#Log in to the subscription
Add-AzAccount
Select-AzSubscription -SubscriptionId $SubscriptionId
#Check whether the new IP address is available in the virtual network.
Get-AzVirtualNetwork -Name $VNET -ResourceGroupName $ResourceGroup | Test-AzPrivateIPAddressAvailability -IPAddress $PrivateIP
#Add/Change static IP. This process will change MAC address
$vnet = Get-AzVirtualNetwork -Name $VNET -ResourceGroupName $ResourceGroup
$subnet = Get-AzVirtualNetworkSubnetConfig -Name $subnet -VirtualNetwork $vnet
$nic = Get-AzNetworkInterface -Name $NetInter -ResourceGroupName $ResourceGroup
#Remove the PublicIpAddress parameter if the VM does not have a public IP.
$nic | Set-AzNetworkInterfaceIpConfig -Name ipconfig1 -PrivateIpAddress $PrivateIP -Subnet $subnet -PublicIpAddress $publicIP -Primary
$nic | Set-AzNetworkInterface
가상 머신이 다시 시작하여 시스템에 대한 새 NIC를 초기화합니다.
RDP를 사용하여 컴퓨터에 연결해 보세요. 성공하면 원하는 경우 개인 IP 주소를 원래 주소로 다시 변경할 수 있습니다. 그렇지 않으면 유지할 수 있습니다.
az vm repair reset-nic -g MyResourceGroup -n vmName --subscription subscriptionId --yes
또는
#Log in to the subscription
az login
az account set --subscription
#Check whether the new IP address is available in the virtual network.
az network vnet check-ip-address -g MyResourceGroup -n MyVnet --ip-address 10.0.0.4
#Add/Change static IP. This process won't change MAC address
az network nic ip-config update -g MyResourceGroup --nic-name MyNic -n MyIpConfig --private-ip-address 10.0.0.9
RDP를 사용하여 컴퓨터에 연결해 보세요. 성공하면 원하는 경우 개인 IP 주소를 원래 주소로 다시 변경할 수 있습니다. 그렇지 않으면 유지할 수 있습니다.
사용할 수 없는 NIC 삭제
컴퓨터에 원격 데스크톱을 수행한 후 잠재적인 문제를 방지하기 위해 이전 NIC를 삭제해야 합니다.
디바이스 관리자를 엽니다.
숨겨진 디바이스 표시 보기를>선택합니다.
네트워크 어댑터를 선택합니다.
“Microsoft Hyper-V 네트워크 어댑터”로 명명된 어댑터를 확인합니다.
회색으로 표시된 사용할 수 없는 어댑터가 표시될 수 있습니다. 어댑터를 마우스 오른쪽 단추로 클릭한 다음 제거를 선택합니다.
참고 항목
이름이 "Microsoft Hyper-V 네트워크 어댑터"인 사용할 수 없는 어댑터만 제거합니다. 다른 숨겨진 어댑터를 제거하는 경우 추가 문제를 일으킬 수 있습니다.