添加 IP 地址后,我失去了与 Azure VM 的连接

问题描述 投票:0回答:1

我已按照此处文档中概述的说明成功配置了四个 IP 地址:

https://learn.microsoft.com/en-us/azure/virtual-network/ip-services/virtual-network-multiple-ip-addresses-portal

但是,在完成“将 IP 地址添加到虚拟机操作系统”步骤后,我完全失去了与虚拟机的连接。因此,我无法从本地计算机或通过 Azure 门户建立 RDP 连接。这个问题引起了我一些重大的故障排除工作,直到我设法恢复更改。 (我有点担心)

目前,四个 IP 地址已创建,但我们只能使用系统中已配置的主 IP 通过 RDP 访问计算机。我已经通过运行命令“ipconfig /all”验证了这一点,该命令提供了以下详细信息:

Windows IP Configuration

   Host Name . . . . . . . . . . . . : myHostName
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   DNS Suffix Search List. . . . . . : 

Ethernet adapter Ethernet 6:

   Connection-specific DNS Suffix  . : 
   Description . . . . . . . . . . . : Microsoft Hyper-V Network Adapter #4
   Physical Address. . . . . . . . . : 
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : (Preferred)
   IPv4 Address. . . . . . . . . . . : Azure Primary Private IP (Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : Wednesday, November 1, 2023 8:18:29 AM
   Lease Expires . . . . . . . . . . : Saturday, December 8, 2159 3:58:05 PM
   Default Gateway . . . . . . . . . : My Default gateway
   DHCP Server . . . . . . . . . . . : 168.63.129.16
   DHCPv6 IAID . . . . . . . . . . . : 184558152
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-01-2C-D1-80-62-60-45-BD-80-4D-25
   DNS Servers . . . . . . . . . . . : 168.63.129.16
   NetBIOS over Tcpip. . . . . . . . : Enabled

我陷入困境,因为我们需要配置多个 IP 以在单个 Azure VM 中托管多个 Web 应用程序

请多指教

我按照此处文档中概述的说明进行操作:

https://learn.microsoft.com/en-us/azure/virtual-network/ip-services/virtual-network-multiple-ip-addresses-portal

“将 IP 地址添加到虚拟机操作系统”步骤

azure ip virtual-machine host
1个回答
0
投票

我已经在网络接口中添加了IP地址,如下所示:

enter image description here

目前,四个 IP 地址已创建,但我们只能使用系统中已配置的主 IP 通过 RDP 访问计算机。我已经通过运行命令“ipconfig /all”验证了这一点,该命令提供了以下详细信息:

要在使用主 IP 登录到 Azure VM 后解决此问题,请打开命令提示符并运行

ipconfig /all
。您应该会看到列出的主要 IP 地址(例如,10.0.0.4 作为“首选”),如下所示。

enter image description here

输入

ncpa.cpl
打开网络连接配置 -> 属性 -> Internet 协议版本 4 (TCP/IPv4)

输入您的主 IP 地址、子网掩码、默认网关以及 主 IP 地址的首选 DNS 服务器。这些应该与您的主要 IP 的配置相匹配,如下所示。

enter image description here

现在要添加其他 IP,请单击 Advanced 选项并添加与 Azure 网络接口关联的私有 IP 地址,然后单击

ok
保存更改。

enter image description here

现在我可以看到我的主要和辅助私有IP地址已添加到配置中,如下所示:

Windows IP Configuration

   Host Name . . . . . . . . . . . . : testvm1
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No

Ethernet adapter Ethernet:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Microsoft Hyper-V Network Adapter
   Physical Address. . . . . . . . . : 00-22-48-xxxx
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::69d9:1d0c:8ad1:e1b1%3(Preferred)
   IPv4 Address. . . . . . . . . . . : 10.0.0.4(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   IPv4 Address. . . . . . . . . . . : 10.0.0.5(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   IPv4 Address. . . . . . . . . . . : 10.0.0.6(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 10.0.0.1
   DHCPv6 IAID . . . . . . . . . . . : 100672072
   DHCPv6 Client DUID. . . . . . . . : 00-01-00-0xxxx
   DNS Servers . . . . . . . . . . . : 168.63.129.16
   NetBIOS over Tcpip. . . . . . . . : Enabled

enter image description here

现在在 RDP 中输入您的辅助公共 IP 地址,我可以登录多个 Ip 地址。

示例:在我的例子中网络接口3rd-ip(157.x.x.120)成功登录如下:

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.