具有 VPN 的 Azure VM 未传递 DNS

具有 VPN 的 Azure VM 未传递 DNS

我有一个类似的 Azure/DNS 问题 - 我在 Azure 和本地网络之间设置了站点到站点 VPN,已将虚拟机上 vNIC 的 DNS 提供程序更改为指向内部 DNS 号码,并已验证 vNIC 具有静态 IP 并且已通过 VPN 连接网关到 VNet 设置。隧道两侧的机器可以全天互相 ping,不会掉线。但也没有 DNS。

我很乐意提供更详细的信息,我在这里发布了 IPCONFIG /ALL 命令的片段。

===


C:\windows\system32>ipconfig /all

Windows IP Configuration

   Host Name . . . . . . . . . . . . : XXX-YYYY-ZZZZZ
   Primary Dns Suffix  . . . . . . . :
   Node Type . . . . . . . . . . . . : Hybrid
   IP Routing Enabled. . . . . . . . : No
   WINS Proxy Enabled. . . . . . . . : No
   DNS Suffix Search List. . . . . . : reddog.microsoft.com

Ethernet adapter Ethernet:

   Connection-specific DNS Suffix  . : reddog.microsoft.com
   Description . . . . . . . . . . . : Microsoft Hyper-V Network Adapter
   Physical Address. . . . . . . . . : 11-22-33-44-55-66
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   Link-local IPv6 Address . . . . . : fe80::99c9:d2e8:e22b:99f4%4(Preferred)
   IPv4 Address. . . . . . . . . . . : 10.1.0.6(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : Friday, September 6, 2019 7:12:53 PM
   Lease Expires . . . . . . . . . . : Tuesday, October 14, 2155 4:31:09 AM
   Default Gateway . . . . . . . . . : 10.1.0.1
   DHCP Server . . . . . . . . . . . : 168.xx.xxx.xx
   DHCPv6 IAID . . . . . . . . . . . : 12345124
   DHCPv6 Client DUID. . . . . . . . : 11-22-33-44-55-66-77-88-99-aa-bb-cc-dd-ee
   DNS Servers . . . . . . . . . . . : 192.168.0.xxx
                                       192.168.0.xxx
                                       192.168.20.xxx
   NetBIOS over Tcpip. . . . . . . . : Enabled

Tunnel adapter isatap.reddog.microsoft.com:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . : reddog.microsoft.com
   Description . . . . . . . . . . . : Microsoft ISATAP Adapter
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

Tunnel adapter Teredo Tunneling Pseudo-Interface:

   Media State . . . . . . . . . . . : Media disconnected
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Teredo Tunneling Pseudo-Interface
   Physical Address. . . . . . . . . : 00-00-00-00-00-00-00-E0
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes

答案1

好的 - 长话短说,当我运行 NSLOOKUP 时,我未能提供完整的 DNS 上下文。一旦我这样做了,我意识到 DNS 流量正在正常传输。

我通过在本地服务器上通过 UDP 连接端口 53(DNS)验证了这一点。

总而言之,原因是我没有深入挖掘并追随错误的线索。

希望这对某人有帮助!

相关内容