8000 GitHub - jeroenr/dnsee: Check DNS configurations quickly
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jeroenr/dnsee

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dnsee

Release GitHub release (latest SemVer) GitHub commits since latest release (by SemVer) Go Reference GitHub all releases

Check DNS configurations quickly

Brew

To install dnsee using brew, simply do the below.

brew tap bschaatsbergen/dnsee
brew install dnsee

Binaries

You can download the latest binary for Linux, MacOS, and Windows.

Examples

Using dnsee is very simple.

Fetch all records

To get all records for a domain name:

$ dnsee google.com
A       google.com.     146     142.251.39.110
AAAA    google.com.     300     2a00:1450:400e:803::200e
MX      google.com.     193     smtp.google.com.        10
NS      google.com.     103     ns1.google.com.
NS      google.com.     103     ns4.google.com.
NS      google.com.     103     ns3.google.com.
NS      google.com.     103     ns2.google.com.

Fetch all records for a specific type

To get all records for a domain name of a specific type:

$ dnsee google.com -q A
A       google.com.     146     142.251.39.110

Fetch all records using a different DNS server

To get all records for a domain name using a different DNS server:

$ dnsee google.com --dns-server-ip 1.1.1.1
A       google.com.     146     142.251.39.110
AAAA    google.com.     300     2a00:1450:400e:803::200e
MX      google.com.     193     smtp.google.com.        10
NS      google.com.     103     ns1.google.com.
NS      google.com.     103     ns4.google.com.
NS      google.com.     103     ns3.google.com.
NS      google.com.     103     ns2.google.com.

Contributing

Contributions are highly appreciated and always welcome. Have a look through existing Issues and Pull Requests that you could help with.

About

Check DNS configurations quickly

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%
0