适用于:✔️ Linux VM
本文介绍如何重置 Azure Linux 虚拟机(VM)的网络接口,以解决在以下情况下无法连接到 Azure Linux VM 时出现的问题:
- 禁用默认网络接口(NIC)。
- 为 NIC 手动设置静态 IP。
以下文章还介绍了如何查看和更改 NIC 的设置,这有助于你:
创建、更改或删除网络接口
如果本文未解决 Azure 问题,请访问 MSDN 和 Stack Overflow 上的 Azure 论坛。 可将问题发布到这些论坛上,或发布到 Twitter 上的 @AzureSupport。 还可提交 Azure 支持请求。 若要提交支持请求,请在 Azure 支持页上,选择“获取支持”。
使用 Azure 门户、Azure PowerShell 或 Azure CLI 重置 NIC
转到 Azure 门户。
选择受影响的虚拟机。
选择“网络”,然后选择 VM 的网络接口。
选择“IP 配置”。
选择该 IP。
如果未将专用 IP 分配设置为静态,请将其更改为 Static。
将“IP 地址”更改为子网中可用的其他 IP 地址。
虚拟机将重启以初始化系统的新 NIC。
尝试使用安全外壳(SSH)登录到计算机。 如果成功,可以根据需要将专用 IP 地址更改回原始 IP 地址。 否则,可以保留它。
确保已安装最新的 Azure PowerShell。
打开提升的 Azure PowerShell 会话。 运行以下命令:
#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。
尝试使用 SSH 连接到计算机。 如果成功,可以根据需要将专用 IP 地址更改回原始 IP 地址。 否则,可以保留它。
从Azure 门户顶部导航启动 Azure Cloud Shell。
运行以下命令:
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
尝试使用 SSH 连接到计算机。 如果成功,可以根据需要将专用 IP 地址更改回原始 IP 地址。 否则,可以保留它。
如果你有任何疑问或需要帮助,请创建支持请求或联系 Azure 社区支持。 你还可以将产品反馈提交到 Azure 反馈社区。