What is a PTR Record?

A PTR (Pointer) record, also known as a Reverse DNS record, maps an IP address back to a hostname. While standard DNS (forward DNS) translates domain names to IP addresses, Reverse DNS does the opposite—it translates IP addresses back to domain names.

How to Set Up a PTR Record in the VCP

Follow these steps to configure a Reverse DNS record for your Virtual Machine:

Step 1: Access the Client Area

1. Log in to your client account
2. Navigate to Services → My Services
3. Locate and select the Virtual Machine product you want to configure

Click the "Open Control Panel" button to access the VCP (Virtual Machine Control Panel) at https://vcp.fullhost.com/

Step 3: Navigate to Network Settings

Once in the VCP, click on the Network tab to view your server's network configuration.

Step 4: Configure Reverse DNS

In the Network tab, you'll see the IPv4 Addresses section displaying your server's network information:

 

Step 5: Set Your PTR Record

1. Click the "Reverse DNS" button in the RDNS column
2. Enter the fully qualified domain name (FQDN) you want the IP address to resolve to (e.g., `mail.yourdomain.com`)
3. Save your changes

---

Best Practices

- Match Forward and Reverse DNS: Ensure your PTR record matches your forward DNS. If `mail.yourdomain.com` points to `203.0.113.52`, the PTR record for `203.0.113.52` should point back to `mail.yourdomain.com`.
- Use FQDNs: Always use fully qualified domain names (including the domain and TLD) for your PTR records.
- Allow Propagation Time: DNS changes can take up to 24-48 hours to propagate globally, though they often take effect much sooner.

---

Verifying Your PTR Record

After configuring your PTR record, you can verify it using the following methods:

On Linux/macOS:
```bash
dig -x YOUR_IP_ADDRESS
```

On Windows:
```cmd
nslookup YOUR_IP_ADDRESS
```

Online Tools:
You can also use online DNS lookup tools like MXToolbox or DNSChecker to verify your PTR record.

---

Troubleshooting

If your PTR record isn't working as expected:

1. Wait for propagation: DNS changes can take time to propagate
2. Verify forward DNS: Ensure the domain in your PTR record has a matching A record pointing to your IP
3. Check for typos: Ensure the hostname is entered correctly with no trailing spaces
4. Contact support: If issues persist, contact our support team for assistance

Was this answer helpful? 65 Users Found This Useful (250 Votes)