Discovering DNS: A Beginner’s Introduction to nslookup
When your internet connection acts up, or a website refuses to load, the culprit is often DNS (Domain Name System) issues. This is where nslookup comes in handy. It’s a simple yet powerful command-line tool used to query DNS servers and troubleshoot issues related to domain name resolution. What is nslookup? nslookup (short for “name server lookup”) is a network utility used to query DNS servers for domain name and IP address information. It helps you: Find the IP address of a given domain name. Perform reverse lookups (find the domain name associated with an IP address). Retrieve specific DNS records like A, MX, and CNAME. Troubleshoot DNS-related connectivity issues. The best part? nslookup is built into Windows, macOS, and Linux, so you can use it right away from the command line. Basic nslookup Commands 1. Find the IP Address of a Website Want to know the IP address of a website? Just run: nslookup example.com Example output: Server: 8.8.8.8 Address: 8.8.8.8#53 Non-authoritative answer: Name: example.com Address: 93.184.216.34 Here, 93.184.216.34 is the IP address of example.com. 2. Perform a Reverse Lookup (Find Domain Name from IP) If you have an IP address and want to find out which domain it belongs to, use: nslookup 93.184.216.34 3. Query a Specific DNS Server By default, nslookup uses your system’s DNS settings. To specify a different DNS server (like Google’s 8.8.8.8), run: nslookup example.com 8.8.8.8 4. Retrieve Different DNS Record Types You can specify which type of DNS record to fetch using the -query option: A record (IPv4 address): nslookup -query=A example.com AAAA record (IPv6 address): nslookup -query=AAAA example.com MX record (Mail servers): nslookup -query=MX example.com CNAME record (Canonical name / alias): nslookup -query=CNAME example.com Interactive Mode for Advanced Queries If you want to perform multiple queries in one session, type nslookup alone to enter interactive mode: nslookup Then, you can enter commands like: > set type=MX > example.com To exit interactive mode, type exit. Troubleshooting DNS Issues with nslookup Here are some common use cases for diagnosing DNS problems: 1. Checking If a Domain Resolves Properly If a website isn’t loading, check if its DNS is resolving correctly: nslookup example.com If you see a “server can’t find” error, the domain might be down. 2. Checking If a Custom DNS Server is Working If you suspect your ISP’s DNS is slow, compare results from Google’s public DNS: nslookup example.com 8.8.8.8 3. Checking Mail Server Configuration If emails aren’t reaching a domain, check its MX records: nslookup -query=MX example.com Conclusion nslookup is a must-know tool for anyone dealing with networking or website troubleshooting. With just a few commands, you can diagnose DNS issues, verify domain records, and improve your understanding of how the internet works. Give it a try next time you suspect a DNS issue—it just might save you a headache! If you're a software developer who enjoys exploring different technologies and techniques like this one, check out LiveAPI. It’s a super-convenient tool that lets you generate interactive API docs instantly. So, if you’re working with a codebase that lacks documentation, just use LiveAPI to generate it and save time! You can instantly try it out here!

When your internet connection acts up, or a website refuses to load, the culprit is often DNS (Domain Name System) issues. This is where nslookup
comes in handy. It’s a simple yet powerful command-line tool used to query DNS servers and troubleshoot issues related to domain name resolution.
What is nslookup?
nslookup
(short for “name server lookup”) is a network utility used to query DNS servers for domain name and IP address information. It helps you:
- Find the IP address of a given domain name.
- Perform reverse lookups (find the domain name associated with an IP address).
- Retrieve specific DNS records like A, MX, and CNAME.
- Troubleshoot DNS-related connectivity issues.
The best part? nslookup
is built into Windows, macOS, and Linux, so you can use it right away from the command line.
Basic nslookup Commands
1. Find the IP Address of a Website
Want to know the IP address of a website? Just run:
nslookup example.com
Example output:
Server: 8.8.8.8
Address: 8.8.8.8#53
Non-authoritative answer:
Name: example.com
Address: 93.184.216.34
Here, 93.184.216.34
is the IP address of example.com
.
2. Perform a Reverse Lookup (Find Domain Name from IP)
If you have an IP address and want to find out which domain it belongs to, use:
nslookup 93.184.216.34
3. Query a Specific DNS Server
By default, nslookup
uses your system’s DNS settings. To specify a different DNS server (like Google’s 8.8.8.8), run:
nslookup example.com 8.8.8.8
4. Retrieve Different DNS Record Types
You can specify which type of DNS record to fetch using the -query
option:
- A record (IPv4 address):
nslookup -query=A example.com
- AAAA record (IPv6 address):
nslookup -query=AAAA example.com
- MX record (Mail servers):
nslookup -query=MX example.com
- CNAME record (Canonical name / alias):
nslookup -query=CNAME example.com
Interactive Mode for Advanced Queries
If you want to perform multiple queries in one session, type nslookup
alone to enter interactive mode:
nslookup
Then, you can enter commands like:
> set type=MX
> example.com
To exit interactive mode, type exit
.
Troubleshooting DNS Issues with nslookup
Here are some common use cases for diagnosing DNS problems:
1. Checking If a Domain Resolves Properly
If a website isn’t loading, check if its DNS is resolving correctly:
nslookup example.com
If you see a “server can’t find” error, the domain might be down.
2. Checking If a Custom DNS Server is Working
If you suspect your ISP’s DNS is slow, compare results from Google’s public DNS:
nslookup example.com 8.8.8.8
3. Checking Mail Server Configuration
If emails aren’t reaching a domain, check its MX records:
nslookup -query=MX example.com
Conclusion
nslookup
is a must-know tool for anyone dealing with networking or website troubleshooting. With just a few commands, you can diagnose DNS issues, verify domain records, and improve your understanding of how the internet works.
Give it a try next time you suspect a DNS issue—it just might save you a headache!
If you're a software developer who enjoys exploring different technologies and techniques like this one, check out LiveAPI. It’s a super-convenient tool that lets you generate interactive API docs instantly.
So, if you’re working with a codebase that lacks documentation, just use LiveAPI to generate it and save time!
You can instantly try it out here!