简体   繁体   中英

How to resolve a domain name to a single IP address?

I was surprised to learn that a single domain name can have many IP addresses. For example, here are my results for Dns.GetHostAddresses("www.google.com") :

{System.Net.IPAddress[6]}
    [0]: {74.125.127.147}
    [1]: {74.125.127.99}
    [2]: {74.125.127.103}
    [3]: {74.125.127.104}
    [4]: {74.125.127.105}
    [5]: {74.125.127.106}

(YMMV; the addresses seem to change periodically)

Where do these different addresses come from, and how should one choose an IP address to connect to?

Unless there is a reason to specifically bind to the IP, you should use DNS to resolve at the moment you make the connection.

As for the "where do they come from", thats answered by any number of infrastructure decisions. This is the power of DNS, in that load balancing, caching, delivery, etc systems can dynamically serve up a domain (example.com) from any number of sources without you (the client) having to worry about that implementation.

The multiple DNS can be multiple servers, different datacenters, cache networks, etc ... depending on any number of factors.

There are most likely using some sort of RoundRobin.

You can only rely on a domain name, unless the domain is under your control.

The IP addresses come from the DNS server associated with the queried domain name, www.google.com in your example. This would be the same process a web browser follows to get the server IP addresses to connect to.

As for which IP address to connect to I'd imagine they're all redundant and you should probably just connect to the first one, however this is just speculation and I don't really know for sure.

You can do a couple of things:

  1. Use System.Net.IPAddress[0] right off the bat.
  2. You can ping all 6 and see which one has the best response time, cache that value and try to use it later.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM