How to Verify Reverse DNS (RDNS) Configuration Make it Rain Paper

  • rDNS, DNS, DNS Management, DNS Configuration
  • 0

Pre-requirements

  • Ensure that the RDNS has been properly configured on your DNS server or by your hosting provider.
  • Access to the server or system where you want to verify the RDNS settings.
  • Familiarity with command-line interfaces like Command Prompt (Windows) or Terminal (Linux/macOS).

Introduction

After configuring Reverse DNS (RDNS) for an IP address, it's important to verify that it works correctly. RDNS maps an IP address to a domain name, and verification ensures that your configuration is accurate. This guide outlines the steps to check RDNS on both Windows and Unix-based systems (Linux/macOS).

Procedure to Verify RDNS

Operating System Steps to Verify RDNS Commands
Windows Systems
  1. Press the Windows key or open the Start menu manually.
  2. Search for cmd and open the Command Prompt.
  3. Run the following command to verify RDNS (replace 192.168.0.1 with the actual IP address):
nslookup 192.168.0.1
Expected Output (Windows) If the RDNS is configured correctly, the output will look something like this:
Name: host.example.tld
Address: 192.168.0.1
Unix-based Systems (Linux/macOS)
  1. Open a Terminal window.
  2. Use one of the following commands to verify RDNS:
  3. Replace 192.168.0.1 with the actual IP address.

Using host command:

host 192.168.0.1

Using dig command:

dig +noall +answer -x 192.168.0.1
Expected Output (Linux/macOS) If the RDNS is configured correctly, the output will look something like this:
1.0.168.192.in-addr.arpa domain name pointer host.example.tld.

Gotchas to Avoid

  • Incorrect IP Address: Ensure you are querying the correct IP address that has RDNS configured.
  • DNS Propagation: If you recently configured RDNS, it may take some time for the DNS settings to propagate across the internet. Wait for up to 48 hours before verifying.
  • Firewall Issues: Ensure that your firewall settings are not blocking DNS queries from the system you are using to verify the RDNS configuration.

Verifying RDNS ensures that your IP address correctly resolves to the associated domain name. By following the steps outlined above, you can easily check whether RDNS is functioning as expected on both Windows and Unix-based systems. If the output does not match the expected results, review your RDNS configuration or consult with your DNS provider.


Did this answer help?

« Back