Hello Carlos Arias
We understood that you are looking to set up a PTR (reverse DNS) record for your IP address 68.154.49.111 to improve your email deliverability and avoid spam filters.
Services in Azure use IP addresses assigned by Azure and owned by Microsoft. These reverse DNS records (PTR records) must be created in the corresponding Microsoft-owned reverse DNS lookup zones.
- The PTR record must match a forward DNS (A or CNAME) record that resolves to the same IP.
- For example, if you want the PTR for
68.154.49.111
to resolve toweb.chcyber.com
, thenweb.chcyber.com
must already resolve to68.154.49.111
. - Use the
Set-AzPublicIpAddress
PowerShell cmdlet with the-ReverseFqdn
parameter.
$pip = Get-AzPublicIpAddress -Name "YourPublicIPResourceName" -ResourceGroupName "YourResourceGroup"$pip.DnsSettings.ReverseFqdn = "web.chcyber.com"Set-AzPublicIpAddress -PublicIpAddress $pip
- Ensure that
web.chcyber.com
has an A record pointing to68.154.49.111
. - You must have Owner or Contributor access to the Azure subscription.
- Confirm that
web.chcyber.com
resolves to68.154.49.111
.
Refer: https://learn.microsoft.com/en-us/azure/dns/dns-reverse-dns-for-azure-services
Since you have an active Azure support plan, you can also open a support ticket for assistance with PTR configuration if needed.
I hope this helps! If these answers your query, do click the "Upvote" and click "Accept the answer" of which might be beneficial to other community members reading this thread.
If the above is unclear or you are unsure about something, please add a comment below.