0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Resolve DNS records at many different nameservers all over the world.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
>= 0

Runtime

~> 0.8
~> 1.5
 Project Readme

globetrotter

globetrotter retrieves a list of DNS servers around the world from the Public DNS Server List and runs your query against them. This is particularly handy for compiling list of SaaS endpoint IPs in cases where the provider doesn't specify them.

Installation

$ gem install globetrotter

Usage

Query 100 DNS servers for googleapis.com, making 10 requests in parallel at a time:

$ globetrotter -q googleapis.com -c 100 -p 10

Write results for google.com to /tmp/google.txt - file will be created if it doesn't exist

$ globetrotter -q google.com -f /tmp/google.txt

See globetrotter -h for all parameters

TODO

  • Improve command line argument parsing
  • Handle non-A records

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request