How Do VMware Solutions on Azure Forward DNS Queries?

0
3
Asked By CuriousCoder42 On

I'm trying to figure out how DNS queries are handled when VMware solutions are deployed on Azure. Specifically, how do the VMs send their DNS requests to a private DNS server? Any insights would be greatly appreciated!

3 Answers

Answered By DNSWhizKid On

For DNS resolution in Azure, remember a couple of key points:
1. To resolve Azure resource IPs, you need a private DNS zone and the DNS query targeting the Azure WireServer VIP (168.63.129.16).
2. For on-premise IP resolutions, DNS queries need to reach on-premise DNS resolvers.

The Private DNS Resolver acts as a bridge here by allowing specific domain rules to route queries to the appropriate resolver IPs. Make sure you configure it based on your needs!

Answered By CloudGenius87 On

You're on the right track! When a VM sends a DNS request, it goes to the NSX-T DNS service first, then the NSX-T gateway forwards that request to the Azure DNS Private Resolver or directly to an internal DNS server. If it's using Gen2, keep in mind that NSX-T can already manage conditional forwarding, so in many cases, using the Private Resolver might not even be necessary.

Answered By TechNinja99 On

It sounds like you're looking for an Azure DNS Private Resolver. Essentially, when your AVS VMs make DNS requests, they route through the NSX-T DNS service, which then forwards those queries to the Azure DNS Private Resolver. From there, it can either go to a private DNS zone or a public DNS server depending on the configuration. Just remember that the flow goes like this: AVS VM -> NSX-T DNS Service -> Azure DNS Private Resolver -> Azure Private DNS Zone or Public DNS.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.