---
title: Configure rDNS
url: https://docs.vultr.com/products/network/dns/management/configure-rdns
description: Learn how to configure reverse DNS (rDNS) on Vultr instances using the Vultr Console or Vultr CLI.
publish_date: 2025-09-17T18:46:31.480868Z
last_updated: 2025-09-17T18:49:19.543287Z
---

Reverse DNS (rDNS) maps an IP address to a hostname using a PTR record, performing the opposite of a standard DNS lookup. Configuring rDNS allows services and monitoring tools to resolve your server's IP back to a fully qualified domain name (FQDN). Proper rDNS improves email deliverability, aids in network verification, and helps troubleshoot connectivity issues. Many services, including mail servers, rely on rDNS to verify legitimate sources, and monitoring tools use it to display human-readable hostnames.

Follow this guide to configure rDNS for Vultr instances using the Vultr Console or Vultr CLI.

> [!NOTE]
> rDNS changes may take 6–12 hours to propagate and become active across the DNS system.

=== "Vultr Console"

    1. Navigate to the **Compute** section under **Products**.
    1. Select the instance for which you want to configure rDNS.
    1. Click **Settings**, then choose **IPv4** or **IPv6** for which you want to set the rDNS.
    1. Under **Public Network**, all your associated public IPs are listed. To update one, click the rDNS name under the **Reverse DNS** column.
    1. Enter the **FQDN** you want to associate with your IP address.
    1. Click the **tick icon** to save the rDNS record.
    1. Run the below command to verify that the rDNS record is updated.

        ```console
        $ dig -x <instance-ip>
        ```

        The command above displays the PTR record associated with your IP.

=== "Vultr CLI"

    1. Check the version of the Vultr CLI to ensure it is installed.

        ```console
        $ vultr-cli version
        ```

        Output:

        ```
        Vultr-CLI v3.7.0
        ```

    1. List all available instances.

        ```console
        $ vultr-cli instance list
        ```

        Note the `id` of the instance for which you want to update rDNS.

    1. List all the IPv4 or IPv6 addresses associated with your instance.

        * **For IPv4 rDNS**:

            1. List all associated IPv4 addresses for the instance.

                ```console
                $ vultr-cli instance ipv4 list <instance-id>
                ```

                Note the IP address you want to configure rDNS for.

            1. Update the rDNS for the selected IPv4 address.

                ```console
                $ vultr-cli instance reverse-dns set-ipv4 <instance-id> <ipv4-address> --entry "<FQDN-rDNS>"
                ```

                Output:

                ```
                Reverse DNS IPv4 has been set
                ```

        * **For IPv6 rDNS**:

            1. List all associated IPv6 addresses for the instance.

                ```console
                $ vultr-cli instance ipv6 list <instance-id>
                ```

            1. Update the rDNS for the selected IPv6 address.

                ```console
                $ vultr-cli instance reverse-dns set-ipv6 <instance-id> <ipv6-address> --entry "<FQDN-rDNS>"
                ```

                Output:

                ```
                Reverse DNS IPv6 has been set
                ```

    1. Verify that the rDNS records have been updated.

        ```console
        $ dig -x <instance-ip>
        ```