Another simple online DNS query tool
(nstoolbox.com)48 points by sckn 4 days ago | 16 comments
48 points by sckn 4 days ago | 16 comments
ms7892 3 days ago | prev | next |
Great tool. I've following code suggestion to add gaping for form fields on small screen:
<!-- 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>
mr-karan 4 days ago | prev | next |
I've also made a similar tool: https://doggo.mrkaran.dev/. Can be useful when you want to query with a custom nameserver.
indigodaddy 4 days ago | prev | next |
I get a single A rec for google.com. Pretty sure there should be multiple, no?
ricktdotorg 4 days ago | root | parent | next |
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.
ryandv 4 days ago | root | parent | next |
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.
fragmede 4 days ago | root | parent | prev |
Or use this tool and to check globally: https://www.whatsmydns.net/#A/google.com
Some locations are returning one ip, others are returning multiple, but to your point, they're different in different regions.
miyuru 3 days ago | root | parent | prev | next |
Google uses GEODNS, the IP are different for different users.
Also at googles scale round robin might cause unexpected issues.
selcuka 4 days ago | root | parent | prev | next |
dig returns a single IP address (one IPv4 and one IPv6) as well.
4 days ago | root | parent | prev |
yatralalala 3 days ago | prev | next |
similar thing - https://search.reconwave.com/ - but it's passive and includes reverse dns search (all domains for given IP)
artooro 3 days ago | prev | next |
These days any new tool should support SVCB/HTTPS query types as well.
huhtenberg 3 days ago | prev | next |
In the results table I'd fix the width of first two columns, so that tables can be more easily compared by switching between browser tabs.
monkaiju 4 days ago | prev | next |
If you want to visualize DNS propagation checkout dug: https://dug.unfrl.com/
unsnap_biceps 4 days ago | prev | next |
doesn't seem to work for me. Requests just hang.
frizlab 4 days ago | prev |
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…
mattpavelle 4 days ago | next |
I discovered https://dnsdumpster.com/ the other day and found it to be incredibly useful.