not necessarily -- google.com is using anycast. authoritative servers for google.com will return an IP for your request for an A for google.com with an IP that they believe is appropriate for (read: closest to) your geolocation. ssh to a few boxes in different countries and do simultaneous A lookups on google.com and you'll get single results in each case, and each will return different IPs.
Just to be clear, returning different resource records (IP addresses, A records) in the answer section of a DNS response to different clients, based on geographical location, measured latency, etc, is different from anycast routing in which there exist multiple different routes to multiple different hosts all sharing the same IP address.
I’m annoyed by sites asking domain names or some other non-autocompletable information in a text field but not disabling autocomplete in the text field…
17 comments
[ 0.26 ms ] story [ 15.7 ms ] threadSome locations are returning one ip, others are returning multiple, but to your point, they're different in different regions.
Also at googles scale round robin might cause unexpected issues.
<!-- Form Section --> <div class="card shadow-sm mb-5"> <div class="card-body"> <form method="GET" action=""> <div class="row"> <div class="col-md-8 mb-3 mb-md-0"> <input type="text" name="domain" class="form-control" placeholder="Enter a domain (e.g., example.com)" required> </div> <div class="col-md-3 mb-3 mb-md-0"> <select name="record_type" class="form-select" required> <option value="ALL">All Record Types</option> <option value="A">A</option> <option value="AAAA">AAAA</option> <option value="MX">MX</option> <option value="NS">NS</option> <option value="CNAME">CNAME</option> <option value="TXT">TXT</option> <option value="SRV">SRV</option> <option value="SOA">SOA</option> <option value="PTR">PTR</option> </select> </div> <div class="col-md-1"> <button type="submit" class="btn btn-primary w-100">Query</button> </div> </div> </form> </div> </div>